/*==================================================
    PSICOKHUYAY — HERO
    Banner de 3 columnas paralelas (borde a borde)
===================================================*/

:root{

    --hero-dark:#23463D;
    --hero-green:#2E8A73;
    --hero-green-dark:#1F6756;
    --hero-gold:#D6B36A;
    --hero-beige:#F7F2E7;
    --hero-bg:#FCFCF9;
    --hero-text:#5E6763;

}
/***************************************************
                HERO
****************************************************/
.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:58% center;
    z-index:1;
}
.hero-section{
    min-height:920px;
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        90deg,
        #ffffff 0%,
        #ffffff 58%,
        #F6FBF8 82%,
        #EEF7F4 100%
    );

}
/***************************************************
            TEXTO
****************************************************/

.hero-text-col{
    flex:0 0 31%;
    max-width:31%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-left:65px;
    padding-right:35px;

}

.hero-tag{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    padding:9px 18px;
    background:#EEF7F1;
    border-radius:50px;
    font-size:1.2rem;
    color:var(--hero-green-dark);
    margin-bottom:20px;
}

.hero-title{
    font-size:58px;
    line-height:1.08;
    font-weight:700;
    color:#24463d;
}

.hero-title span{
    color:#58BDB7;
}

.hero-subtitle{
    margin-top:22px;
    width:430px;
    line-height:1.8;
    color:#5F6B67;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
}
.hero-services{

    position:absolute;

    top:250px;

    right:-15.5rem;

    width:305px;

    z-index:20;

}
.hero-services a{
    display:flex;
    align-items:center;
    gap:18px;
    padding:10px 0;
    color:#24463d;
    text-decoration:none;
    font-size:20px;
    margin-bottom: 12px;
}
.hero-services .icon{
    width:54px;
    height:54px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2d8a73;
    flex-shrink:0;
}
/***************************************************
            BOTONES
****************************************************/

.btn-primary-custom{
    padding:15px 28px;
    border-radius:50px;
    background:var(--hero-green);
    color:white;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(46,138,115,.25);
}

.btn-primary-custom:hover{
    background:var(--hero-green-dark);
    transform:translateY(-2px);
}

.btn-secondary-custom{
    padding:15px 28px;
    border-radius:50px;
    border:2px solid #67B8AE;
    color:var(--hero-green-dark);
    text-decoration:none;
}

.btn-secondary-custom:hover{
    background:#67B8AE;
    color:white;
}

/***************************************************
            FOTO
****************************************************/
.hero-container{
    position:relative;
    height:100%;
    z-index:5;
}
.hero-content{
    position:absolute;
    top:210px;
    width:470px;
    left: -100px;
}
/***************************************************
            SERVICIOS
****************************************************/
.hero-services-col a{
    display:flex;
    align-items:center;
    gap:14px;
    background:white;
    border-radius:18px;
    padding:12px;
    text-decoration:none;
    color:var(--hero-dark);
    box-shadow:
    0 12px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.hero-services-col a:hover{
    transform:translateX(6px);
}

.hs-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#F5F4EE;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#3E8A72;
    flex-shrink:0;
}

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

@media(max-width:991px){
    .hero-text-col{
        flex:none;
        max-width:100%;
        padding:50px 30px 30px;
        text-align:center;
        align-items:center;
    }
    .hero-photo-col{
        min-height:320px;
    }
    .hero-services-col{
        flex:none;
        padding:24px 30px;
    }
    .hero-services-col::before{
        display:none;
    }
    .hero-carousel-arrow{
        display:none;
    }
    .hero-title{
        font-size:2rem;
    }
}

@media(max-width:576px){
    .hero-title{
        font-size:1.7rem;
    }
    .hero-buttons{
        flex-direction:column;
        width:100%;
    }
    .btn-primary-custom,
    .btn-secondary-custom{
        justify-content:center;
        width:100%;
    }
}
