
/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    background:#f8fafc;
}

body{
    display:flex;
    flex-direction:column;
    min-height:100vh;
}

main{
    flex:1;
}

img{
    max-width:100%;
    display:block;
}

/* =========================================
   VARIABLES
========================================= */

:root{
    --primary:#00AEEF;
    --primary-dark:#0077B6;
    --dark:#111827;
    --light:#f8fafc;
    --gray:#64748b;
    --white:#fff;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    padding:12px 0;
}

.navbar-nav .nav-link{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:var(--primary) !important;
}

/* =========================================
   CARRUSEL
========================================= */

#template-mo-zay-hero-carousel{
    width:100%;
    overflow:hidden;
    position:relative;

    /* MARGEN INTERNO */
    padding:10px;

    /* COLOR DEL BORDE/FONDO */
    background:#fff;

    /* OPCIONAL */
    border-radius:10px;

    box-sizing:border-box;
}

#template-mo-zay-hero-carousel .carousel-item{
    height:650px;
    
    /* ESPACIO INTERNO */
    padding:10px;

    box-sizing:border-box;
}
#template-mo-zay-hero-carousel img,
.banner-full{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;

    /* PARA QUE EL BORDE SE VEA LIMPIO */
    border-radius:10px;
}

#template-mo-zay-hero-carousel img{
    transition:transform 6s ease;
}

#template-mo-zay-hero-carousel .active img{
    transform:scale(1.03);
}

/* RESPONSIVE */
@media (max-width:768px){

    #template-mo-zay-hero-carousel{
        padding:5px;
        border-radius:8px;
    }

    #template-mo-zay-hero-carousel .carousel-item{
        height:400px;
    }

    #template-mo-zay-hero-carousel img,
    .banner-full{
        border-radius:6px;
    }
}

/* =========================================
   ABOUT
========================================= */

.texto-centrado{
    text-align:center;
    line-height:1.8;
}

.about-img{
    width:100%;
    max-width:350px;
    margin:auto;
}

/* =========================================
   INFO
========================================= */

.info-section img{
    width:100%;
    max-width:350px;
    margin:auto;
}

.info-text{
    line-height:1.8;
}

/* =========================================
   ACTIVIDADES
========================================= */

.activity-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    transition:.3s;
    height:100%;
}

.activity-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* =========================================
   EVENTOS
========================================= */

.day-item{
    transition:.3s;
    border-radius:14px !important;
}

.day-item:hover{
    background:#f1f5f9;
    transform:translateX(5px);
}

#imgEvento{
    width:100%;
    height:350px;
    object-fit:cover;
}

/* =========================================
   PRODUCTOS
========================================= */

.producto-card,
.categoria-card,
.social-card{
    background:#fff;
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    height:100%;
    box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.producto-card:hover,
.categoria-card:hover,
.social-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.producto-img-container{
    position:relative;
    overflow:hidden;
}

.producto-img,
.categoria-img,
.img-social{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
}

.producto-card:hover .producto-img{
    transform:scale(1.05);
}

.producto-info{
    padding:18px;
    text-align:center;
}

.producto-info h5{
    font-size:1rem;
    font-weight:700;
    margin-bottom:10px;
}

/* =========================================
   OVERLAY
========================================= */

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.4s;
}

.producto-card:hover .product-overlay{
    opacity:1;
    visibility:visible;
}

.product-overlay ul{
    margin:0;
    padding:0;
}

.product-overlay li{
    list-style:none;
    margin:10px 0;
}

.product-overlay .btn{
    width:50px;
    height:50px;

    border-radius:50% !important;
    border:none !important;

    background:var(--primary) !important;
    color:#fff !important;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.3s;
}

.product-overlay .btn:hover{
    background:var(--primary-dark) !important;
    transform:scale(1.08);
}

/* =========================================
   BOTONES
========================================= */

.btn-primary-custom,
.btn-send{
    background:var(--primary) !important;
    border:none !important;
    color:#fff !important;

    border-radius:14px;

    padding:12px 28px;

    font-weight:700;

    transition:.3s;
}

.btn-primary-custom:hover,
.btn-send:hover{
    background:var(--primary-dark) !important;
    transform:translateY(-2px);
}

/* =========================================
   DETALLE PRODUCTO
========================================= */

.main-img-container{
    background:#fff;
    border-radius:20px;
    padding:15px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.main-img-container img{
    width:100%;
    height:500px;
    object-fit:contain;
}

.thumb-img{
    width:70px;
    height:70px;
    object-fit:cover;

    border-radius:12px;
    border:2px solid #e5e7eb;

    cursor:pointer;
    transition:.3s;
}

.thumb-img.active,
.thumb-img:hover{
    border-color:var(--primary);
}

.card-product-detail{
    border:none;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.price-product{
    color:var(--primary);
    font-weight:800;
}

/* =========================================
   FAVORITO
========================================= */

.btn-favorito{
    width:55px;
    height:55px;

    border-radius:50%;
    border:none;

    background:var(--primary);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    transition:.3s;
}

.btn-favorito:hover{
    background:var(--primary-dark);
    transform:scale(1.08);
}

/* =========================================
   CONTACTO
========================================= */

.hero-contact{
    background:linear-gradient(135deg,#00AEEF,#007A99);
    border-radius:0 0 40px 40px;

    color:#fff;

    padding:70px 20px;
    text-align:center;
}

.hero-contact h1,
.hero-contact p{
    color:#fff !important;
}

.contact-card{
    border:none;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.info-box{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    height:100%;
}

.icon-contact{
    font-size:28px;
    color:var(--primary);
}

/* =========================================
   MODALES
========================================= */

.modal-content{
    border:none;
    border-radius:24px;
    overflow:hidden;
}

.modal-header{
    border:none;
}

/* =========================================
   FOOTER
========================================= */

.footer-kato{
    background:#111827 !important;
    color:#fff;
    margin-top:auto;
}

.footer-kato h4,
.footer-kato h5{
    color:#00AEEF;
}

.footer-kato p,
.footer-kato a{
    color:#d1d5db;
}

.footer-kato a{
    text-decoration:none;
    transition:.3s;
}

.footer-kato a:hover{
    color:#00AEEF;
}

.social-links{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.social-links a{
    display:flex;
    align-items:center;
    justify-content:center;

    width:45px;
    height:45px;

    border-radius:50%;

    background:#1f2937;
    color:#fff;

    transition:.3s;
}

.social-links a:hover{
    background:#00AEEF;
    transform:translateY(-4px);
}

.footer-copy{
    background:#0b0f19;
    color:#fff;
    font-size:14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

    #template-mo-zay-hero-carousel .carousel-item{
        height:420px;
    }

    .main-img-container img{
        height:400px;
    }
}

@media(max-width:768px){

    #template-mo-zay-hero-carousel .carousel-item{
        height:300px;
    }

    .producto-img,
    .categoria-img,
    .img-social{
        height:220px;
    }

    .main-img-container img{
        height:320px;
    }

    #imgEvento{
        height:250px;
    }

    .footer-kato{
        text-align:center;
    }

    .social-links{
        justify-content:center;
    }
}

@media(max-width:576px){

    #template-mo-zay-hero-carousel .carousel-item{
        height:220px;
    }

    .producto-img,
    .categoria-img,
    .img-social{
        height:200px;
    }

    .main-img-container img{
        height:250px;
    }

    #imgEvento{
        height:220px;
    }

    .hero-contact h1{
        font-size:2rem;
    }

    .btn{
        font-size:14px;
    }
}
/* =========================================
   MANTENIMIENTO
========================================= */

.maintenance-body{
    font-family:'Poppins',sans-serif;

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    padding:20px;

    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.88)),
        url('../img/acercatewe.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:#fff;
    text-align:center;
}

.maintenance-card{
    width:100%;
    max-width:700px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:30px;

    padding:60px 40px;

    box-shadow:0 20px 60px rgba(0,0,0,.5);

    animation:fadeIn 1s ease;
}

.maintenance-icon{
    font-size:90px;
    margin-bottom:20px;

    animation:giro 4s linear infinite;
}

.maintenance-card h1{
    font-size:48px;
    font-weight:700;

    margin-bottom:15px;
}

.maintenance-card p{
    font-size:20px;
    color:#ddd;

    line-height:1.7;

    margin-bottom:30px;
}

.maintenance-status{
    display:inline-block;

    padding:12px 25px;

    border-radius:50px;

    background:#ff9800;

    color:#fff;

    font-weight:600;
    font-size:14px;

    letter-spacing:1px;

    box-shadow:0 5px 20px rgba(255,152,0,.4);
}

.maintenance-footer{
    margin-top:35px;

    font-size:14px;

    color:#bbb;
}

/* =========================================
   ANIMACIONES
========================================= */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes giro{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .maintenance-card{
        padding:40px 25px;
    }

    .maintenance-card h1{
        font-size:34px;
    }

    .maintenance-card p{
        font-size:17px;
    }

    .maintenance-icon{
        font-size:70px;
    }
}