/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#ffffff;
    color:#000;
} 

        /* HEADER */
        header{
            width:100%;
            padding:20px 5%;
            display:flex;
            justify-content:space-between;
            align-items:center;
            background:#fff;
            border-bottom:1px solid #f1f1f1;
        }

        .logo img{
            height:90px;
            width:auto;
        }

        nav ul{
            display:flex;
            list-style:none;
            gap:35px;
        }

        nav a{
            text-decoration:none;
            color:#000;
            font-size:15px;
            font-weight:500;
            transition:0.3s;
            position:relative;
        }

        nav a:hover{
            color:#F198B9;
        }

        nav a::after{
            content:'';
            position:absolute;
            width:0;
            height:2px;
            background:#F198B9;
            left:0;
            bottom:-5px;
            transition:0.3s;
        }

        nav a:hover::after{
            width:100%;
        }


.slider-section{
    width:100%;
    padding:50px 0;
    background:#fff;
}

.slider-container{
    position:relative;
    width:90%;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
    border-radius:15px;
    border:2px solid #F198B9;
}

.slider-track{
    display:flex;
    transition:transform .6s ease;
}

.slide{
    min-width:100%;
}

.slide img{
    width:100%;
    height:60vh;
    min-height:300px;
    max-height:650px;
    object-fit:cover;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    background:rgba(0,0,0,.5);
    color:white;
    cursor:pointer;
    z-index:10;
    font-size:24px;
    transition:.3s;
}

.slider-btn:hover{
    background:#F198B9;
}

.prev{
    left:10px;
}

.next{
    right:10px;
}

.slider-dots{
    display:flex;
    justify-content:center;
    margin-top:20px;
    gap:10px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#ddd;
    cursor:pointer;
}

.dot.active{
    background:#F198B9;
}

/* HAMBURGUESA */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#000;
}

/* SEGUNDA GALERÍA */

.promo-section{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.promo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.promo-card{
    overflow:hidden;
    border-radius:15px;
}

.promo-card a{
    display:block;
}

.promo-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.promo-card img:hover{
    transform:scale(1.05);
}

.promo-title{
    text-align:center;
    margin-bottom:30px;
    font-size:32px;
    font-weight:600;
    color:#000;
}

.promo-title::after{
    content:'';
    display:block;
    width:80px;
    height:3px;
    background:#F198B9;
    margin:12px auto 0;
    border-radius:2px;
}

.regulartext{
    text-align:center;
    margin-bottom:30px;
    font-size:32px;
    font-weight:600;
    color:#000;
}


/* FOOTER */

footer{
    margin-top:60px;
    padding:30px 5%;
    background:#000;
    color:#fff;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.footer-center a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.footer-center a:hover{
    color:#F198B9;
}

.footer-right{
    display:flex;
    gap:15px;
}

.footer-right img{
    width:24px;
    height:24px;
    filter:brightness(0) invert(1);
    transition:.3s;
}

.footer-right img:hover{
    opacity:.7;
}

.footer-bottom{
    margin-top:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    font-size:14px;
}

.footer-bottom img{
    height:16px;
    width:auto;
    vertical-align:middle;
}



/* BOTÓN WHATSAPP */

.whatsapp-section{
    text-align:center;
    margin:50px 0;
}

.whatsapp-btn{
    display:inline-block;
    padding:16px 40px;
    background:#000;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#F198B9;
    color:#000;
    transform:translateY(-2px);
}

/* WHATSAPP FLOTANTE */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:315px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 15px rgba(0,0,0,.25);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

.whatsapp-float img{
    width:36px;
    height:36px;
}



/* MÓVIL */

@media (max-width:768px){

header{
        position:relative;
        display:flex;
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:15px 5%;
    }

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
}

.menu-toggle{
    display:block;
    font-size:32px;
    cursor:pointer;
    padding:10px;
}

    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #eee;
        box-shadow:0 5px 10px rgba(0,0,0,.08);
        z-index:999;
    }

nav.active{
    display:block;
}

    nav ul{
        display:flex;
        flex-direction:column;
        gap:0;
    }

    nav li{
        border-bottom:1px solid #f3f3f3;
    }

    nav a{
        display:block;
        padding:18px;
    }

.footer-top{
    flex-direction:column;
    text-align:center;
}

.footer-bottom{
    flex-wrap:wrap;
}

.promo-grid{
    grid-template-columns:1fr;
}

.whatsapp-float{
    width:58px;
    height:58px;
    right:15px;
    bottom:15px;
}

.whatsapp-float img{
    width:32px;
    height:32px;
}

}