:root{
    --green-950: #071c18;
    --green-900: #0b2822;
    --green-800: #123a31;
    --green-700: #1c4d40;

    --gold: #b7955c;
    --gold-light: #d6bd8d;

    --cream: #f5f2eb;
    --cream-2: #ebe7dc;
    --white: #ffffff;

    --text: #1c302b;
    --muted: #68736f;

    --shadow-soft:
        0 20px 60px rgba(10, 38, 31, .10);

    --shadow-card:
        0 25px 70px rgba(7, 29, 24, .15);

    --ease:
        cubic-bezier(.2,.8,.2,1);
}


/* =====================================================
   RESET
===================================================== */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
    background: var(--cream);
    color: var(--text);

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    overflow-x: hidden;
}

img{
    display: block;
    width: 100%;
}

a{
    color: inherit;
    text-decoration: none;
}

button{
    font-family: inherit;
}


/* =====================================================
   GENERAL
===================================================== */

.container{
    width: min(1180px, calc(100% - 42px));
    margin: auto;
}

.section{
    padding: 120px 0;
}

.eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.eyebrow::before{
    content: "";

    width: 28px;
    height: 1px;

    background: var(--gold);
}

h1, h2, h3{
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-weight: 500;
    line-height: 1.08;
}

h1 em, h2 em, h3 em{
    color: var(--gold);
    font-style: normal;
}


/* =====================================================
   HEADER
===================================================== */

.site-header{
    position: fixed;
    z-index: 1000;

    top: 0;
    left: 0;

    width: 100%;

    color: white;

    background:
        linear-gradient(
            to bottom,
            rgba(3, 24, 20, .65),
            transparent
        );

    transition:
        .45s var(--ease);
}

.site-header.scrolled{
    color: var(--text);

    background:
        rgba(249,247,241,.94);

    backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.07);
}

.nav-wrap{
    height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.brand{
    display: flex;
    align-items: center;
    gap: 12px;
}


.brand strong{
    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;
    font-weight: 500;
}

.brand small{
    display: block;

    margin-top: 2px;

    font-size: 8px;

    letter-spacing: 2px;

    opacity: .7;
}


/* NAV */

.main-nav{
    display: flex;
    align-items: center;
    gap: 32px;

    font-size: 13.5px;
    font-weight: 600;

    letter-spacing: .07em;
    text-transform: uppercase;
}

.main-nav a{
    position: relative;

    padding: 8px 0;

    opacity: .92;

    transition: .3s ease;
}

.main-nav a::after{
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transform: translateX(-50%);

    transition: .35s ease;
}

.main-nav a:hover{
    color: var(--gold);

    opacity: 1;
}

.main-nav a:hover::after{
    width: 100%;
}

.nav-cta{
    padding:
        12px 22px !important;

    border:
        1px solid
        rgba(255,255,255,.45);

    border-radius: 30px;

    letter-spacing: .1em;
}

.site-header.scrolled .nav-cta{
    border-color: var(--gold);
}

.nav-cta::after{
    display: none;
}


/* MOBILE */

.menu-toggle{
    display: none;

    border: 0;

    color: inherit;

    background: transparent;

    font-size: 27px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero{
    position: relative;

    height: 790px;

    color: white;

    overflow: visible;
}


.hero-slide{
    position: absolute;
    inset: 0;

    background-position: center;
    background-size: cover;

    opacity: 0;

    transform: scale(1.07);

    transition:
        opacity 1.2s ease,
        transform 7s ease;
}

.hero-slide.active{
    opacity: 1;

    transform: scale(1);
}

.hero-slide::after{
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,21,.86),
            rgba(4,25,21,.42),
            rgba(4,25,21,.25)
        );
}


.hero h1{
    margin-bottom: 25px;

    font-size:
        clamp(55px, 7vw, 91px);

    letter-spacing: -2px;
}

.hero h1 span{
    display: block;
}


/* =====================================================
   3 TARJETAS FLOTANTES DEL HERO
===================================================== */


/* =====================================================
   INTRO
===================================================== */

.intro{
    padding-top: 205px;
}

.intro-grid{
    display: grid;

    grid-template-columns:
        1fr .75fr;

    gap: 100px;

    align-items: end;
}

.intro h2{
    max-width: 730px;

    font-size:
        clamp(43px, 5vw, 69px);

    letter-spacing: -1px;
}

.intro-copy{
    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.intro-copy p + p{
    margin-top: 20px;
}


/* =====================================================
   NOSOTROS
===================================================== */


.mission-grid{
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 35px;

    margin-top: 45px;
}

.mission-grid h3{
    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 26px;
}

.mission-grid p{
    color:
        rgba(255,255,255,.57);

    font-size: 13px;

    line-height: 1.75;
}


/* =====================================================
   TITULOS
===================================================== */

.section-heading{
    max-width: 720px;

    margin-bottom: 60px;
}

.section-heading h2{
    font-size:
        clamp(45px,5vw,70px);
}

.section-heading p{
    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   TALLERES Y TERAPIAS
===================================================== */

.programs{
    background:
        var(--cream);
}


/*
    IMPORTANTE:

    La tarjeta ahora tiene:
    - foto grande
    - panel blanco que sube desde abajo
    - número
    - título
    - descripción
    - botón
*/

.card-grid{
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 26px;
}

.therapies .card-grid{
    grid-template-columns:
        repeat(3,1fr);
}

.service-card{
    position: relative;

    background: transparent;

    box-shadow: none;

    transition:
        .5s var(--ease);
}

.service-card:hover{
    transform:
        translateY(-8px);
}

.service-image{
    position: relative;

    height: 430px;

    overflow: hidden;

    border-radius:
        2px;
}

.service-image::after{
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            rgba(4,25,21,.45)
        );
}

.service-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s var(--ease);
}

.service-card:hover
.service-image img{
    transform:
        scale(1.08);
}

.service-image span{
    position: absolute;

    z-index: 3;

    top: 18px;
    left: 18px;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: white;

    background:
        rgba(7,28,24,.75);

    backdrop-filter:
        blur(8px);

    border:
        1px solid
        rgba(255,255,255,.2);

    font-size: 11px;
}


/*
    PANEL QUE SOBRESALE DE LA FOTO
*/

.service-body{
    position: relative;

    z-index: 5;

    width:
        calc(100% - 34px);

    min-height: 230px;

    margin:
        -70px auto 0;

    padding:
        30px 27px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 18px 45px
        rgba(10,35,29,.12);

    transition:
        .45s var(--ease);
}

.service-card:hover
.service-body{
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 60px
        rgba(10,35,29,.17);
}

.service-body h3{
    font-size: 27px;

    line-height: 1.1;
}

.service-body h3 span{
    display: block;

    color: var(--gold);
}

.gold-line{
    width: 40px;
    height: 2px;

    margin: 16px 0;

    background:
        var(--gold);
}

.service-body p{
    min-height: 70px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.info-button{
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 0;

    border: 0;

    color: var(--text);

    background: transparent;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;
}

.info-button i{
    color: var(--gold);

    transition:
        transform .3s ease;
}

.info-button:hover{
    color: var(--gold);
}

.info-button:hover i{
    transform:
        translateX(6px);
}


/* =====================================================
   EQUIPO
===================================================== */


/* =====================================================
   FAQ
===================================================== */

.faq{
    color: white;

    background:
        var(--green-950);
}

.faq-grid{
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 100px;
}

.faq .section-heading h2{
    color: white;
}

.accordion details{
    padding: 24px 0;

    border-top:
        1px solid
        rgba(255,255,255,.13);
}

.accordion details:last-child{
    border-bottom:
        1px solid
        rgba(255,255,255,.13);
}

.accordion summary{
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    color: white;

    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    cursor: pointer;

    list-style: none;
}

.accordion summary::-webkit-details-marker{
    display: none;
}

.accordion summary i{
    color: var(--gold);

    transition:
        .3s ease;
}

.accordion details[open]
summary i{
    transform:
        rotate(45deg);
}

.accordion p{
    max-width: 700px;

    margin-top: 18px;

    color:
        rgba(255,255,255,.63);

    font-size: 13px;

    line-height: 1.85;
}


/* =====================================================
   TESTIMONIOS
===================================================== */

.testimonials{
    background:
        var(--cream-2);
}


.testimonial{
    position: relative;

    padding: 40px;

    background: white;

    transition:
        .45s var(--ease);
}

.testimonial:hover{
    transform:
        translateY(-9px);

    box-shadow:
        var(--shadow-soft);
}


.testimonial > p{
    margin:
        28px 0 35px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

    line-height: 1.55;
}


.person-avatar{
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: white;

    background:
        var(--green-800);
}


/* =====================================================
   UBICACIÓN
===================================================== */


/* =====================================================
   MODAL PREMIUM
===================================================== */

.modal{
    position: fixed;

    z-index: 3000;

    inset: 0;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 25px;
}

.modal.open{
    display: flex;
}


/* CONTACTO DENTRO DEL MODAL */


@keyframes modalShow {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float{
    position: fixed;

    z-index: 2000;

    right: 24px;
    bottom: 24px;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    background:
        #20ad63;

    font-size: 28px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.23);

    transition:
        .35s var(--ease);

    animation:
        whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover{
    transform:
        scale(1.12);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow:
            0 15px 40px
            rgba(0,0,0,.23),
            0 0 0 0
            rgba(32,173,99,.3);
    }

    50% {
        box-shadow:
            0 15px 40px
            rgba(0,0,0,.23),
            0 0 0 13px
            rgba(32,173,99,0);
    }
}


/* =====================================================
   FOOTER
===================================================== */

.footer{
    padding:
        38px 0;

    color: white;

    background:
        #061814;
}


.footer strong{
    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;
}

.footer span{
    display: block;

    margin-top: 5px;

    color:
        rgba(255,255,255,.45);

    font-size: 11px;
}

.footer p{
    color:
        rgba(255,255,255,.45);

    font-size: 11px;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal{
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s var(--ease);
}

.reveal.visible{
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .main-nav{
        gap: 20px;

        font-size: 12px;
    }

    

    

    .card-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .therapies .card-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    
}


/* =====================================================
   TABLET / MÓVIL
===================================================== */

@media (max-width: 800px) {

    .section{
        padding:
            90px 0;
    }

    .menu-toggle{
        display: block;
    }

    .main-nav{

        position: absolute;

        top: 86px;
        left: 15px;
        right: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 18px;

        color: var(--text);

        background: white;

        box-shadow:
            var(--shadow-card);
    }

    .main-nav.open{
        display: flex;
    }

    .main-nav a{
        padding:
            13px 8px;

        font-size: 13px;

        letter-spacing: .05em;
    }

    .nav-cta{
        text-align: center;
    }

    /* HERO */

    .hero{
        height:
            760px;
    }

    

    

    

    

    /* INTRO */

    .intro{
        padding-top:
            350px;
    }

    .intro-grid{
        grid-template-columns:
            1fr;

        gap: 40px;
    }

    /* ABOUT */

    

    

    .mission-grid{
        grid-template-columns:
            1fr;
    }

    /* FAQ */

    .faq-grid{
        grid-template-columns:
            1fr;

        gap: 45px;
    }

    /* LOCATION */

    

    /* TEAM */

    

    /* FOOTER */

    
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 520px) {

    .container{
        width:
            calc(100% - 28px);
    }

    .section{
        padding:
            75px 0;
    }

    .hero{
        height:
            700px;
    }

    .hero h1{
        font-size:
            50px;

        letter-spacing:
            -1px;
    }

    

    

    

    

    .intro{
        padding-top:
            400px;
    }

    .intro h2{
        font-size:
            43px;
    }

    .card-grid, .therapies .card-grid{
        grid-template-columns:
            1fr;
    }

    .service-image{
        height:
            390px;
    }

    .service-body{
        width:
            calc(100% - 24px);

        margin-top:
            -55px;
    }

    

    

    

    .modal{
        padding:
            12px;
    }

    

    

    

    .whatsapp-float{
        right:
            15px;

        bottom:
            15px;

        width:
            55px;

        height:
            55px;
    }
}


/* =====================================================
   numeros
===================================================== */


.stats-section{
    position: relative;

    padding: 105px 0 115px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #071c18,
            #10382e
        );

    overflow: hidden;
}

.stats-section::before{
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(214,189,141,.15);
}

.stats-heading{
    max-width: 650px;

    margin-bottom: 65px;
}

.stats-heading h2{
    font-size:
        clamp(40px,5vw,62px);

    margin-bottom: 20px;
}

.stats-heading p{
    color:
        rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;
}

.stats-grid{
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top:
        1px solid
        rgba(255,255,255,.13);
}

.stat-item{
    padding:
        40px 30px;

    border-right:
        1px solid
        rgba(255,255,255,.13);

    transition:
        .4s ease;
}

.stat-item:last-child{
    border-right: 0;
}

.stat-item:hover{
    background:
        rgba(255,255,255,.035);

    transform:
        translateY(-5px);
}

.stat-number{
    display: flex;
    align-items: baseline;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 65px;

    line-height: 1;
}

.stat-number small{
    margin-left: 3px;

    font-size: 30px;
}

.stat-item h3{
    margin-bottom: 10px;

    color: white;

    font-size: 20px;
}

.stat-item p{
    color:
        rgba(255,255,255,.48);

    font-size: 12px;

    line-height: 1.7;
}


@media (max-width: 800px) {

    .stats-grid{
        grid-template-columns:
            repeat(2,1fr);
    }

    .stat-item:nth-child(2){
        border-right: 0;
    }

    .stat-item:nth-child(3), .stat-item:nth-child(4){
        border-top:
            1px solid
            rgba(255,255,255,.13);
    }
}


@media (max-width: 500px) {

    .stats-grid{
        grid-template-columns: 1fr;
    }

    .stat-item{
        border-right: 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.13);
    }

    .stat-item:last-child{
        border-bottom: 0;
    }

    .stat-item:nth-child(2){
        border-top:
            1px solid
            rgba(255,255,255,.13);
    }
}

/* =====================================================
CARRUSEL DE TESTIMONIOS
===================================================== */

.testimonials-slider{
position: relative;
display: flex;
align-items: center;
gap: 22px;
margin-top: 55px;
}


.testimonials-track{
display: flex;
gap: 24px;
transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
will-change: transform;
}

.testimonials-track .testimonial{
flex: 0 0 calc((100% - 48px) / 3);
min-width: 0;
}

/* =====================================================
FLECHAS
===================================================== */

.testimonial-arrow{
flex: 0 0 52px;
width: 52px;
height: 52px;


border: 1px solid rgba(0, 0, 0, .12);
border-radius: 50%;

background: rgba(255, 255, 255, .92);

display: flex;
align-items: center;
justify-content: center;

cursor: pointer;

color: #1f3d35;
font-size: 19px;

transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;


}

.testimonial-arrow:hover{
transform: translateY(-2px);
background: #1f3d35;
color: #fff;
box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

/* =====================================================
TARJETAS
===================================================== */

.testimonial{
position: relative;
padding: 38px 32px 32px;


background: #fff;

border: 1px solid rgba(0, 0, 0, .07);

border-radius: 18px;

box-shadow:
    0 15px 40px rgba(0, 0, 0, .06);

display: flex;
flex-direction: column;

min-height: 310px;

transition:
    transform .3s ease,
    box-shadow .3s ease;


}

.testimonial:hover{
transform: translateY(-5px);


box-shadow:
    0 20px 45px rgba(0, 0, 0, .10);


}

/* =====================================================
COMILLA
===================================================== */


/* =====================================================
TEXTO
===================================================== */

.testimonial > p{
margin: 20px 0 28px;


font-family: "Playfair Display", serif;

font-size: 18px;
line-height: 1.7;

color: #33433e;

flex: 1;


}

/* =====================================================
PERSONA
===================================================== */


.testimonial .person-avatar{
width: 43px;
height: 43px;


flex: 0 0 43px;

border-radius: 50%;

display: flex;
align-items: center;
justify-content: center;

background: #eef2ef;

color: #1f3d35;

font-weight: 700;


}


/* =====================================================
INDICADORES
===================================================== */


/* =====================================================
TABLET
===================================================== */

@media (max-width: 1000px) {


.testimonials-track .testimonial{
    flex: 0 0 calc((100% - 24px) / 2);
}


}

/* =====================================================
CELULAR
===================================================== */

@media (max-width: 650px) {


.testimonials-slider{
    gap: 10px;
}

.testimonial-arrow{
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    font-size: 16px;
}

.testimonials-track .testimonial{
    flex: 0 0 100%;
}

.testimonial{
    min-height: 290px;

    padding: 32px 25px 26px;
}

.testimonial > p{
    font-size: 17px;
}

}
/* =====================================================
PANEL DE CONTACTO PREMIUM
===================================================== */


/* textura decorativa */


/* =====================================================
ENCABEZADO
===================================================== */


/* =====================================================
GRID
===================================================== */


/* =====================================================
TARJETAS
===================================================== */


/* =====================================================
ICONOS
===================================================== */


/* =====================================================
INFORMACIÓN
===================================================== */


/* =====================================================
FOOTER DEL PANEL
===================================================== */


/* =====================================================
TABLET
===================================================== */


/* =====================================================
MOBILE
===================================================== */


/* =====================================================
FOOTER PREMIUM
===================================================== */


/* =====================================================
DECORACIÓN
===================================================== */


/* =====================================================
CONTENIDO PRINCIPAL
===================================================== */


/* =====================================================
MENSAJE
===================================================== */


/* =====================================================
CONTACTO
===================================================== */


/* =====================================================
ICONOS
===================================================== */


/* =====================================================
BARRA INFERIOR
===================================================== */


/* =====================================================
TABLET
===================================================== */


/* =====================================================
MOBILE
===================================================== */


/* =====================================================
FOOTER PREMIUM
===================================================== */


/* =====================================================
DECORACIÓN
===================================================== */


/* =====================================================
CONTENIDO PRINCIPAL
===================================================== */


/* =====================================================
MENSAJE
===================================================== */


/* =====================================================
CONTACTO
===================================================== */


/* =====================================================
ICONOS
===================================================== */


/* =====================================================
BARRA INFERIOR
===================================================== */


/* =====================================================
TABLET
===================================================== */


/* =====================================================
MOBILE
===================================================== */


/* =====================================================
FOOTER PREMIUM
===================================================== */

.footer{
position: relative;


background:
    radial-gradient(
        circle at 85% 20%,
        rgba(190,157,94,.08),
        transparent 30%
    ),
    #101815;

color: #fff;

overflow: hidden;


}

/* =====================================================
DECORACIÓN
===================================================== */

.footer::before{
content: "";


position: absolute;

width: 380px;
height: 380px;

border: 1px solid rgba(199,169,108,.08);

border-radius: 50%;

right: -180px;
top: -230px;

pointer-events: none;


}

/* =====================================================
CONTENIDO PRINCIPAL
===================================================== */


/* =====================================================
MENSAJE
===================================================== */


/* =====================================================
CONTACTO
===================================================== */


/* =====================================================
ICONOS
===================================================== */


/* =====================================================
BARRA INFERIOR
===================================================== */


/* =====================================================
TABLET
===================================================== */


/* =====================================================
MOBILE
===================================================== */


/* =====================================================
   FOOTER PREMIUM - FUNDACIÓN REHABILITA
   ===================================================== */

.footer-premium{
    position: relative !important;

    width: 100% !important;

    background: #101815 !important;

    color: #ffffff !important;

    overflow: hidden !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* Decoración */

.footer-premium::before{
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -280px;

    border: 1px solid rgba(199, 170, 108, 0.12);

    border-radius: 50%;

    pointer-events: none;
}


/* =====================================================
   PARTE PRINCIPAL
   ===================================================== */

.footer-premium-main{
    position: relative;

    z-index: 2;

    min-height: 220px;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 50px;

    padding-top: 55px !important;

    padding-bottom: 55px !important;
}


/* =====================================================
   TEXTO IZQUIERDA
   ===================================================== */

.footer-premium-message{
    max-width: 650px;
}

.footer-premium-message > span{
    display: block;

    margin-bottom: 13px;

    color: #c7aa6c;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.footer-premium-message h3{
    margin: 0 !important;

    padding: 0 !important;

    color: #ffffff !important;

    font-family: "Playfair Display", serif !important;

    font-size: clamp(30px, 4vw, 44px) !important;

    line-height: 1.1 !important;

    font-weight: 600 !important;
}

.footer-premium-message h3 em{
    color: #c7aa6c !important;

    font-style: italic !important;
}

.footer-premium-message p{
    margin: 15px 0 0 !important;

    padding: 0 !important;

    color: rgba(255, 255, 255, 0.55) !important;

    font-family: "DM Sans", sans-serif;

    font-size: 13px !important;

    line-height: 1.7 !important;
}


/* =====================================================
   CONTACTO DERECHA
   ===================================================== */

.footer-premium-contact{
    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 14px;

    flex-shrink: 0;
}

.footer-premium-contact small{
    color: rgba(255, 255, 255, 0.4);

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =====================================================
   ICONOS
   ===================================================== */

.footer-premium-socials{
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-premium-socials a{
    width: 43px !important;

    height: 43px !important;

    min-width: 43px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    padding: 0 !important;

    margin: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.14) !important;

    border-radius: 50% !important;

    background: rgba(255, 255, 255, 0.035) !important;

    color: rgba(255, 255, 255, 0.75) !important;

    text-decoration: none !important;

    font-size: 17px !important;

    line-height: 1 !important;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease !important;
}

.footer-premium-socials a:hover{
    transform: translateY(-4px) !important;

    background: #c7aa6c !important;

    border-color: #c7aa6c !important;

    color: #101815 !important;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.28) !important;
}


/* =====================================================
   PARTE INFERIOR
   ===================================================== */

.footer-premium-bottom{
    position: relative;

    z-index: 2;

    min-height: 60px;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.32);

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    letter-spacing: 0.03em;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 700px) {

    .footer-premium-main{
        min-height: auto;

        flex-direction: column !important;

        align-items: flex-start !important;

        justify-content: flex-start !important;

        gap: 32px;

        padding-top: 45px !important;

        padding-bottom: 45px !important;
    }

    .footer-premium-contact{
        align-items: flex-start;
    }

}


/* =====================================================
   CELULAR
   ===================================================== */

@media (max-width: 480px) {

    .footer-premium-message h3{
        font-size: 31px !important;
    }

    .footer-premium-socials a{
        width: 40px !important;

        height: 40px !important;

        min-width: 40px !important;

        font-size: 15px !important;
    }

    .footer-premium-bottom{
        min-height: auto;

        flex-direction: column !important;

        align-items: flex-start !important;

        justify-content: center !important;

        padding-top: 16px;

        padding-bottom: 16px;

        gap: 6px;
    }

}


/* =====================================================
   UBICACIÓN / MAPA
===================================================== */

.location-section{
    position: relative;

    background: #f4f3ef;

    padding: 105px 0 110px;

    overflow: hidden;
}


/* =====================================================
   CONTENEDOR
===================================================== */

.location-container{

    display: grid;

    grid-template-columns:
        minmax(300px, 0.72fr)
        minmax(500px, 1.55fr);

    align-items: center;

    gap: 70px;
}


/* =====================================================
   TEXTO
===================================================== */

.location-intro{
    max-width: 440px;

    padding-left: 10px;
}

.location-intro .eyebrow{
    color: #718079;
}

.location-intro h2{

    margin: 18px 0 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.02;

    font-weight: 600;

    color: #1b2d26;
}

.location-intro h2 em{

    color: #a98c56;

    font-style: italic;
}

.location-intro p{

    max-width: 390px;

    margin: 0;

    color: #68736e;

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   MAPA
===================================================== */

.location-map{

    position: relative;

    width: 100%;

    min-height: 470px;

    border-radius: 22px;

    overflow: hidden;

    background: #dfe3df;

    box-shadow:
        0 25px 60px rgba(25, 45, 38, 0.14);

    border: 1px solid rgba(25, 45, 38, 0.08);
}


/* MAPA */

.location-map iframe{

    display: block;

    width: 100%;

    height: 470px;

    border: 0;
}


/* =====================================================
   ETIQUETA DEL MAPA
===================================================== */

.map-label{

    position: absolute;

    z-index: 5;

    top: 20px;

    left: 20px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    border-radius: 30px;

    background: rgba(16, 24, 21, 0.90);

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .04em;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);

    backdrop-filter: blur(8px);
}

.map-label i{

    color: #c7aa6c;

    font-size: 15px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

    .location-container{

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .location-intro{

        max-width: 650px;

        padding-left: 0;
    }

    .location-intro p{

        max-width: 550px;
    }

    .location-map{

        min-height: 430px;
    }

    .location-map iframe{

        height: 430px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .location-section{

        padding: 75px 0 80px;
    }

    .location-container{

        gap: 32px;
    }

    .location-intro h2{

        font-size: 43px;

        margin-top: 14px;
    }

    .location-intro p{

        font-size: 14px;
    }

    .location-map{

        min-height: 360px;

        border-radius: 16px;
    }

    .location-map iframe{

        height: 360px;
    }

    .map-label{

        top: 14px;

        left: 14px;

        padding: 9px 12px;

        font-size: 10px;
    }

}
/* =====================================================
   PILARES FLOTANTES — DISEÑO PREMIUM
===================================================== */

.hero{
    position: relative;
    z-index: 1;
}


/* Contenedor */

.hero-pillars{
    position: relative;
    z-index: 10;

    /* Un poco más abajo */
    margin-top: -65px;

    padding-bottom: 35px;
}


/* Grid */

.hero-pillars-grid{
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 26px;
}


/* =====================================================
   TARJETA
===================================================== */

.hero-pillar{
    position: relative;

    min-height: 305px;

    padding: 32px 34px;

    background: #ffffff;

    border-radius: 22px;

    border: 1px solid rgba(16, 32, 26, .08);

    box-shadow:
        0 18px 45px rgba(16, 32, 26, .12);

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease;
}


/* =====================================================
   BORDE ANIMADO
===================================================== */

.hero-pillar::before{

    content: "";

    position: absolute;

    inset: 0;

    padding: 1.5px;

    border-radius: 22px;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            #c7aa6c 45%,
            #e5ce99 55%,
            transparent 80%
        );

    background-size: 250% 250%;

    opacity: 0;

    transition:
        opacity .35s ease;

    /*
    Permite que el fondo de la tarjeta
    siga siendo blanco.
    */

   -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}


/* =====================================================
   HOVER
===================================================== */

.hero-pillar:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 28px 65px rgba(16, 32, 26, .17);
}


.hero-pillar:hover::before{

    opacity: 1;

    animation:
        borderMove 2.5s linear infinite;
}


/* Movimiento del borde */

@keyframes borderMove {

    0% {
        background-position:
            0% 50%;
    }

    50% {
        background-position:
            100% 50%;
    }

    100% {
        background-position:
            0% 50%;
    }

}


/* =====================================================
   BRILLO SUAVE INTERIOR
===================================================== */

.hero-pillar::after{

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        rgba(199, 170, 108, .08);

    transition:
        transform .5s ease,
        opacity .5s ease;

    pointer-events: none;
}


.hero-pillar:hover::after{

    transform:
        scale(2);

    opacity: .8;
}


/* =====================================================
   PARTE SUPERIOR
===================================================== */

.hero-pillar-top{

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 35px;
}


/* Número */

.hero-pillar-number{

    color: #a98c56;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;
}


/* Iconos */

.hero-pillar-top i{

    color: #a98c56;

    font-size: 20px;

    transition:
        transform .4s ease,
        color .3s ease;
}


.hero-pillar:hover
.hero-pillar-top i{

    color: #8d713f;

    transform:
        translate(4px, -4px)
        scale(1.08);
}


/* =====================================================
   TITULO
===================================================== */

.hero-pillar h3{

    position: relative;

    z-index: 2;

    margin: 0 0 18px;

    color: #182a23;

    font-family:
        "Playfair Display",
        serif;

    font-size: 29px;

    line-height: 1.08;

    font-weight: 600;
}


.hero-pillar h3 em{

    color: #a98c56;

    font-style: italic;
}


/* =====================================================
   TEXTO
===================================================== */

.hero-pillar p{

    position: relative;

    z-index: 2;

    max-width: 370px;

    margin: 0;

    color: #6b766f;

    font-size: 13px;

    line-height: 1.8;

    transition:
        color .3s ease;
}


.hero-pillar:hover p{

    color: #59655e;
}


/* =====================================================
   PEQUEÑA LÍNEA INFERIOR
===================================================== */

.hero-pillar .hero-pillar-top::after{

    content: "";

    position: absolute;

    left: 0;

    bottom: -18px;

    width: 35px;

    height: 1px;

    background: #c7aa6c;

    transition:
        width .45s ease;
}


.hero-pillar:hover
.hero-pillar-top::after{

    width: 75px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .hero-pillars{

        margin-top: -50px;

    }

    .hero-pillars-grid{

        grid-template-columns:
            repeat(2, 1fr);

    }

    .hero-pillar:last-child{

        grid-column:
            1 / -1;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .hero-pillars{

        margin-top: -35px;

        padding-bottom: 20px;

    }

    .hero-pillars-grid{

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .hero-pillar:last-child{

        grid-column: auto;

    }

    .hero-pillar{

        min-height: auto;

        padding: 28px;

        border-radius: 19px;

    }

    .hero-pillar h3{

        font-size: 26px;

    }

}/* =====================================================
   HERO PREMIUM
===================================================== */

.hero-premium{

    position: relative;

    min-height: 720px;

    height: 78vh;

    max-height: 850px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background: #14251e;
}


/* =====================================================
   IMAGEN
===================================================== */

.hero-premium-image{

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center center;

    transform: scale(1.02);

    animation:
        heroImageZoom 12s ease-out forwards;
}


@keyframes heroImageZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}


/* =====================================================
   DEGRADADO
===================================================== */

.hero-premium-overlay{

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 28, 21, .94) 0%,
            rgba(10, 28, 21, .84) 32%,
            rgba(10, 28, 21, .48) 58%,
            rgba(10, 28, 21, .18) 100%
        );

}


/* Degradado inferior */

.hero-premium::after{

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 180px;

    background:
        linear-gradient(
            to top,
            rgba(255,255,255,.12),
            transparent
        );

    pointer-events: none;

}


/* =====================================================
   CONTENEDOR DEL HERO
===================================================== */

.hero-premium-content{

    position: relative;

    z-index: 3;

    width: 100%;

    display: flex;

    align-items: center;
}


/* =====================================================
   TEXTO
===================================================== */

.hero-premium-text{

    max-width: 680px;

    padding-top: 50px;

    /*
       Separación del borde izquierdo
    */

    margin-left: 55px;
}


/* =====================================================
   EYEBROW
===================================================== */

.hero-premium-eyebrow{

    display: block;

    margin-bottom: 17px;

    color: #d4b978;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .22em;
}


/* =====================================================
   LINEA DECORATIVA
===================================================== */

.hero-premium-line{

    width: 55px;

    height: 2px;

    margin-bottom: 25px;

    background: #c7aa6c;
}


/* =====================================================
   TITULO
===================================================== */

.hero-premium h1{

    margin: 0;

    color: #ffffff;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            52px,
            5.5vw,
            78px
        );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.025em;
}


.hero-premium h1 em{

    color: #d2b875;

    font-style: italic;

    font-weight: 500;
}


/* =====================================================
   DESCRIPCION
===================================================== */

.hero-premium-text > p{

    max-width: 540px;

    margin: 30px 0 0;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.8;
}


/* =====================================================
   BOTONES
===================================================== */

.hero-premium-actions{

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;
}


.hero-btn{

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 50px;

    padding: 0 22px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease,
        color .3s ease;
}


/* =====================================================
   BOTON PRINCIPAL
===================================================== */

.hero-btn-primary{

    color: #172820;

    background: #d1b572;

    border: 1px solid #d1b572;
}


.hero-btn-primary:hover{

    transform:
        translateY(-3px);

    background: #e0c88b;

    border-color: #e0c88b;
}


.hero-btn-primary i{

    transition:
        transform .3s ease;
}


.hero-btn-primary:hover i{

    transform:
        translateX(4px);
}


/* =====================================================
   BOTON SECUNDARIO
===================================================== */


/* =====================================================
   FRASE INFERIOR
===================================================== */

.hero-premium-note{

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 42px;

    color:
        rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: .08em;
}


.hero-premium-note i{

    color: #c7aa6c;

    font-size: 14px;
}


/* =====================================================
   INDICADOR DE SCROLL
===================================================== */


@keyframes scrollArrow {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(7px);

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .hero-premium-text{

        margin-left: 30px;

        max-width: 620px;

    }

}


/* =====================================================
   TABLET PEQUEÑA
===================================================== */

@media (max-width: 900px) {

    .hero-premium{

        min-height: 680px;

        height: 78vh;

    }


    .hero-premium-text{

        margin-left: 20px;

        max-width: 600px;

    }


    .hero-premium-overlay{

        background:
            linear-gradient(
                90deg,
                rgba(10,28,21,.93),
                rgba(10,28,21,.55)
            );

    }


    

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .hero-premium{

        min-height: 720px;

        height: auto;

        padding:
            130px 0 110px;

    }


    .hero-premium-image{

        background-position:
            63% center;

    }

    .hero-premium-content{

        width: calc(100% - 28px);

        margin-left: auto;

        margin-right: auto;

    }


    .hero-premium-overlay{

        background:
            linear-gradient(
                90deg,
                rgba(8,26,20,.94),
                rgba(8,26,20,.72)
            );

    }


    .hero-premium-text{

        max-width: 100%;

        margin-left: 0;

        padding-top: 20px;

    }


    .hero-premium-eyebrow{

        font-size: 9px;

        letter-spacing: .16em;

    }


    .hero-premium h1{

        font-size: clamp(2.8rem, 13vw, 4rem);

        line-height: 1;

    }


    .hero-premium-text > p{

        font-size: .98rem;

        line-height: 1.7;

        margin: 24px 0 28px;

    }


    .hero-premium-actions{

        flex-direction: column;

        align-items: stretch;

        margin-top: 0;

    }


    .hero-btn{

        width: 100%;

        min-height: 46px;

        padding: 13px 14px;

        font-size: .88rem;

    }


    .hero-premium-note{

        margin-top: 30px;

        font-size: 9px;

        line-height: 1.5;

        max-width: 280px;

    }


    

}

/* =====================================================
   CELULAR ESTRECHO
===================================================== */

@media (max-width: 430px) {

    .hero-premium{

        min-height: 0;

        padding: 105px 0 78px;

    }

    .hero-premium-content{

        align-items: flex-start;

    }

    .hero-premium-text{

        padding-top: 10px;

    }

    .hero-premium-eyebrow{

        max-width: 260px;

        line-height: 1.5;

    }

    .hero-premium h1{

        font-size: clamp(2.35rem, 12vw, 2.7rem);

    }

    .hero-premium-text > p{

        max-width: 330px;

        font-size: .92rem;

        line-height: 1.7;

        margin: 24px 0 28px;

    }

    .hero-btn{

        min-height: 48px;

        padding: 0 16px;

    }

    .hero-premium-note{

        max-width: 250px;

    }

    

}

@media (max-width: 360px) {

    .hero-premium{

        padding-top: 92px;

    }

    .hero-premium h1{

        font-size: 38px;

    }

    .hero-premium-text > p{

        font-size: 12.5px;

    }

    .hero-premium-note{

        font-size: 8px;

    }

}
/* =====================================================
   LOGO REAL DE LA FUNDACIÓN
===================================================== */

.site-header .brand{

    display: flex;

    align-items: center;

    text-decoration: none;

    flex-shrink: 0;

    width: 250px;

}


/* Imagen del logo */

.site-header .brand-logo{

    display: block;

    width: 250px;

    height: auto;

    max-height: 72px;

    object-fit: contain;

    object-position: left center;

    transition:
        transform .3s ease;
}


/* Pequeña animación */

.site-header .brand:hover .brand-logo{

    transform:
        scale(1.02);
}


/* =====================================================
   HEADER SOBRE HERO
===================================================== */

.site-header{

    padding-top: 8px;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 850px) {

    .site-header .brand{

        width: 190px;

    }


    .site-header .brand-logo{

        width: 190px;

        max-height: 58px;

    }

}


@media (max-width: 480px) {

    .site-header .brand{

        width: 170px;

    }


    .site-header .brand-logo{

        width: 170px;

        max-height: 52px;

    }

}

/* =====================================================
   LOGO HEADER
===================================================== */


.brand-logo{

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =====================================================
   TABLET
===================================================== */


/* =====================================================
   CELULAR
===================================================== */


/* =====================================================
   NUESTRO ENFOQUE
===================================================== */


/* Decoración */


/* =====================================================
   CABECERA
===================================================== */


/* =====================================================
   GRID
===================================================== */


/* =====================================================
   TARJETAS
===================================================== */


/* Línea lateral */


/* Hover */


/* =====================================================
   PARTE SUPERIOR
===================================================== */


/* =====================================================
   CONTENIDO
===================================================== */


/* =====================================================
   TARJETA 05
===================================================== */


/* =====================================================
   RESPONSIVE
===================================================== */


/* =====================================================
   LISTA DESTACADA - QUIENES SOMOS
===================================================== */

.about-highlights{

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    flex-direction: column;

    gap: 0;

}


/* Cada elemento */

.about-highlights li{

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 17px 0;

    color: #5f6c66;

    font-size: 14px;

    line-height: 1.7;

    border-bottom:
        1px solid rgba(20,45,35,.09);

    transition:
        padding-left .3s ease,
        color .3s ease;
}


/* Primera línea superior */

.about-highlights li:first-child{

    border-top:
        1px solid rgba(20,45,35,.09);

}


/* =====================================================
   ESTRELLA
===================================================== */

.highlight-icon{

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    margin-top: 1px;

    color: #b39455;

    font-size: 13px;

    transition:
        transform .35s ease,
        color .35s ease;
}


/* =====================================================
   HOVER
===================================================== */

.about-highlights li:hover{

    padding-left: 8px;

    color: #243c32;

}


.about-highlights li:hover
.highlight-icon{

    color: #8e7136;

    transform:
        rotate(45deg)
        scale(1.15);

}


/* =====================================================
   LINEA DORADA AL PASAR
===================================================== */

.about-highlights li::before{

    content: "";

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 0;

    height: 2px;

    background: #c5a763;

    transition:
        width .4s ease;
}


.about-highlights li:hover::before{

    width: 100%;

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .about-highlights li{

        gap: 11px;

        padding: 14px 0;

        font-size: 13px;

    }


    .highlight-icon{

        width: 20px;

        font-size: 11px;

    }

}
/* =====================================================
   INTRODUCCIÓN DESPUÉS DEL HERO
===================================================== */

.intro-after-hero{

    position: relative;

    padding-top: 85px;

    margin-top: -10px;
}


/* =====================================================
   TITULO
===================================================== */

.intro-after-hero .intro-grid{

    position: relative;

    z-index: 2;
}


/* =====================================================
   ESPACIADO ENTRE TARJETAS Y TEXTO
===================================================== */

.intro-after-hero .eyebrow{

    margin-bottom: 16px;
}


.intro-after-hero h2{

    margin-top: 0;

    line-height: 1.08;
}


/* =====================================================
   TEXTO DE INTRODUCCIÓN
===================================================== */

.intro-after-hero .intro-copy{

    padding-top: 8px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .intro-after-hero{

        padding-top: 70px;

    }

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {

    .intro-after-hero{

        padding-top: 55px;

    }

}
/* =====================================================
   NUESTRO ENFOQUE — DARK PREMIUM
===================================================== */


/* textura muy sutil */


/* brillo decorativo */


/* =====================================================
   HEADER
===================================================== */


/* texto derecha */


/* =====================================================
   EYEBROW
===================================================== */


/* =====================================================
   GRID
===================================================== */


/* =====================================================
   TARJETAS
===================================================== */


/* línea dorada */


/* brillo interior */


/* =====================================================
   PARTE SUPERIOR
===================================================== */


/* =====================================================
   CONTEÚDO
===================================================== */


/* =====================================================
   HOVER
===================================================== */


/* =====================================================
   TARJETA DESTACADA
===================================================== */


/* =====================================================
   RESPONSIVE
===================================================== */


/* =====================================================
   TESTIMONIOS — DISEÑO PREMIUM
===================================================== */

.testimonials{
    position: relative;
    background: #ffffff;
    overflow: hidden;
    padding: 120px 0 110px;
}


/* -----------------------------------------------------
   ENCABEZADO
----------------------------------------------------- */

.testimonials-heading{
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}


.testimonials-title .eyebrow{
    margin-bottom: 18px;
}


.testimonials-title h2{
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 500;
    color: #18211d;
    letter-spacing: -1.5px;
}


.testimonials-title h2 em{
    color: #8c7650;
    font-style: italic;
    font-weight: 500;
}


.testimonials-intro{
    max-width: 520px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}


.testimonials-intro p{
    margin: 0;
    color: #66706b;
    font-size: 16px;
    line-height: 1.8;
}


.testimonial-line{
    width: 45px;
    height: 1px;
    background: #9b845a;
    margin-top: 11px;
    flex-shrink: 0;
}


/* -----------------------------------------------------
   SLIDER
----------------------------------------------------- */

.testimonials-slider{
    position: relative;
    display: flex;
    align-items: center;
    gap: 22px;
}


.testimonials-viewport{
    width: 100%;
    overflow: hidden;
}


.testimonials-track{
    display: flex;
    gap: 24px;
    transition: transform 0.75s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}


/* -----------------------------------------------------
   TARJETAS
----------------------------------------------------- */

.testimonial{
    position: relative;
    flex: 0 0 calc((100% - 48px) / 3);

    min-height: 330px;

    padding: 34px 34px 30px;

    background: #ffffff;

    border: 1px solid #e7e9e5;

    border-radius: 24px;

    box-shadow:
        0 12px 35px rgba(20, 30, 25, 0.055);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.testimonial:hover{
    transform: translateY(-8px);

    border-color: rgba(151, 126, 82, 0.45);

    box-shadow:
        0 20px 45px rgba(20, 30, 25, 0.10);
}


/* -----------------------------------------------------
   PARTE SUPERIOR
----------------------------------------------------- */

.testimonial-top{
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


.testimonial-number{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #9b845a;
}


.testimonial-top i{
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f4f1e9;

    color: #92794d;

    font-size: 22px;
}


/* -----------------------------------------------------
   TEXTO
----------------------------------------------------- */

.testimonial > p{
    margin: 0;

    color: #3e4843;

    font-family: "Playfair Display", serif;

    font-size: 19px;

    line-height: 1.65;

    flex: 1;
}


/* -----------------------------------------------------
   PERSONA
----------------------------------------------------- */

.testimonial-bottom{
    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #eceeea;
}


.person-avatar{
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #18211d;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
}


.person-info{
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.person-info strong{
    color: #25302b;
    font-size: 13px;
    font-weight: 700;
}


.person-info span{
    color: #89918c;
    font-size: 12px;
}


/* -----------------------------------------------------
   FLECHAS
----------------------------------------------------- */

.testimonial-arrow{
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    border-radius: 50%;

    border: 1px solid #dfe3df;

    background: #ffffff;

    color: #26332d;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    font-size: 17px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.testimonial-arrow:hover{
    background: #18211d;

    color: #ffffff;

    border-color: #18211d;

    transform: scale(1.08);

    box-shadow:
        0 8px 22px rgba(24, 33, 29, 0.18);
}


.testimonial-arrow:active{
    transform: scale(0.96);
}


/* -----------------------------------------------------
   CONTROLES
----------------------------------------------------- */

.testimonial-controls{
    margin-top: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}


.testimonial-dots{
    display: flex;
    align-items: center;
    gap: 7px;
}


.testimonial-dots button{
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #d4d8d4;

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.testimonial-dots button.active{
    width: 26px;

    border-radius: 20px;

    background: #92794d;
}


.testimonial-progress{
    color: #9aa19d;

    font-size: 11px;

    letter-spacing: .4px;
}


/* -----------------------------------------------------
   FONDO DECORATIVO
----------------------------------------------------- */

.testimonials::before{
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(151, 126, 82, 0.035);

    top: -220px;
    right: -160px;

    pointer-events: none;
}


.testimonials::after{
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background: rgba(24, 33, 29, 0.025);

    bottom: -150px;
    left: -100px;

    pointer-events: none;
}


/* -----------------------------------------------------
   TABLET
----------------------------------------------------- */

@media (max-width: 1100px) {

    .testimonials{
        padding: 100px 0;
    }


    .testimonials-heading{
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .testimonials-intro{
        max-width: 650px;
    }


    .testimonial{
        flex: 0 0 calc((100% - 24px) / 2);
    }

}


/* -----------------------------------------------------
   CELULAR
----------------------------------------------------- */

@media (max-width: 700px) {

    .testimonials{
        padding: 80px 0;
    }


    .testimonials-heading{
        margin-bottom: 40px;
    }


    .testimonials-title h2{
        font-size: 43px;
    }


    .testimonials-intro{
        gap: 14px;
    }


    .testimonial-line{
        width: 30px;
    }


    .testimonial{
        flex: 0 0 100%;

        min-height: 310px;

        padding: 28px 25px;
    }


    .testimonial > p{
        font-size: 18px;
    }


    .testimonial-arrow{
        width: 44px;
        height: 44px;

        flex: 0 0 44px;
    }


    .testimonials-slider{
        gap: 10px;
    }


    .testimonial-progress{
        display: none;
    }

}


/* -----------------------------------------------------
   CELULAR PEQUEÑO
----------------------------------------------------- */

@media (max-width: 480px) {

    .testimonials-title h2{
        font-size: 38px;
    }


    .testimonial-arrow{
        width: 40px;
        height: 40px;

        flex: 0 0 40px;
    }


    .testimonials-slider{
        gap: 7px;
    }

}
/* =====================================================
   CORRECCIÓN TÍTULOS DE TARJETAS
===================================================== */

.service-card{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-body{
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3{
    margin: 0;

    font-size: 27px;
    line-height: 1.12;

    min-height: 62px;

    overflow-wrap: break-word;
}

.service-body h3 em{
    display: inline;
}

.service-body .gold-line{
    flex-shrink: 0;
    margin: 18px 0;
}

.service-body p{
    margin-bottom: 25px;
}

.service-body .info-button{
    margin-top: auto;
}
/* =====================================================
   BOTÓN MÁS INFORMACIÓN — PREMIUM
===================================================== */

.info-button{
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 13px 16px;

    margin-top: auto;

    border: 1px solid rgba(184, 154, 98, 0.45);

    border-radius: 50px;

    background: transparent;

    color: #333;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: .3px;

    cursor: pointer;

    overflow: hidden;

    transition:
        color .35s ease,
        border-color .35s ease,
        transform .35s ease;
}


/* Línea/fondo dorado */

.info-button::before{
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background: #b89a62;

    border-radius: 50px;

    transition: width .4s ease;

    z-index: 0;
}


/* Texto */

.info-button span{
    position: relative;

    z-index: 2;
}


/* Flecha */

.info-button i{
    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: rgba(184, 154, 98, 0.12);

    color: #b89a62;

    font-size: 14px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


/* Hover */

.info-button:hover{

    color: #ffffff;

    border-color: #b89a62;

    transform: translateY(-2px);

}


.info-button:hover::before{
    width: 100%;
}


.info-button:hover i{

    transform: translateX(4px);

    background: rgba(255,255,255,.18);

    color: #ffffff;
}


/* Click */

.info-button:active{
    transform: translateY(0);
}
/* =====================================================
   POPUPS PREMIUM
===================================================== */

.program-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}


.program-modal.open{
    opacity: 1;
    visibility: visible;
}


/* =====================================================
   FONDO
===================================================== */

.program-modal-overlay{
    position: absolute;
    inset: 0;

    background:
        rgba(8, 12, 12, .72);

    backdrop-filter: blur(8px);
}


/* =====================================================
   CAJA
===================================================== */

.program-modal-box{

    position: relative;

    width: min(720px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 26px;

    padding: 42px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .28);

    transform:
        translateY(30px)
        scale(.97);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);

    scrollbar-width: thin;
}


.program-modal.open .program-modal-box{

    transform:
        translateY(0)
        scale(1);
}


/* =====================================================
   BOTÓN CERRAR
===================================================== */

.program-modal-close{

    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border: 1px solid #e8e8e8;

    border-radius: 50%;

    background: #ffffff;

    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}


.program-modal-close:hover{

    background: #111;

    color: #ffffff;

    border-color: #111;

    transform: rotate(90deg);
}


/* =====================================================
   HEADER
===================================================== */

.program-modal-header{

    display: flex;

    align-items: center;

    gap: 20px;

    padding-right: 50px;
}


.program-modal-icon{

    width: 68px;
    height: 68px;

    flex-shrink: 0;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #111 0%,
            #2c3431 100%
        );

    color: #d5b36a;

    font-size: 27px;

    box-shadow:
        0 12px 25px rgba(0,0,0,.12);
}


.program-modal-category{

    display: block;

    margin-bottom: 5px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #9a7a38;
}


.program-modal-header h2{

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.05;

    color: #171717;
}


/* =====================================================
   LÍNEA
===================================================== */

.program-modal-line{

    width: 55px;

    height: 3px;

    margin: 28px 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #b18a45,
            #dfc27c
        );
}


/* =====================================================
   CONTENIDO
===================================================== */

.program-modal-description{

    margin: 0 0 28px;

    font-size: 16px;

    line-height: 1.8;

    color: #606060;
}


/* =====================================================
   GRID INFORMACIÓN
===================================================== */

.program-modal-info-grid{

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    margin-bottom: 25px;
}


.program-modal-info{

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 20px;

    background: #f7f7f5;

    border: 1px solid #ededeb;

    border-radius: 18px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.program-modal-info:hover{

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);
}


.program-modal-info-icon{

    width: 40px;
    height: 40px;

    flex-shrink: 0;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    color: #a57e38;

    font-size: 18px;
}


.program-modal-info span{

    display: block;

    margin-bottom: 6px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #9a7a38;
}


.program-modal-info p{

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #555;
}


/* =====================================================
   QUÉ SE TRABAJA
===================================================== */

.program-modal-work{

    padding: 24px;

    border-radius: 20px;

    background: #111;

    color: white;
}


.program-modal-work-title{

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;
}


.program-modal-work-title i{

    color: #d2ae61;

    font-size: 18px;
}


.program-modal-work ul{

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 11px 25px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.program-modal-work li{

    position: relative;

    padding-left: 20px;

    font-size: 14px;

    line-height: 1.6;

    color: rgba(255,255,255,.78);
}


.program-modal-work li::before{

    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #c9a45b;
}


/* =====================================================
   FOOTER
===================================================== */

.program-modal-footer{

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 27px;

    padding-top: 22px;

    border-top: 1px solid #eeeeee;
}


.program-modal-footer > span{

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    color: #888;
}


.program-modal-footer > span i{

    color: #b18a45;
}


/* =====================================================
   BOTÓN CERRAR ELEGANTE
===================================================== */

.program-modal-action{

    display: inline-flex;

    align-items: center;

    gap: 12px;

    border: 0;

    border-radius: 50px;

    padding: 12px 19px;

    background: #111;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease;
}


.program-modal-action:hover{

    background: #b18a45;

    transform: translateX(3px);
}


.program-modal-action i{

    font-size: 15px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 650px) {

    .program-modal{

        padding: 14px;
    }


    .program-modal-box{

        padding: 30px 22px;

        border-radius: 22px;

        max-height: 92vh;
    }


    .program-modal-header{

        gap: 14px;

        padding-right: 40px;
    }


    .program-modal-icon{

        width: 55px;
        height: 55px;

        border-radius: 16px;

        font-size: 22px;
    }


    .program-modal-header h2{

        font-size: 28px;
    }


    .program-modal-info-grid{

        grid-template-columns: 1fr;
    }


    .program-modal-work ul{

        grid-template-columns: 1fr;
    }


    .program-modal-footer{

        align-items: flex-start;

        flex-direction: column;
    }


    .program-modal-action{

        width: 100%;

        justify-content: center;
    }

}


@media (max-width: 400px) {

    .program-modal-box{

        padding: 26px 18px;
    }


    .program-modal-description{

        font-size: 14px;
    }

}


/* =====================================================
   CONTENIDO
===================================================== */


/* =====================================================
   BOTONES
===================================================== */


/* =====================================================
   NOTA
===================================================== */


/* =====================================================
   INDICADOR SCROLL
===================================================== */


@keyframes rehabScroll {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }

}


/* =====================================================
   EVALUACIÓN GRATUITA
===================================================== */


/* =====================================================
   REINSERCIÓN
===================================================== */


/* =====================================================
   RESPONSIVE
===================================================== */


/* =====================================================
   HERO CARRUSEL PREMIUM
===================================================== */

.hero-carousel{
    position: relative;
    height: 100vh;
    min-height: 680px;

    overflow: hidden;
}


/* =====================================================
   SLIDES
===================================================== */

.hero-carousel .hero-slide{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: translateX(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0.7s ease;
}


.hero-carousel .hero-slide.active{
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    z-index: 2;
}


/* =====================================================
   IMAGEN
===================================================== */

.hero-carousel .hero-premium-image{
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.02);

    transition:
        transform 7s ease;
}


.hero-carousel .hero-slide.active .hero-premium-image{
    transform: scale(1);
}


/* =====================================================
   OVERLAY
===================================================== */

.hero-carousel .hero-premium-overlay{
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 29, 28, 0.94) 0%,
            rgba(8, 29, 28, 0.78) 38%,
            rgba(8, 29, 28, 0.40) 70%,
            rgba(8, 29, 28, 0.15) 100%
        );
}


/* =====================================================
   CONTENIDO
===================================================== */

.hero-carousel .hero-premium-content{
    position: relative;

    z-index: 5;

    height: 100%;

    padding-left: 130px;
    padding-right: 130px;

    display: flex;
    align-items: center;
}


.hero-carousel .hero-premium-text{
    max-width: 640px;
}


.hero-carousel-subtitle{
    max-width: 680px;

    margin: 22px 0 0;

    color: #fff;

    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.4;

    font-weight: 500;
}


.hero-carousel .hero-premium-text p{
    max-width: 690px;

    line-height: 1.75;
}


/* =====================================================
   FLECHAS
===================================================== */

.hero-carousel-arrow{
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    z-index: 20;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.40);

    background: rgba(0,0,0,0.18);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}


.hero-carousel-arrow:hover{
    background: rgba(255,255,255,0.18);

    border-color: rgba(255,255,255,0.8);
}


.hero-carousel-arrow i{
    font-size: 20px;
}


.hero-carousel-prev{
    left: 24px;
}


.hero-carousel-next{
    right: 24px;
}


/* =====================================================
   PUNTOS
===================================================== */

.hero-carousel-dots{
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    z-index: 30;

    display: flex;
    align-items: center;
    gap: 9px;
}


.hero-dot{
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.45);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.hero-dot.active{
    width: 28px;

    border-radius: 20px;

    background: #fff;
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    .hero-carousel{
        min-height: 680px;
    }


    .hero-carousel .hero-premium-content{
        padding-left: 65px;
        padding-right: 65px;
    }


    .hero-carousel .hero-premium-text{
        max-width: 100%;
    }


    .hero-carousel .hero-premium-text h1:not(.hero-carousel-subtitle){
        font-size: clamp(30px, 8vw, 44px);
    }


    .hero-carousel .hero-premium-text p{
        font-size: 15px;

        line-height: 1.65;
    }


    .hero-carousel-subtitle{
        font-size: 19px;
    }


    .hero-carousel-arrow{
        width: 38px;
        height: 38px;
    }


    .hero-carousel-arrow i{
        font-size: 16px;
    }


    .hero-carousel-prev{
        left: 10px;
    }


    .hero-carousel-next{
        right: 10px;
    }


    .hero-carousel .hero-premium-actions{
        flex-wrap: wrap;
    }

}


/* =====================================================
   MÓVIL PEQUEÑO
===================================================== */

@media (max-width: 480px) {

    .hero-carousel .hero-premium-content{
        padding-left: 84px;
        padding-right: 84px;
    }


    .hero-carousel .hero-premium-text h1:not(.hero-carousel-subtitle){
        font-size: clamp(28px, 8.5vw, 38px);
        line-height: 1.16;
    }


    .hero-carousel-subtitle{
        font-size: 17px;
        line-height: 1.35;
    }


    .hero-carousel .hero-premium-text p{
        font-size: 13.5px;
    }


    .hero-carousel .hero-premium-note{
        font-size: 11px;
    }

}


/* =====================================================
   MÓVIL MUY PEQUEÑO
===================================================== */

@media (max-width: 340px) {

    .hero-carousel .hero-premium-content{
        padding-left: 80px;
        padding-right: 80px;
    }


    .hero-carousel .hero-premium-text h1:not(.hero-carousel-subtitle){
        font-size: clamp(24px, 8vw, 32px);
        line-height: 1.18;
    }


    .hero-carousel-subtitle{
        font-size: 15px;
    }


    .hero-carousel .hero-premium-text p{
        font-size: 12.5px;
    }

}


.brand-logo{

    width:170px;
    height:auto;

    object-fit:contain;

    filter:
        drop-shadow(0 8px 18px rgba(0,0,0,0.18));

    transition:
        transform .3s ease,
        filter .3s ease;

}


.brand-logo:hover{

    transform:scale(1.05);

    filter:
        drop-shadow(0 12px 25px rgba(0,0,0,0.25));

}


.brand-logo{

    width:145px;

}
.brand-logo{
    width: 150px;
    height: 150px;
    object-fit: contain;

    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.18));

    transition: transform 0.3s ease;
}

.brand-logo:hover{
    transform: scale(1.04);
}

/* =====================================================
   AJUSTE FINAL — POSICIÓN DEL CONTENIDO DEL HERO
   Este bloque sobrescribe los estilos anteriores
===================================================== */

/* DESKTOP */
.hero-carousel .hero-premium-content{
    position: relative;
    z-index: 5;

    height: 100%;

    display: flex;
    align-items: center;

    /* Espacio para que el texto no quede encima
       de las flechas laterales */
    padding-left: clamp(75px, 7vw, 125px);
    padding-right: clamp(75px, 7vw, 125px);

    box-sizing: border-box;
}


/* CONTENIDO DE CADA SLIDE */
.hero-carousel .hero-premium-text{
    width: 100%;
    max-width: 760px;

    /* Pequeño desplazamiento hacia la derecha */
    margin-left: clamp(15px, 2vw, 35px);

    margin-right: auto;
}


/* EVITA QUE EL TEXTO SE ACERQUE DEMASIADO
   A LA FLECHA DERECHA */
.hero-carousel .hero-premium-text p, .hero-carousel .hero-carousel-subtitle{
    max-width: 680px;
}


/* =====================================================
   PANTALLAS GRANDES
===================================================== */

@media (min-width: 1400px) {

    .hero-carousel .hero-premium-content{
        padding-left: 120px;
        padding-right: 120px;
    }

    .hero-carousel .hero-premium-text{
        max-width: 780px;
        margin-left: 30px;
    }

}


/* =====================================================
   NOTEBOOK / LAPTOP
===================================================== */

@media (min-width: 992px) and (max-width: 1399px) {

    .hero-carousel .hero-premium-content{
        padding-left: 90px;
        padding-right: 90px;
    }

    .hero-carousel .hero-premium-text{
        max-width: 700px;
        margin-left: 15px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 769px) and (max-width: 991px) {

    .hero-carousel .hero-premium-content{
        padding-left: 75px;
        padding-right: 75px;
    }

    .hero-carousel .hero-premium-text{
        max-width: 650px;
        margin-left: 5px;
    }

}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    .hero-carousel .hero-premium-content{

        padding-left: 62px;
        padding-right: 62px;

        box-sizing: border-box;
    }


    .hero-carousel .hero-premium-text{

        width: 100%;
        max-width: 100%;

        margin-left: 0;
        margin-right: 0;
    }


    .hero-carousel .hero-premium-text p{

        max-width: 100%;
    }


    .hero-carousel .hero-carousel-subtitle{

        max-width: 100%;
    }

}


/* =====================================================
   MÓVILES PEQUEÑOS
===================================================== */

@media (max-width: 480px) {

    .hero-carousel .hero-premium-content{

        padding-left: 55px;
        padding-right: 55px;
    }

}/* =====================================================
   TARJETAS PREMIUM — TALLERES Y TERAPIAS
   No modifica el HTML
===================================================== */


/* -----------------------------------------------------
   TARJETAS
----------------------------------------------------- */

.workshop-person, .therapy-card{

    position: relative;

    border-radius: 22px;

    overflow: hidden;

    border: 1px solid rgba(20, 70, 65, 0.12);

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

}


/* -----------------------------------------------------
   BORDE ANIMADO
----------------------------------------------------- */

.workshop-person::after, .therapy-card::after{

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1.5px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 35%,
            #2f8f83 50%,
            transparent 65%,
            transparent 100%
        );

    background-size: 300% 100%;

    opacity: 0;

    pointer-events: none;

    transition: opacity 0.35s ease;

    /*
       Hace que el fondo solo quede en el borde
    */
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;
}


/* -----------------------------------------------------
   ANIMACIÓN AL PASAR EL MOUSE
----------------------------------------------------- */

.workshop-person:hover, .therapy-card:hover{

    transform: translateY(-8px);

    border-color: rgba(47, 143, 131, 0.30);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.11);
}


.workshop-person:hover::after, .therapy-card:hover::after{

    opacity: 1;

    animation:
        cardBorderMove 2.8s linear infinite;
}


/* -----------------------------------------------------
   RECORRIDO DE LA LÍNEA
----------------------------------------------------- */

@keyframes cardBorderMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


/* -----------------------------------------------------
   ICONOS
----------------------------------------------------- */


/* -----------------------------------------------------
   TÍTULOS
----------------------------------------------------- */

.workshop-person h3, .therapy-card h3{

    transition:
        transform 0.35s ease,
        letter-spacing 0.35s ease;
}


.workshop-person:hover h3, .therapy-card:hover h3{

    transform: translateX(3px);

    letter-spacing: 0.2px;
}


/* -----------------------------------------------------
   REDUCIR ANIMACIONES SI EL USUARIO
   PREFIERE MENOS MOVIMIENTO
----------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .workshop-person, .therapy-card{

        transition: none;
    }


    .workshop-person:hover, .therapy-card:hover{

        transform: none;
    }


    .workshop-person:hover::after, .therapy-card:hover::after{

        animation: none;
    }

}
/* =====================================================
   TALLERES — TARJETA PREMIUM
   TARJETA INTERIOR MÁS ARRIBA Y MÁS PEQUEÑA
===================================================== */


/* =====================================================
   TARJETA EXTERIOR
===================================================== */

.service-card{

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(170, 135, 75, 0.14);

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.055);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* =====================================================
   BORDE DORADO SUTIL
===================================================== */

.service-card::before{

    content: "";

    position: absolute;

    inset: 0;

    padding: 1.5px;

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 40%,
            rgba(180, 145, 82, 0.10) 44%,
            rgba(190, 155, 90, 0.65) 50%,
            rgba(180, 145, 82, 0.10) 56%,
            transparent 60%,
            transparent 100%
        );

    background-size: 300% 100%;

    opacity: 0;

    pointer-events: none;

    z-index: 30;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    transition:
        opacity 0.5s ease;
}


/* =====================================================
   HOVER EXTERIOR
===================================================== */

.service-card:hover{

    transform: translateY(-7px);

    border-color:
        rgba(180, 145, 82, 0.25);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.09);
}


.service-card:hover::before{

    opacity: 1;

    animation:
        subtleGoldBorder 3.8s linear infinite;
}


/* =====================================================
   RECORRIDO DORADO
===================================================== */

@keyframes subtleGoldBorder {

    0% {

        background-position: 0% 50%;

    }

    100% {

        background-position: 300% 50%;

    }

}


/* =====================================================
   IMAGEN
===================================================== */

.service-card .service-image{

    overflow: hidden;

}


.service-card .service-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}


.service-card:hover .service-image img{

    transform: scale(1.035);

}


/* =====================================================
   TARJETA INTERIOR
===================================================== */

.service-card .service-body{

    position: relative;

    z-index: 5;

    /*
       La tarjeta interior queda más arriba
       y ligeramente más pequeña
    */

    margin:

        -18px

        16px

        0;

    padding: 22px;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* =====================================================
   MOVIMIENTO SUAVE DE LA TARJETA INTERIOR
===================================================== */

.service-card:hover .service-body{

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.09);
}


/* =====================================================
   TÍTULO
===================================================== */

.service-card .service-body h3{

    transition:
        transform 0.35s ease;
}


.service-card:hover .service-body h3{

    transform: translateX(2px);

}


/* =====================================================
   LÍNEA DORADA
===================================================== */

.service-card .gold-line{

    transition:
        width 0.45s ease;
}


.service-card:hover .gold-line{

    width: 58px;

}


/* =====================================================
   BOTÓN
===================================================== */

.service-card .info-button{

    transition:
        transform 0.35s ease;
}


.service-card:hover .info-button{

    transform: translateX(3px);

}


.service-card .info-button i{

    transition:
        transform 0.35s ease;
}


.service-card:hover .info-button i{

    transform: translateX(4px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .service-card{

        border-radius: 22px;

    }

    .service-card::before{

        border-radius: 22px;

    }

    .service-card .service-body{

        margin:
            -15px
            14px
            0;

        padding: 20px;

        border-radius: 18px;

    }

}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    .service-card{

        border-radius: 20px;

    }

    .service-card::before{

        border-radius: 20px;

    }

    .service-card .service-body{

        margin:
            -12px
            10px
            0;

        padding: 18px;

        border-radius: 16px;

    }

    .service-card:hover{

        transform: translateY(-3px);

    }

}


/* =====================================================
   REDUCIR MOVIMIENTO
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .service-card, .service-card .service-image img, .service-card .service-body{

        transition: none;

    }

    .service-card:hover{

        transform: none;

    }

    .service-card:hover .service-body{

        transform: none;

    }

    .service-card:hover::before{

        animation: none;

    }

}
/* =====================================================
   TERAPIAS — BORDE DORADO SUTIL
===================================================== */


/* Línea dorada que recorre el borde */


/* Hover */


/* Movimiento de la línea */

@keyframes therapyGoldBorder {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }

}


/* Móvil */

@media (max-width: 768px) {

    .therapy-card{
        border-radius: 20px;
    }

    .therapy-card::before{
        border-radius: 20px;
    }

    .therapy-card:hover{
        transform: translateY(-3px);
    }

}


/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {

    .therapy-card:hover::before{
        animation: none;
    }

}
/* =====================================================
   TERAPIAS — BORDE DORADO SUTIL
===================================================== */

.therapy-card{
    position: relative;
    overflow: hidden;

    border-radius: 24px;

    border: 1px solid rgba(170, 135, 75, 0.14);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* Línea dorada que recorre el borde */

.therapy-card::before{

    content: "";

    position: absolute;

    inset: 0;

    padding: 1.5px;

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            transparent 40%,
            rgba(180, 145, 82, 0.10) 45%,
            rgba(190, 155, 90, 0.65) 50%,
            rgba(180, 145, 82, 0.10) 55%,
            transparent 60%
        );

    background-size: 300% 100%;

    opacity: 0;

    pointer-events: none;

    z-index: 10;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    transition: opacity 0.5s ease;
}


/* Hover */

.therapy-card:hover{

    transform: translateY(-5px);

    border-color: rgba(180, 145, 82, 0.25);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


.therapy-card:hover::before{

    opacity: 1;

    animation: therapyGoldBorder 3.8s linear infinite;
}


/* Movimiento de la línea */

@keyframes therapyGoldBorder {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }

}


/* Móvil */

@media (max-width: 768px) {

    .therapy-card{
        border-radius: 20px;
    }

    .therapy-card::before{
        border-radius: 20px;
    }

    .therapy-card:hover{
        transform: translateY(-3px);
    }

}


/* Accesibilidad */

@media (prefers-reduced-motion: reduce) {

    .therapy-card:hover::before{
        animation: none;
    }

}
/* =====================================================
   TESTIMONIOS — DISEÑO PREMIUM OSCURO
===================================================== */

.testimonials{
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(190, 155, 90, 0.08),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(190, 155, 90, 0.05),
            transparent 30%
        ),
        #0c0e0d !important;

    color: #ffffff;
}


/* =====================================================
   LÍNEA DECORATIVA SUPERIOR
===================================================== */

.testimonials::after{
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c9a75d,
            transparent
        );

    transform: translateX(-50%);

    opacity: 0.7;
}


/* =====================================================
   ENCABEZADO
===================================================== */

.testimonials .section-heading{
    position: relative;
    z-index: 2;

    text-align: center;
}


.testimonials .eyebrow{
    color: #c9a75d;

    letter-spacing: 0.18em;
}


.testimonials .section-heading h2{
    color: #ffffff;

    font-size: clamp(
        2.3rem,
        4vw,
        4rem
    );

    line-height: 1.1;
}


.testimonials .section-heading h2 em{
    color: #c9a75d;
}


.testimonials .section-heading p{
    color: rgba(255,255,255,0.65);

    max-width: 650px;

    margin-left: auto;
    margin-right: auto;
}


/* =====================================================
   CONTENEDOR DE TESTIMONIOS
===================================================== */

.testimonials .card-grid{

    position: relative;

    z-index: 2;

    gap: 28px;
}


/* =====================================================
   TARJETA
===================================================== */


/* =====================================================
   GRANDE COMILLA DECORATIVA
===================================================== */


/* =====================================================
   PEQUEÑA LÍNEA DORADA
===================================================== */


/* =====================================================
   HOVER
===================================================== */


/* =====================================================
   TEXTO
===================================================== */


/* =====================================================
   NOMBRE
===================================================== */


/* =====================================================
   INFORMACIÓN SECUNDARIA
===================================================== */


/* =====================================================
   ESTRELLAS / ICONOS SI EXISTEN
===================================================== */


/* =====================================================
   NÚMERO DECORATIVO
===================================================== */


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .testimonials{

        padding-top: 75px;
        padding-bottom: 75px;

    }


    


    


    


    

}


/* =====================================================
   REDUCIR ANIMACIONES
===================================================== */

/* =====================================================
   TESTIMONIOS — TEXTO SOBRE FONDO OSCURO
===================================================== */

.testimonials{
    color: #ffffff !important;
}


/* Título principal */

.testimonials h2{
    color: #ffffff !important;
}


/* Texto en cursiva del título */

.testimonials h2 em{
    color: #d4b56a !important;
}


/* Texto introductorio */

.testimonials .section-heading p{
    color: rgba(255, 255, 255, 0.82) !important;
}


/* Eyebrow */

.testimonials .eyebrow{
    color: #d4b56a !important;
}


/* =====================================================
   TEXTO DE LAS TARJETAS
===================================================== */


/* Nombre */


/* Información secundaria */


/* Cualquier texto adicional dentro de la tarjeta */


/* Links */


/* Iconos */


/* =====================================================
   MEJORAR CONTRASTE
===================================================== */


/* Hover */


/* =====================================================
   TESTIMONIOS — TARJETAS EDITORIALES PREMIUM
===================================================== */


/* =====================================================
   COMILLA GRANDE
===================================================== */


/* =====================================================
   LÍNEA DORADA SUPERIOR
===================================================== */


/* =====================================================
   TEXTO DEL TESTIMONIO
===================================================== */


/* =====================================================
   NOMBRE
===================================================== */


/* =====================================================
   INFORMACIÓN SECUNDARIA
===================================================== */


/* =====================================================
   ESTRELLAS / ICONOS
===================================================== */


/* =====================================================
   EFECTO HOVER
===================================================== */


/* Comilla aparece ligeramente */


/* =====================================================
   PEQUEÑO DETALLE INFERIOR
===================================================== */


/* =====================================================
   MÓVIL
===================================================== */

/* =====================================================
   TESTIMONIOS — TARJETAS EDITORIALES PREMIUM
===================================================== */


/* =====================================================
   COMILLA GRANDE
===================================================== */


/* =====================================================
   LÍNEA DORADA SUPERIOR
===================================================== */


/* =====================================================
   TEXTO DEL TESTIMONIO
===================================================== */


/* =====================================================
   NOMBRE
===================================================== */


/* =====================================================
   INFORMACIÓN SECUNDARIA
===================================================== */


/* =====================================================
   ESTRELLAS / ICONOS
===================================================== */


/* =====================================================
   EFECTO HOVER
===================================================== */


/* Comilla aparece ligeramente */


/* =====================================================
   PEQUEÑO DETALLE INFERIOR
===================================================== */


/* =====================================================
   MÓVIL
===================================================== */


/* =====================================================
   BOTONES TALLERES — FORZAR DISEÑO PREMIUM
===================================================== */

.service-card .service-body .info-button, .service-card .info-button{

    appearance: none !important;
    -webkit-appearance: none !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 12px !important;

    width: auto !important;
    min-width: 185px !important;

    margin-top: 20px !important;

    padding: 12px 22px !important;

    border: 1px solid #b99752 !important;

    border-radius: 50px !important;

    background: transparent !important;

    color: #9b783d !important;

    font-family: "DM Sans", sans-serif !important;

    font-size: 0.82rem !important;

    font-weight: 600 !important;

    letter-spacing: 0.04em !important;

    line-height: 1 !important;

    cursor: pointer !important;

    box-shadow: none !important;

    transform: none !important;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease !important;
}


/* =====================================================
   TEXTO
===================================================== */

.service-card .service-body .info-button span, .service-card .info-button span{

    color: inherit !important;

    font-size: inherit !important;

    font-weight: inherit !important;

}


/* =====================================================
   FLECHA
===================================================== */

.service-card .service-body .info-button i, .service-card .info-button i{

    color: inherit !important;

    font-size: 0.9rem !important;

    transition:
        transform 0.35s ease !important;
}


/* =====================================================
   HOVER
===================================================== */

.service-card .service-body .info-button:hover, .service-card .info-button:hover{

    background: #b99752 !important;

    color: #ffffff !important;

    border-color: #b99752 !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 8px 25px rgba(185, 151, 82, 0.28) !important;
}


/* =====================================================
   FLECHA EN HOVER
===================================================== */

.service-card .info-button:hover i{

    color: #ffffff !important;

    transform: translateX(5px) !important;
}


/* =====================================================
   EFECTO BRILLO
===================================================== */

.service-card .info-button{

    overflow: hidden !important;

    position: relative !important;
}


.service-card .info-button::after{

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.30),
            transparent
        );

    transform: skewX(-20deg);

    transition:
        left 0.6s ease;

    pointer-events: none;
}


.service-card .info-button:hover::after{

    left: 130%;
}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 768px) {

    .service-card .info-button{

        min-width: 165px !important;

        padding: 11px 18px !important;

    }

}
/* =====================================================
   REDES SOCIALES — COLORES OFICIALES
===================================================== */

.footer-premium-socials a{

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;

}


/* =====================================================
   WHATSAPP
===================================================== */

.footer-premium-socials a:has(.bi-whatsapp){

    color: #25D366 !important;

}


/* =====================================================
   INSTAGRAM
===================================================== */

.footer-premium-socials a:has(.bi-instagram){

    color: #E1306C !important;

}


/* =====================================================
   FACEBOOK
===================================================== */

.footer-premium-socials a:has(.bi-facebook){

    color: #1877F2 !important;

}


/* =====================================================
   CORREO
===================================================== */


/* =====================================================
   HOVER
===================================================== */

.footer-premium-socials a:hover{

    transform: translateY(-4px);

}


/* WhatsApp */

.footer-premium-socials a:has(.bi-whatsapp):hover{

    color: #25D366 !important;

    filter:
        drop-shadow(0 0 8px rgba(37,211,102,0.35));

}


/* Instagram */

.footer-premium-socials a:has(.bi-instagram):hover{

    color: #E1306C !important;

    filter:
        drop-shadow(0 0 8px rgba(225,48,108,0.35));

}


/* Facebook */

.footer-premium-socials a:has(.bi-facebook):hover{

    color: #1877F2 !important;

    filter:
        drop-shadow(0 0 8px rgba(24,119,242,0.35));

}


/* Correo */

/* Fondos trasladados desde index.html */
.hero-premium-image--comunidad{ background-image: url("../img/hero/comunidad.jpeg"); }
.hero-premium-image--psicologica{ background-image: url("../img/hero/spicologica.jpg"); }
.hero-premium-image--reinsercion{ background-image: url("../img/hero/reinsercion.jpg"); }

/* =====================================================
   LOGO FINAL - TAMAÑO RESPONSIVE
===================================================== */

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.site-header .brand img,
.site-header .brand .brand-logo {
    width: 88px !important;
    height: 88px !important;
    min-width: 88px !important;
    max-width: none !important;
    object-fit: contain !important;
    flex-shrink: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .site-header .brand img,
    .site-header .brand .brand-logo {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px !important;
    }

    .site-header .brand {
        min-width: 225px;
    }
}

/* Celular */
@media (max-width: 768px) {
    .site-header .brand {
        gap: 9px;
        min-width: auto;
    }

    .site-header .brand img,
    .site-header .brand .brand-logo {
        width: 66px !important;
        height: 66px !important;
        min-width: 66px !important;
    }

    .site-header .brand span {
        font-size: 10px;
        line-height: 1.05;
    }

    .site-header .brand strong {
        font-size: 16px;
    }
}

/* Celulares pequeños */
@media (max-width: 420px) {
    .site-header .brand img,
    .site-header .brand .brand-logo {
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
    }

    .site-header .brand span {
        font-size: 9px;
    }

    .site-header .brand strong {
        font-size: 15px;
    }
}

