*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    --rosa:#f9d8e4;
    --fucsia:#ff2d8d;
    --negro:#111111;
    --gris:#f5f5f5;
    --blanco:#ffffff;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;

}

a{

    text-decoration:none;
    color:inherit;

}

img{

    max-width:100%;
    display:block;

}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ===================================== */
/* HEADER */
/* ===================================== */

header{

    width:100%;
    background:#fff;

    position:fixed;
    top:0;
    left:0;

    z-index:999;

    transition:.3s;

    box-shadow:0 2px 15px rgba(0,0,0,.05);

}

.header-scroll{

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 0;

}

/* LOGO */

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:auto;
    max-width:210px;
    height:55px;

    object-fit:contain;

}

/* MENU */

.menu{

    display:flex;
    align-items:center;
    gap:25px;

}

.menu a{

    color:#111;
    font-weight:500;

    transition:.3s;

}

.menu a:hover{

    color:var(--fucsia);

}

/* BOTON MENU */

.btn-menu{

    background:var(--fucsia);

    color:#fff !important;

    padding:12px 24px;

    border-radius:50px;

    transition:.3s;

}

.btn-menu:hover{

    transform:translateY(-3px);

}

/* ===================================== */
/* HAMBURGUESA */
/* ===================================== */

.hamburger{

    width:35px;
    height:30px;

    display:none;

    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;

}

.hamburger span{

    width:100%;
    height:4px;

    background:#111;

    border-radius:10px;

    transition:.3s;

}

/* ===================================== */
/* MOBILE MENU */
/* ===================================== */

.mobile-menu{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100vh;

    z-index:9999;

    visibility:hidden;
    opacity:0;

    transition:.3s;

}

.mobile-menu.active{

    visibility:visible;
    opacity:1;

}

.mobile-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.5);

    backdrop-filter:blur(4px);

}

.mobile-content{

    position:absolute;

    top:0;
    right:-100%;

    width:280px;
    height:100%;

    background:#fff;

    padding:100px 30px;

    display:flex;
    flex-direction:column;

    gap:25px;

    transition:.4s ease;

    box-shadow:-10px 0 25px rgba(0,0,0,.08);

}

.mobile-menu.active .mobile-content{

    right:0;

}

.mobile-content a{

    color:#111;

    font-size:18px;
    font-weight:500;

}

.btn-mobile{

    background:var(--fucsia);

    color:#fff !important;

    padding:15px;

    text-align:center;

    border-radius:50px;

}

/* ===================================== */
/* HERO SLIDER */
/* ===================================== */

.hero-slider{

    width:100%;
    height:100vh;

    position:relative;

    overflow:hidden;

}

.slide{

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:0;

    opacity:0;

    transition:opacity 1s ease;

    display:flex;
    align-items:center;

}

.slide.active{

    opacity:1;
    z-index:2;

}

.slide-bg{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    top:0;
    left:0;

    animation:zoomSlider 8s linear infinite;

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(255,45,141,.20)
    );

}

.slide .container{

    position:relative;
    z-index:3;

}

.hero-content{

    max-width:650px;

    color:#fff;

    animation:fadeHero 1.2s ease;

}

.hero-content h1{

    font-size:68px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    line-height:1.7;

    margin-bottom:35px;

}

@keyframes zoomSlider{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.08);
    }

}

@keyframes fadeHero{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
 /* ===================================== */
/* DOTS */
/* ===================================== */

.slider-dots{

    position:absolute;

    bottom:40px;
    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:10;

}

.dot{

    width:14px;
    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.5);

    cursor:pointer;

    transition:.3s;

}

.dot.active{

    background:#fff;

    transform:scale(1.2);

}

/* ===================================== */
/* FLECHAS SLIDER */
/* ===================================== */

.slider-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:20;

    transition:.3s;

}

.slider-arrow:hover{

    background:var(--fucsia);

}

.slider-arrow.left{

    left:30px;

}

.slider-arrow.right{

    right:30px;

}

/* ===================================== */
/* BOTON GENERAL */
/* ===================================== */

.btn{

    display:inline-block;

    background:var(--fucsia);

    color:#fff;

    padding:17px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

/* ===================================== */
/* AGENDA HOME */
/* ===================================== */

.agenda-home{

    padding:90px 0 50px;

    background:#fff;

}

.agenda-box-home{

    background:linear-gradient(
        135deg,
        #fff,
        #ffe7f1
    );

    border-radius:35px;

    padding:55px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #f3f3f3;

}

.agenda-texto{

    flex:1;

}

.agenda-texto span{

    color:var(--fucsia);

    font-weight:600;

    display:block;

    margin-bottom:10px;

    letter-spacing:1px;

}

.agenda-texto h2{

    font-size:48px;

    line-height:1.1;

    margin-bottom:20px;

}

.agenda-texto p{

    color:#555;

    line-height:1.9;

    max-width:750px;

}

.btn-agenda-home{

    padding:18px 38px;

    white-space:nowrap;

}

/* ===================================== */
/* STATS */
/* ===================================== */

.stats-section{

    padding:20px 0 110px;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:48px;

    color:var(--fucsia);

    margin-bottom:12px;

}

.stat-card p{

    font-size:18px;

    color:#555;

}

/* ===================================== */
/* COMO FUNCIONA */
/* ===================================== */

.como-funciona{

    padding:110px 0;

    background:#fff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--fucsia);

    font-weight:600;

    display:block;

    margin-bottom:10px;

}

.section-title h2{

    font-size:48px;

    line-height:1.2;

}

.pasos-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.paso-card{

    background:#fff;

    padding:40px 30px;

    border-radius:25px;

    text-align:center;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.paso-card:hover{

    transform:translateY(-10px);

}

.paso-numero{

    width:70px;
    height:70px;

    margin:auto auto 25px;

    border-radius:50%;

    background:var(--fucsia);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;
    font-weight:700;

}

.paso-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.paso-card p{

    line-height:1.8;

    color:#555;

}

/* ===================================== */
/* PROMOCIONES */
/* ===================================== */

.promociones-page{

    padding:170px 0 100px;

    background:#fafafa;

}

.promo-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.promo-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.promo-card:hover{

    transform:translateY(-10px);

}

.promo-img{

    width:100%;
    height:350px;

    overflow:hidden;

}

.promo-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;

}

.promo-card:hover img{

    transform:scale(1.05);

}

.promo-info{

    padding:30px;

}
/* AGENDAR */

.agendar-section{

    padding:170px 0 100px;

    background:#f9f9f9;

}

.agendar-box{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:50px;

    align-items:center;

}

.agendar-info h1{

    font-size:55px;

    line-height:1.1;

    margin-bottom:20px;

}

.agendar-info p{

    font-size:18px;

    margin-bottom:30px;

    line-height:1.7;

}

.agendar-info img{

    border-radius:25px;

}

.agendar-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.agendar-form form{

    display:flex;
    flex-direction:column;

    gap:18px;

}

.agendar-form input,
.agendar-form select,
.agendar-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.3s;

}

.agendar-form input:focus,
.agendar-form select:focus,
.agendar-form textarea:focus{

    border-color:var(--fucsia);

}

.agendar-form textarea{

    resize:none;

}

.btn-agendar{

    background:var(--fucsia);

    color:#fff;

    border:none;

    padding:17px;

    border-radius:50px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.btn-agendar:hover{

    transform:translateY(-3px);

}

/* CONTACTO */

.contacto-page{

    padding:170px 0 100px;

    background:#fafafa;

}

.contacto-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

    align-items:start;

}

.contacto-info{

    display:flex;
    flex-direction:column;

    gap:25px;

}

.contacto-card{

    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contacto-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--fucsia);

}

.contacto-card p,
.contacto-card a{

    line-height:1.8;

    color:#555;

    font-size:16px;

}

.contacto-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contacto-form form{

    display:flex;
    flex-direction:column;

    gap:20px;

}

.contacto-form input,
.contacto-form textarea{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.3s;

}

.contacto-form input:focus,
.contacto-form textarea:focus{

    border-color:var(--fucsia);

}

.contacto-form textarea{

    resize:none;

}

.contacto-form button{

    background:var(--fucsia);

    color:#fff;

    border:none;

    padding:17px;

    border-radius:50px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.contacto-form button:hover{

    transform:translateY(-3px);

}

/* ALERTAS */

.success{

    background:#d4edda;

    color:#155724;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;

}

.error-box{

    background:#f8d7da;

    color:#721c24;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;

}

/* WHATSAPP */

.whatsapp-float{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    background:#25d366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:32px;

    z-index:99999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:.3s;

    animation:floatWhatsapp 2s infinite;

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

@keyframes floatWhatsapp{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}

/* FOOTER */

.footer{

    background:#111;

    color:#fff;

    padding:80px 0;

}

.footer-contenido{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer h3{

    color:var(--rosa);

    margin-bottom:20px;

}

.footer a{

    display:block;

    margin-bottom:12px;

    color:#fff;

}

.footer-logo img{

    width:220px;

    margin-bottom:20px;

}

.footer p{

    line-height:1.8;

}

/* ANIMACIONES SCROLL */

.reveal{

    position:relative;

    transform:translateY(80px);

    opacity:0;

    transition:all 1s ease;

}

.reveal.active{

    transform:translateY(0);

    opacity:1;

}

/* FLECHAS SLIDER */

.slider-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:20;

    transition:.3s;

    display:flex;
    justify-content:center;
    align-items:center;

}

.slider-arrow:hover{

    background:#ff2d8d;

}

.slider-arrow.left{

    left:30px;

}

.slider-arrow.right{

    right:30px;

}

/* MODULO AGENDA */

.agenda-home{

    padding:90px 0 40px;

    background:#fff;

}

.agenda-box-home{

    background:linear-gradient(
        135deg,
        #fff,
        #ffe7f1
    );

    border-radius:30px;

    padding:60px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.agenda-texto span{

    color:#ff2d8d;

    font-weight:600;

    display:block;

    margin-bottom:12px;

}

.agenda-texto h2{

    font-size:48px;

    line-height:1.1;

    margin-bottom:20px;

}

.agenda-texto p{

    line-height:1.9;

    color:#555;

    max-width:700px;

}

.btn-agenda-home{

    padding:18px 35px;

    white-space:nowrap;

}

/* STATS */

.stats-section{

    padding:40px 0 100px;

    background:#fff;

}

.stat-card{

    background:#fff;

    border-radius:25px;

    padding:40px;

    text-align:center;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card h3{

    font-size:48px;

    color:#ff2d8d;

    margin-bottom:15px;

}

.stat-card p{

    color:#555;

    font-size:18px;

}

/* RESPONSIVE */

@media(max-width:992px){

.hero-slider .hero-content h1{

    font-size:52px;

}

.stats-grid{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.logo img{

    height:45px;

    max-width:170px;

}

.menu{

    display:none;

}

.hamburger{

    display:flex;

}

.hero-slider{

    height:85vh;

}

.hero-slider .hero-content h1{

    font-size:42px;

}

.hero-slider .hero-content p{

    font-size:17px;

}

.section-title h2{

    font-size:36px;

}

.agenda-box-home{

    flex-direction:column;

    text-align:center;

    padding:40px 25px;

}

.agenda-texto h2{

    font-size:36px;

}

.stats-grid{

    grid-template-columns:1fr;

}

.slider-arrow{

    width:45px;
    height:45px;

}

.slider-arrow.left{

    left:15px;

}

.slider-arrow.right{

    right:15px;

}

}

@media(max-width:480px){

.hero-slider .hero-content h1{

    font-size:34px;

}

.btn{

    width:100%;
    text-align:center;

}

.agendar-form{

    padding:25px;

}

.mobile-content{

    width:85%;

}

.agenda-texto h2{

    font-size:30px;

}

.agenda-box-home{

    padding:35px 20px;

}

.stat-card{

    padding:30px 20px;

}

.stat-card h3{

    font-size:38px;

}

}
/* ===================================== */
/* ALERTAS */
/* ===================================== */

.success{

    background:#d4edda;

    color:#155724;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;

}

.error-box{

    background:#f8d7da;

    color:#721c24;

    padding:15px;

    border-radius:10px;

    margin-bottom:20px;

}

/* ===================================== */
/* WHATSAPP FLOAT */
/* ===================================== */

.whatsapp-float{

    position:fixed;

    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25d366;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff !important;

    font-size:32px;

    z-index:999999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    animation:floatWhatsapp 2s infinite;

}

.whatsapp-float i{

    color:#fff !important;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}

@keyframes floatWhatsapp{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

    100%{
        transform:translateY(0);
    }

}

/* ===================================== */
/* FOOTER PREMIUM */
/* ===================================== */

.footer{

    background:#111111;

    color:#ffffff;

    padding:90px 0 40px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #ff2d8d,
        #f9d8e4,
        #ff2d8d
    );

}

.footer-contenido{

    width:90%;
    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-box{

    display:flex;

    flex-direction:column;

}

.footer-logo img{

    width:220px;

    margin-bottom:20px;

}

.footer-text{

    color:#cccccc;

    line-height:1.9;

    font-size:15px;

}

.footer h3{

    color:#ffffff;

    margin-bottom:25px;

    font-size:22px;

    position:relative;

    padding-bottom:10px;

}

.footer h3::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:50px;
    height:3px;

    background:var(--fucsia);

    border-radius:10px;

}

.footer-links a{

    color:#f9d8e4 !important;

    margin-bottom:14px;

    transition:.3s;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

}

.footer-links a:hover{

    color:#ff2d8d !important;

    transform:translateX(5px);

}

.footer-contact p{

    color:#cccccc;

    line-height:1.9;

    margin-bottom:14px;

    font-size:15px;

}

.footer-contact i{

    color:#ff2d8d;

    margin-right:10px;

}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#ffffff !important;

    font-size:18px;

    transition:.3s;

}

.footer-social a:hover{

    background:var(--fucsia);

    transform:translateY(-5px);

}

.footer-copy{

    text-align:center;

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    color:#bdbdbd;

    font-size:14px;

    line-height:1.8;

}

/* ===================================== */
/* ANIMACIONES SCROLL */
/* ===================================== */

.reveal{

    position:relative;

    transform:translateY(80px);

    opacity:0;

    transition:all 1s ease;

}

.reveal.active{

    transform:translateY(0);

    opacity:1;

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:992px){

.hero-content h1{

    font-size:52px;

}

.stats-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.logo img{

    height:45px;
    max-width:170px;

}

.menu{

    display:none;

}

.hamburger{

    display:flex;

}

.hero-slider{

    height:85vh;

}

.hero-content h1{

    font-size:42px;

}

.hero-content p{

    font-size:17px;

}

.section-title h2{

    font-size:36px;

}

.agenda-box-home{

    flex-direction:column;

    text-align:center;

    padding:40px 25px;

}

.agenda-texto h2{

    font-size:36px;

}

.slider-arrow{

    width:45px;
    height:45px;

}

.slider-arrow.left{

    left:15px;

}

.slider-arrow.right{

    right:15px;

}

.whatsapp-float{

    width:58px;
    height:58px;

    font-size:28px;

    right:15px;
    bottom:15px;

}

.footer{

    padding:70px 0 30px;

}

.footer-contenido{

    gap:40px;

}

.footer-logo img{

    width:180px;

}

.footer h3{

    font-size:20px;

}

.footer-copy{

    margin-top:40px;

    font-size:13px;

}

}

@media(max-width:480px){

.hero-content h1{

    font-size:34px;

}

.btn{

    width:100%;
    text-align:center;

}

.mobile-content{

    width:85%;

}

.contacto-form{

    padding:25px;

}

}
/* ===================================== */
/* MODULO VALORACION HOME */
/* ===================================== */

.valoracion-home{

    padding:90px 0 40px;

    background:#ffffff;

}

.valoracion-box{

    background:linear-gradient(
        135deg,
        #ffffff,
        #ffe8f2
    );

    border-radius:35px;

    padding:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    border:1px solid #f3f3f3;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.valoracion-content{

    flex:1;

}

.valoracion-content span{

    display:block;

    color:var(--fucsia);

    font-weight:600;

    margin-bottom:12px;

    letter-spacing:1px;

}

.valoracion-content h2{

    font-size:50px;

    line-height:1.1;

    margin-bottom:20px;

    color:#111;

}

.valoracion-content p{

    color:#555;

    line-height:1.9;

    max-width:750px;

    font-size:17px;

}

.valoracion-btn{

    display:flex;

    align-items:center;

    justify-content:center;

}

/* ===================================== */
/* CONTADORES */
/* ===================================== */

.stats-section{

    padding:30px 0 100px;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:25px;

    padding:40px 30px;

    text-align:center;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:50px;

    color:var(--fucsia);

    margin-bottom:12px;

}

.stat-card p{

    color:#555;

    font-size:18px;

}

/* ===================================== */
/* FIX PROMOCIONES */
/* ===================================== */

.promociones-page .promo-card,
.resultados-page .resultado-card,
.testimonios-page .testimonio-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

    border:1px solid #f1f1f1;

}

.promociones-page .promo-card:hover,
.resultados-page .resultado-card:hover,
.testimonios-page .testimonio-card:hover{

    transform:translateY(-10px);

}

/* ===================================== */
/* FIX CONTACTO */
/* ===================================== */

.contacto-page{

    background:#fafafa;

}

.contacto-card{

    background:#fff;

    border-radius:25px;

    padding:35px;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.contacto-card h3{

    color:var(--fucsia);

    margin-bottom:15px;

}

.contacto-card a{

    color:var(--fucsia);

    font-weight:600;

}

.contacto-form{

    background:#fff;

    border-radius:25px;

    padding:40px;

    border:1px solid #f2f2f2;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:768px){

.valoracion-box{

    flex-direction:column;

    text-align:center;

    padding:40px 25px;

}

.valoracion-content h2{

    font-size:36px;

}

.stats-grid{

    grid-template-columns:1fr;

}

}
/* ===================================== */
/* FIX FOOTER LINKS */
/* ===================================== */

.footer a{

    color:#f9d8e4 !important;

    transition:.3s;

}

.footer a:hover{

    color:#ff2d8d !important;

}

/* ===================================== */
/* FIX STATS HORIZONTAL */
/* ===================================== */

.stats-grid{

    display:flex !important;

    justify-content:center;

    align-items:stretch;

    gap:30px;

    flex-wrap:nowrap;

}

.stat-card{

    flex:1;

    min-width:0;

}

/* ===================================== */
/* RESPONSIVE STATS */
/* ===================================== */

@media(max-width:768px){

.stats-grid{

    flex-direction:column;

}

}
/* ===================================== */
/* FIX PAGINAS INTERNAS */
/* ===================================== */

/* PROMOCIONES */

.promociones-page{

    padding:170px 0 100px;

    background:#fafafa;

}

.promo-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.promo-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.promo-card:hover{

    transform:translateY(-10px);

}

.promo-img{

    width:100%;
    height:350px;

    overflow:hidden;

}

.promo-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;

}

.promo-card:hover img{

    transform:scale(1.05);

}

.promo-info{

    padding:30px;

}

.promo-info h3{

    font-size:30px;

    margin-bottom:15px;

}

.promo-info p{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}

.promo-price{

    font-size:24px;

    font-weight:700;

    color:var(--fucsia);

    margin-bottom:25px;

}

/* RESULTADOS */

.resultados-page{

    padding:170px 0 100px;

    background:#fff;

}

.resultados-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.resultado-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.resultado-card:hover{

    transform:translateY(-10px);

}

.resultado-img{

    width:100%;
    height:420px;

    overflow:hidden;

}

.resultado-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;

}

.resultado-card:hover img{

    transform:scale(1.05);

}

.resultado-info{

    padding:30px;

}

.resultado-info h3{

    font-size:28px;

    margin-bottom:15px;

}

.resultado-info p{

    color:#555;

    line-height:1.8;

    margin-bottom:25px;

}

/* TESTIMONIOS */

.testimonios-page{

    padding:170px 0 100px;

    background:#fafafa;

}

.testimonios-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.testimonio-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.testimonio-card:hover{

    transform:translateY(-10px);

}

.testimonio-img{

    width:100%;
    height:350px;

    overflow:hidden;

}

.testimonio-img img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.testimonio-info{

    padding:30px;

}

.stars{

    color:#ffb400;

    font-size:22px;

    margin-bottom:20px;

}

.testimonio-info p{

    line-height:1.9;

    color:#555;

    margin-bottom:25px;

    font-size:16px;

}

.testimonio-info h3{

    color:var(--fucsia);

    font-size:22px;

}

/* RESPONSIVE */

@media(max-width:768px){

.promociones-page,
.resultados-page,
.testimonios-page{

    padding:140px 0 80px;

}

.promo-img{

    height:280px;

}

.resultado-img{

    height:340px;

}

.testimonio-img{

    height:300px;

}

}
/* ===================================================== */
/* FIX FINAL INDEX + CONTADORES + MODULO AGENDA */
/* ===================================================== */

/* MODULO AGENDA */

.agenda-home{

    padding:90px 0 50px;

    background:#fff;

}

.agenda-box-home{

    background:linear-gradient(
        135deg,
        #ffffff,
        #ffe8f2
    );

    border-radius:30px;

    padding:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    border:1px solid #f5d6e3;

}

.agenda-texto{

    flex:1;

}

.agenda-texto span{

    color:var(--fucsia);

    font-weight:600;

    display:block;

    margin-bottom:12px;

    letter-spacing:1px;

}

.agenda-texto h2{

    font-size:48px;

    line-height:1.1;

    margin-bottom:20px;

    color:#111;

}

.agenda-texto p{

    color:#555;

    line-height:1.9;

    max-width:700px;

    font-size:17px;

}

.btn-agenda-home{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:var(--fucsia);

    color:#fff !important;

    padding:18px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

    white-space:nowrap;

    box-shadow:0 10px 25px rgba(255,45,141,.25);

}

.btn-agenda-home:hover{

    transform:translateY(-4px);

}

/* CONTADORES */

.stats-section{

    padding:20px 0 100px;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.stat-card{

    background:#fff;

    border-radius:25px;

    padding:45px 25px;

    text-align:center;

    border:1px solid #f1f1f1;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.3s;

}

.stat-card:hover{

    transform:translateY(-8px);

}

.stat-card h3{

    font-size:52px;

    color:var(--fucsia);

    margin-bottom:15px;

    font-weight:700;

}

.stat-card p{

    color:#555;

    font-size:18px;

    line-height:1.6;

}

/* FOOTER LINKS FUCSIA */

.footer a{

    color:#f9d8e4 !important;

}

.footer a:hover{

    color:var(--fucsia) !important;

}

/* RESPONSIVE */

@media(max-width:992px){

.stats-grid{

    grid-template-columns:
    repeat(2,1fr);

}

}

@media(max-width:768px){

.agenda-box-home{

    flex-direction:column;

    text-align:center;

    padding:40px 25px;

}

.agenda-texto h2{

    font-size:36px;

}

.stats-grid{

    grid-template-columns:1fr;

}

.stat-card h3{

    font-size:42px;

}

}

@media(max-width:480px){

.agenda-texto h2{

    font-size:30px;

}

.btn-agenda-home{

    width:100%;

}

}
/* ===================================== */
/* CONTADORES HOME */
/* ===================================== */

.stats-section{

    padding:30px 0 100px;

    background:#fff;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:stretch;

}

.stat-card{

    background:#fff;

    border-radius:25px;

    padding:40px 20px;

    text-align:center;

}

.stat-card h3{

    font-size:48px;

    color:var(--fucsia);

    margin-bottom:10px;

    font-weight:700;

}

.stat-card p{

    color:#555;

    font-size:18px;

}

/* RESPONSIVE */

@media(max-width:768px){

.stats-grid{

    grid-template-columns:1fr;

}

}