/* <<<<<<<<<<<<<<<<<<<<<< GENERALES >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    --color-texto-principal: #151515;
    --color-texto-secundario: #151515;
    --color-texto-terciario: #151515;
    --color-texto-cuarto: #B3B3B3;
    transition: background-color 0.3s ease;
}

body.is-dark {
    --color-texto-principal: #F4F3E9;
    --color-texto-secundario: #FFFFFF;
    --color-texto-terciario: #B3B3B3;
    --color-texto-cuarto: #B3B3B3;
}

.landing_etapas_lubricantes .navbar {
    color: var(--navbar-color, #FFFFFF);
    background-color: #1E1E1E;
}

.trigger {
    height: 1px;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icono_card {
    height: 48px;
    width: 48px;
}

body,
.hero-wrapper,
.hero-sticky,
.next-section {
  background-color: rgb(21, 21, 21);
}

/* <<<<<<<<<<<<<<<<<<<<<< GENERALES >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_1 - HERO >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.hero-wrapper {
    height: 300vh;
    position: relative;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    perspective: 1400px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: background-color 0.3s ease;
}

/* CONTENIDO SUPERIOR */
.hero-content {
    flex: 0 0 70%;
    max-height: 70vh;
    max-width: 1250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 8vh, 154px) 0 clamp(32px, 6vh, 82px);
    margin: 0 auto;
    z-index: 1;
}

.lubricante_etapa_sec1 {
    font-family: "KumbhSans-Regular", sans-serif;
    font-size: 16px;
    line-height: 1.20;
    text-align: center;
    padding: 0 0 22px 0;
    margin: 0%;
    color: #000000;
    text-transform: uppercase;
}

.titulo_etapa_sec1{
    font-family: "Hector-Regular", sans-serif;
    font-size: clamp(42px, 100px, 100px);
    line-height: 1.0;
    text-align: center;
    padding-bottom: clamp(24px, 82px, 82px);
    margin: 0%;
    color: #000000;
}

.btn_hero {
    margin: 0 auto;
    border: 1px solid #FF0000;
}

/* IMAGEN */
.hero-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90vw;
    border-radius: 20px;
    overflow: hidden;
    transform: translateX(-50%) rotateX(55deg) scale(0.75);
    transform-origin: bottom center;
}

.hero-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80%;

    background: linear-gradient(
        to bottom,
        rgba(21, 21, 21, 0.00) 0%,
        rgba(21, 21, 21, 0.05) 15%,
        rgba(21, 21, 21, 0.12) 30%,
        rgba(21, 21, 21, 0.22) 45%,
        rgba(21, 21, 21, 0.38) 60%,
        rgba(21, 21, 21, 0.60) 72%,
        rgba(21, 21, 21, 0.80) 85%,
        rgba(21, 21, 21, 1.00) 100%
    );

    pointer-events: none;
    z-index: 2;
}

.hero-wrapper::after {
    filter: blur(0.6px);
}

.hero-card img,
.hero-card video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card img,
.hero-card video {
  opacity: 1;
  transition: none; /* el control lo hace JS */
}

.hero-card video {
    opacity: 0;
    pointer-events: none;
}

.hero-card.is-video video {
    opacity: 1;
}

.hero-card.is-video img {
    opacity: 0;
}

.next-section {
    min-height: 100vh;
    padding: 100px;
}

/* Texto que aparece superpuesta de la imagen del hero section */
.hero-overlay-text {
    position: absolute;
    top: calc(90% - 112px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-overlay-text.visible {
    opacity: 1;
    transform: translate(-50%, -52%);
}

.overlay-eyebrow {
    font-size: 24px;
    max-width: 1090px;
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 1.20;
    font-family: "KumbhSans-Regular", sans-serif;
}


/* --------- Responsivo - Pantallas grandes ------- */

@media (max-width: 1550px) {

    .hero-content {
        max-width: 1000px;
        padding: clamp(40px, 80px, 80px) 0 clamp(32px, 56px, 56px);
    }

    .titulo_etapa_sec1{
        font-size: clamp(42px, 80px, 80px);
        padding-bottom: clamp(24px, 56px, 56px);
    }

    .overlay-eyebrow {
        font-size: 20px;
        max-width: 716px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1100px) {

    .overlay-eyebrow {
        font-size: 16px;
        max-width: 499px;
    }

    .hero-content {
        max-width: 640px;
        padding: clamp(40px, 154px, 154px) 0 clamp(32px, 82px, 82px);
    }

    .hero-sticky {
        perspective: 1100px;
    }

    .lubricante_etapa_sec1 {
        font-size: 14px;
    }

    .titulo_etapa_sec1{
        font-size: clamp(42px, 80px, 80px);
        padding-bottom: clamp(24px, 82px, 82px);
    }

    .hero-overlay-text {
        top: calc(90% - 24px);
    }
}

@media (min-width: 701px) {
    .hero-card video {
        display: block;
    }
}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 700px) {

    .overlay-eyebrow {
        font-size: 16px;
        max-width: 244px;
    }

    .hero-content {
        max-width: 80%;
        padding: clamp(40px, 80px, 80px) 0 clamp(32px, 56px, 56px);
    }

    .lubricante_etapa_sec1 {
        max-width: 200px;
        margin: 0 auto;
    }

    .titulo_etapa_sec1{
        font-size: clamp(42px, 50px, 50px);
        padding-bottom: clamp(24px, 56px, 56px);
    }

    
    .hero-card video {
        display: none !important;
        visibility: hidden;
    }

    .hero-card picture {
        display: block;
    }

    .hero-card.is-video video {
        display: none !important;
    }

    .hero-card.is-video img {
        opacity: 1 !important;
    }

    .hero-overlay-text {
        top: calc(90% - 112px);
    }

}

@media (max-height: 800px) and (min-width: 1000px) {

    .titulo_etapa_sec1 {
        font-size: clamp(32px, 12vh, 80px);
        padding-bottom: clamp(24px, 8vh, 82px);
    }

}

@media (max-height: 600px) and (min-width: 1000px) {

    .titulo_etapa_sec1 {
        font-size: clamp(32px, 10vh, 80px);
    }

}

@media (max-width: 900px) and (max-height: 1180px) and (min-width: 700px){
    
    .titulo_etapa_sec1 {
        font-size: clamp(32px, 8vh, 80px);
    }

}
/* <<<<<<<<<<<<<<<<<<<<<< SECTION_1 - HERO >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_2 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.logos_carrusel{
    overflow: hidden;
    max-width: 1400px;
    width: 100%;
    padding: 160px 0 0 0;
    margin: 0 auto;
}

.titulo_recomendados_por_sec2 {
    color: var(--color-texto-secundario);
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    padding-bottom: 26.84px;
    margin: 0%;
}

.logos_track{
    display: flex;
    align-items: center;
    gap: 48px; /* GAP ENTRE LOGOS */
    width: max-content;
    animation: scrollLogos 20s linear infinite;
}

.logos_track img{
    height: 69px; /* ALTURA LOGOS */
    width: 125px;
    flex-shrink: 0;
}

@keyframes scrollLogos{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* --------- Responsivo - Pantallas grandes ------- */

@media (max-width: 1550px) {

    .logos_carrusel{
        max-width: 1047px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1100px) {

    .logos_carrusel{
        max-width: 640px;
        padding: 80px 0 0 0;
    }

    .titulo_recomendados_por_sec2 {
        padding-bottom: 24px;
    }

}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 700px) {

    .logos_carrusel{
        max-width: 80%;
        padding: 100px 0 0 0;
    }

    .logos_track{
        animation: scrollLogos 20s linear infinite;
    }
	
    .logos_track img{
        height: 55px; /* ALTURA LOGOS */
        width: 99px;
    }

    .titulo_recomendados_por_sec2 {
        padding-bottom: 16px;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_2 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_3 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.contendorPrincipalSec3{
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 160px 0 112px 0;
}

/* ----------------------- PARTE 1 ----------------------------- */

.contenedorParte1_texto_Sec3{
    width: 1091px;
    padding: 0%;
}

.tituloParte1_Sec3 {
    font-family: "Hector-Regular";
    font-size: 80px;
    line-height: 1.20;
    text-align: center;
    padding: 0 0 112px 0;
    margin: 0%;
}

.titulo1_sec3 {
    color: var(--color-texto-cuarto);
}

.titulo2_sec3 {
    color: var(--color-texto-principal);
}

.subTituloParte1_Sec3 {
    color: var(--color-texto-terciario);
    font-family: "KumbhSans-Regular";
    font-size: 20px;
    line-height: 1.20;
    max-width: 736px;
    text-align: center;
    padding: 0 0 64px 0;
    margin: 0 auto;
}

.leyendaCards_Parte1_Sec3 {
    color: var(--color-texto-terciario);
    font-family: "KumbhSans-Variable", sans-serif;
    font-size: 24px;
    line-height: 1.20;
    font-weight: 700;
    text-align: center;
    max-width: 736px;
    padding: 0 0 73px 0;
    margin: 0 auto;
}

/* ---- Cards con puntito -------- */

.gridSec3 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px; 
}

.crad_cuerpoParte1_Sec3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    width: 100%;
    border: 0px;
}

.cardParte1_subTitulo_Sec3 {
    color: var(--color-texto-terciario);
    font-family: "OpenSans-Regular";
    font-size: 16px;
    text-align: center;
    margin: 0%;
    padding-top: 24px;
}

.dot {
    position: relative;
    width: 15px;
    height: 15px;
    background: #FF0000;
    border-radius: 50%;
}

.dot::before,
.dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #FF0000;
    animation: ripple 2.5s infinite;
}

.dot::after {
    animation-delay: 1s;
}

@keyframes ripple{
    0%{
        transform: scale(1);
        opacity: 1;
    }

    100%{
        transform: scale(2);
        opacity: 0;
    }
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1440px) {

    .contendorPrincipalSec3{
        max-width: 1088px;
    }

    /* Parte 1 */
    .contenedorParte1_texto_Sec3 {
        width: 920px;
    }

    .tituloParte1_Sec3 {
        padding: 0 0 112px 0;
    }

    .subTituloParte1_Sec3 {
        font-size: 20px;
        padding: 0 0 64px 0;
    }

    .leyendaCards_Parte1_Sec3 {
        padding: 0 0 64px 0;
    }

    .cardParte1_subTitulo_Sec3 {
        font-size: 14px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1121px) {

    .contendorPrincipalSec3 {
        /* max-width: 640px; */
        max-width: calc(100% - 64px);
        padding: 80px 0 100px 0;
    }

    /* Parte 1 */
    .contenedorParte1_texto_Sec3 {
        /* width: 640px; */
        max-width: calc(100% - 160px);
    }
    
    .tituloParte1_Sec3 {
        font-size: 60px;
        padding: 0 0 64px 0;
    }

    .subTituloParte1_Sec3 {
        font-size: 20px;
        max-width: 640px;
        width: 100%;
        padding: 0 0 56px 0;
    }

    .leyendaCards_Parte1_Sec3 {
        font-size: 24px;
        width: 443px;
        margin: 0 auto;
        padding: 0 0 56px 0;
    }

    .cardParte1_subTitulo_Sec3 {
        font-size: 16px;
        color: #FFFFFF;
        width: 100%;
    }

    .gridSec3{
        gap: 56px 25px;
        grid-template-columns: repeat(2,2fr);
    }

}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 600px) {

    .contendorPrincipalSec3 {
        max-width: 90%;
        padding: 100px 0 80px 0;
    }

    .contenedorParte1_texto_Sec3 {
        width: 100%;
        max-width: 100%;
    }

    .tituloParte1_Sec3 {
        font-size: 40px;
        padding: 0 0 48px 0;
    }

    .subTituloParte1_Sec3 {
        font-size: 20px;
        padding: 0 0 48px 0;
        margin: 0 auto;
        width: 80%;
    }

    .leyendaCards_Parte1_Sec3 {
        font-size: 24px;
        width: 80%;
        margin: 0 auto;
        padding: 0 0 56px 0;
    }

    .cardParte1_subTitulo_Sec3 {
        font-size: 14px;
        max-width: 80%;
    }

    .gridSec3{
        gap: 52px 0;
        grid-template-columns: 1fr;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_3 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_4 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.contenedor_sec4 {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 160px auto 160px auto;
    padding: 0;
    gap: 24px;
}

.titulo_sec4 {
    font-family: "Hector-Regular";
    font-size: 80px;
    line-height: 1.20;
    color: var(--color-texto-principal);
    text-align: center;
    padding: 0 0 112px 0;
    margin: 0 auto;
    max-width: 878px;
    width: 100%;
}

.leyenda_sec4 {
    text-transform: uppercase;
    width: 100%;
    font-size: 18px;
    font-family: "KumbhSans-Regular", sans-serif;
    color: var(--color-texto-principal);
    text-align: left;
    line-height: 1.20;
    margin: 0;
    padding: 0;
}

/* ------ Cards ------- */
.layout_sec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 32px;
    width: 100%;
    margin: 0;
}

/* .grupo-horizontal {
    display: flex;
    flex-direction: row;
    gap: 32px;
} */

.grupo-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    height: 100%;
}

.card_base_sec4 {
    background-color: #FFFFFF;
    border-radius: 15px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card_con_img_fondo {
    position: relative;
    overflow: hidden;
    background-color: transparent;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* -------- Contenido cards -------- */
.titulo_card_sec4 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.20;
    padding: 0 0 32px 0;
    margin: 0;
}

.texto_card_sec4 {
    font-family: "KumbhSans-Regular", sans-serif;
    font-size: 20px;
    line-height: 1.20;
    padding: 0;
    margin: 0;
    text-align: left;
}

.subtitulo_card_sec4 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    line-height: 1.20;
    padding: 0;
    margin: 0;
}

.subtitulo_card_blanca_sec4 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    line-height: 1.20;
    padding: 0;
    margin: 0;
}

/* Estilos textos de grids */
.card-3 .texto_group {
    font-size: 24px;
    margin-top: auto;
    text-align: center;
}

.card-4 .texto_group,
.card-8 .texto_group {
    font-size: 24px;
    margin-bottom: auto;
    text-align: left;
}

.card-6 .texto_group {
    font-size: 24px;
    margin: auto 0;
    text-align: center;
}

.card-5 .texto_group,
.card-7 .texto_group {
    font-size: 24px;
    margin-top: auto;
    text-align: left;
}

/* Estilos tamaños por grids */
.card-1.card_base_sec4,
.card-2.card_base_sec4,
.card-3.card_base_sec4 {
    height: 350px;
    padding: 32px;
}

.card-4.card_base_sec4,
.card-5.card_base_sec4,
.card-6.card_base_sec4,
.card-7.card_base_sec4,
.card-8.card_base_sec4 {
    height: 207px;
    padding: 24px;
}

@media (max-width: 1440px){

    .contenedor_sec4 {
        max-width: 1088px;
    }

    .titulo_sec4 {
        padding: 0 0 110px 0;
        max-width: 920px;
    }

    .titulo_card_sec4 {
        font-size: 24px;
    }

    .texto_card_sec4 {
        font-size: 18px;
    }

    .subtitulo_card_blanca_sec4 {
        font-size: 18px;
    }

    /* Ajuste personalizado de textos por card */
    .card-3 .texto_group, 
    .card-4 .texto_group,
    .card-8 .texto_group,
    .card-6 .texto_group,
    .card-5 .texto_group,
    .card-7 .texto_group {
        font-size: 20px;
    }

    /* Estilos tamaños por grids */
    .card-1.card_base_sec4,
    .card-2.card_base_sec4,
    .card-3.card_base_sec4 {
        height: 346px;
    }

    .card-4.card_base_sec4,
    .card-5.card_base_sec4,
    .card-6.card_base_sec4,
    .card-7.card_base_sec4,
    .card-8.card_base_sec4 {
        height: 148px;
    }
}

@media (max-width: 1121px){

    .contenedor_sec4 {
        /* max-width: 736px; */
        max-width: calc(100% - 64px);
        margin: 80px auto 80px auto;
        gap: 16px;
    }

    .titulo_sec4 {
        font-size: 60px;
        padding: 0 0 136px 0;
        max-width: 640px;
    }

    .leyenda_sec4 {
        font-size: 16px;
    }

    .layout_sec {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto;
        gap: 16px 20px;
    }

    /* Ajuste personalizado de textos por card */
    .card-3 .texto_group {
        font-size: 18px;
    }

    .card-4 .texto_group {
        font-size: 18px;
    }

    .card-5 .texto_group {
        font-size: 18px;
    }

    .card-6 .texto_group {
        font-size: 18px;
    }

    .card-7 .texto_group {
        font-size: 18px;
        margin-top: auto;
        text-align: left;
        width: 50%;
    }

    .card-8 .texto_group {
        font-size: 18px;
        margin-bottom: auto;
        text-align: left;
        width: 50%;
    }

    /* Ajuste personalizado general por card */

    /* Estilos tamaños por grids */
    .card-1.card_base_sec4,
    .card-2.card_base_sec4 {
        height: 346px;
    }

    .card-3.card_base_sec4,
    .card-4.card_base_sec4,
    .card-5.card_base_sec4,
    .card-7.card_base_sec4,
    .card-8.card_base_sec4 {
        height: 148px;
        padding: 24px;
    }

    /* Ajuste personalizado de orden por card */
    /* Fila 1 */
    .card-1 {
        grid-column: 1 / span 3;
        grid-row: 1;
    }

    .card-2 {
        grid-column: 4 / span 3;
        grid-row: 1;
    }

    /* Fila 2 — tres cards */
    .card-3 {
        grid-column: 1 / span 2;
        grid-row: 2;
    }

    .card-4 {
        grid-column: 3 / span 2;
        grid-row: 2;
    }

    .card-5 {
        grid-column: 5 / span 2;
        grid-row: 2;
    }

    /* Fila 3 — card full width */
    .card-6 {
        grid-column: 1 / span 6;
        grid-row: 3;
    }

    /* Fila 4 — dos cards */
    .card-7 {
        grid-column: 1 / span 3;
        grid-row: 4;
    }

    .card-8 {
        grid-column: 4 / span 3;
        grid-row: 4;
    }

    .grupo-horizontal {
        display: contents;
    }
}

@media (max-width: 760px) {

    .contenedor_sec4 {
        max-width: 90%;
        margin: 52px auto 100px auto;
        gap: 24px;
    }

    .titulo_sec4 {
        font-size: 40px;
        padding: 0 0 100px 0;
        max-width: 80%;
    }

    .grupo-horizontal {
        display: contents;
    }

    .leyenda_sec4 {
        width: 60%;
        font-size: 12px;
    }

    /* Ajuste personalizado de textos por card */

    .card-7 .texto_group {
        width: 100%;
    }

    .card-8 .texto_group {
        width: 100%;
    }

    /* Ajuste personalizado general por card */
    .layout_sec {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 16px;
    }

    /* Estilos tamaños por grids */
    .card-1.card_base_sec4{
        height: 353px;
    } 

    .card-2.card_base_sec4,
    .card-3.card_base_sec4,
    .card-4.card_base_sec4,
    .card-5.card_base_sec4,
    .card-6.card_base_sec4,
    .card-7.card_base_sec4,
    .card-8.card_base_sec4 {
        height: 142px;
        padding: 24px;
    }

    /* Ajuste personalizado de orden por card */
    /* Fila 1 */
    .card-1 {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    /* Fila 2 */
    .card-2 {
        grid-column: 1;
        grid-row: 2;
    }

    .card-3 {
        grid-column: 2;
        grid-row: 2;
    }

    /* Fila 3 */
    .card-4 {
        grid-column: 1;
        grid-row: 3;
    }

    .card-5 {
        grid-column: 2;
        grid-row: 3;
    }

    /* Fila 4 */
    .card-6 {
        grid-column: 1 / span 2;
        grid-row: 4;
    }

    /* Fila 5 */
    .card-7 {
        grid-column: 1;
        grid-row: 5;
    }

    .card-8 {
        grid-column: 2;
        grid-row: 5;
    }
}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_4 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_5 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.contenedor_sec5 {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.card_producto_sec5 {
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: row;

    position: sticky;
     contain: layout paint;
    transform-origin: top center;
    top: clamp(80px, 15vh, 160px);
    box-shadow:
        0 10px 30px rgba(211, 211, 197, 0.35),
        0 2px 6px rgba(211, 211, 197, 0.3);
    will-change: transform;
}

.card_producto_sec5:not(:last-child) {
    margin-bottom: 32px;
}

/* Lado izquierdo */
.contenedor_img_producto_sec5 {
    width: 35%;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.fondo_img_sec5 {
    padding: 0;
    margin: 0;
    border-radius: 15px;
    background-color: #F4F3E9;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.img_sec5 {
    width: 224px;
    height: 240px;
    object-fit: contain;
    margin: auto 0 16px 0;
    padding: 0;
    display: block;
}

/*  Lado derecho */
.contenedor_datos_producto_sec5 {
    width: 65%;
    padding: 40px;
    margin: 0;
    box-sizing: border-box;
}

.titulo_producto_sec5 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.20;
    padding: 0 0 16px 0;
    margin: 0;
    color: #313131;
}

.leyenda_producto_sec5 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.20;
    padding: 0 0 16px 0;
    margin: 0;
    color: #000000;
}

.descripcion_producto_sec5 {
    font-family: "KumbhSans-Regular", sans-serif;
    font-size: 18px;
    line-height: 1.20;
    padding: 0 0 40px 0;
    margin: 0;
    color: #424242;
}

.caracteristicas_producto_sec5 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.20;
    padding: 0 0 40px 0;
    margin: 0;
    color: #313131;
}

/* Botones */
.contenedor_botones_sec5 {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.btn_sin_margin {
    margin-bottom: 0 !important;
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1440px) {

    .contenedor_sec5 {
        max-width: 1088px;
    }

    .card_producto_sec5 {
        top: 160px;
    }

    .contenedor_img_producto_sec5 {
        width: 40%;
    }

    /*  Lado derecho */
    .contenedor_datos_producto_sec5 {
        width: 60%;
    }

    .img_sec5 {
        width: 244px;
        height: 260px;
    }

    .titulo_producto_sec5 {
        font-size: 16px;
    }

    .descripcion_producto_sec5 {
        font-size: 16px;
    }

    .caracteristicas_producto_sec5 {
        font-size: 16px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1121px) {

    .contenedor_sec5 {
        /* max-width: 736px; */
        max-width: calc(100% - 64px);
    }

    .card_producto_sec5 {
        flex-direction: column;
        position: relative;
        top: 0;
        transform: none !important;
    }

    .card_producto_sec5:not(:last-child) {
        margin-bottom: 56px;
    }

    .contenedor_img_producto_sec5 {
        width: 100%;
        padding: 32px 32px 16px 32px;
    }

    .img_sec5 {
        width: 225px;
        height: 240px;
        margin: 52px 0 16px 0;
    }

    .contenedor_datos_producto_sec5 {
        width: 100%;
        padding: 40px 32px;
    }

    .titulo_producto_sec5 {
        font-size: 16px;
    }

    .leyenda_producto_sec5 {
        font-size: 22px;
    }

    .descripcion_producto_sec5 {
        padding: 0 0 32px 0;
    }

    .contenedor_botones_sec5 {
        justify-content: center;
    }

}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 660px) {

    .contenedor_sec5 {
        max-width: 90%;
    }

    .img_sec5 {
        width: 206px;
        height: 220px;
    }

    .contenedor_datos_producto_sec5 {
        width: 100%;
        padding: 24px 32px 40px 32px;
    }

    .descripcion_producto_sec5 {
        padding: 0 0 32px 0;
    }
    
    .contenedor_botones_sec5 {
        flex-direction: column;
        align-items: center; 
        gap: 16px;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_5 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_6 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.contenedor_sec6 {
    background-color: #ECEBE0;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 96px);
    border-radius: 20px;
    padding: 104px 85px;
    margin: 160px 48px 0 48px;
}

/* Parte superior */

.contenedor_textos_sec6 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.titulo_sec6 {
    font-family: "Hector-Regular";
    font-size: 80px;
    line-height: 1.20;
    text-align: center;
    padding: 0 0 32px 0;
    margin: 0;
}

.titulo_gradiente_sec6 {
    background: linear-gradient(to right, #FF4848, #FF642B, #F89521);
    background-clip: text;           /* estándar */
    -webkit-background-clip: text;   /* Chrome / Safari */
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.texto_sec6 {
    max-width: 898px;
    width: 100%;
    font-size: 20px;
    font-family: "KumbhSans-Regular",sans-serif;
    color: #1E1E1E;
    text-align: center;
    line-height: 1.20;
    margin: 0 auto;
    padding: 0 0 104px 0;
}

.leyenda_beneficios_sec6 {
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    font-family: "KumbhSans-Regular",sans-serif;
    color: #3E3E3C;
    text-align: left;
    line-height: 1.20;
    margin: 0;
    padding: 0 0 24px 0;
}

/* Parte inferior */

.contenedor_cards_sec6 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card_beneficio_sec6 {
    padding: 24px 40px;
    background-color: #F4F3E9;
    border: 1px solid #1E1E1E;
    border-radius: 20px;
    height: auto;
}

.titulo_card_beneficio_sec6 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-weight: 600;
    font-size: 21px;
    color: #000000;
    text-align: left;
    line-height: 1.20;
    margin: 0;
    padding: 24px 0 16px 0;
}

.texto_card_beneficio_sec6 {
    font-family: "KumbhSans-Regular", sans-serif;
    font-size: 16px;
    color: #000000;
    text-align: left;
    line-height: 1.20;
    margin: 0;
    padding: 0;
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1550px) {

    .contenedor_sec6 {
        padding: 80px 85px;
    }

    .contenedor_textos_sec6,
    .contenedor_cards_sec6 {
        max-width: 1088px;
    }

    /* Parte superior */
    .titulo_sec6 {
        font-size: 60px;
    }

    .texto_sec6 {
        max-width: 879px;
    }

    .leyenda_beneficios_sec6 {
        padding: 0 0 32px 0;
    }

    /* Parte inferior */
    .card_beneficio_sec6 {
        padding: 24px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1121px) {

    .contenedor_sec6 {
        max-width: calc(100% - 64px);
        padding: 40px 48px;
        margin: 80px 32px 0 32px;
    }

    .contenedor_textos_sec6,
    .contenedor_cards_sec6 {
        max-width: 640px;
    }

    /* Parte superior */
    .titulo_sec6 {
        font-size: 50px;
        padding: 0 0 40px 0;
    }

    .texto_sec6 {
        max-width: 100%;
        font-size: 18px;
        padding: 0 0 80px 0;
    }

    .leyenda_beneficios_sec6 {
        font-size: 16px;
    }

    /* Parte inferior */

    .contenedor_cards_sec6 {
        grid-template-columns: repeat(2, 3fr);
    }

}

/* --------- Responsivo - Pantallas chicas ------- */

@media (max-width: 700px) {

    .contenedor_sec6 {
        max-width: 100%;
        padding: 40px 0;
        margin: 100px 0 0 0;
    }

    .contenedor_textos_sec6,
    .contenedor_cards_sec6 {
        max-width: 80%;
    }

    /* Parte superior */
    .titulo_sec6 {
        font-size: 40px;
    }

    .leyenda_beneficios_sec6 {
        font-size: 12px;
    }

    /* Parte inferior */

    .contenedor_cards_sec6 {
        grid-template-columns: 1fr;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_6 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_7 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.contenedor_sec7 {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    padding: 160px 0 0 0;
}

.contenedor_textos_sec7 {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.tituloGradiente_sec7 {
    font-family: "Hector-Regular";
    font-size: 80px;
    line-height: 1.20;
    text-align: center;
    padding: 0 0 32px 0;
    margin: 0;
    background: linear-gradient(to right, #171717, #FF0000);
    background-clip: text;           /* estándar */
    -webkit-background-clip: text;   /* Chrome / Safari */
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

.subtitulo_card_sec7 {
    max-width: 766px;
    width: 100%;
    font-size: 18px;
    font-family: "KumbhSans-Regular",sans-serif;
    color: #000000;
    text-align: center;
    line-height: 1.20;
    margin: 0 auto;
    padding: 0 0 64px 0;
}

/* ---------- Parte inferior ------------ */
.contenedor_carrusel_sec7 {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    display: flex;
    gap: 40px;
    padding-bottom: 0%;
    
    padding-left: max(20px, calc((100vw - 1400px) / 2));
    padding-right: max(20px, calc((100vw - 1400px) / 2));

    scroll-behavior: smooth;
    margin: 0;
}

.contenedor_carrusel_sec7::-webkit-scrollbar {
    display: none;
}

/* ---------- Controles / Botones ------------- */

.contenedor_custom_arrows_sec7 {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    padding: 0;
    margin: 0 auto 32px auto;
}

/* BASE */
.custom-prev-sec7,
.custom-next-sec7 {
    cursor: pointer;
    background-color: #EAE9DE;
    border: none;
    border-radius: 50%;
    opacity: 1;
    padding: 0; /*evitar desbalance*/
    width: 50px;
    height: 50px;
    display: flex;                /* CENTRAR */
    align-items: center;          /* CENTRAR VERTICAL */
    justify-content: center;      /* CENTRAR HORIZONTAL */
    transition: all 0.25s ease;
}

/* HOVER (solo si NO está desactivado) */
.custom-prev-sec7:hover:not(.btn-disabled-sec7),
.custom-next-sec7:hover:not(.btn-disabled-sec7) {
    background-color: #FFFFFF;
}

/* DESACTIVADO */
.btn-disabled-sec7 {
    opacity: 0.3;
    pointer-events: none; 
}

/* ---- Cards ------- */
.card_sec7 {
    width: 1090px;
    min-height: 500px;
    flex-shrink: 0;
    display: flex;
    background-color: #EAE9DE;
    border: 1px solid #1E1E1E;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    flex: 0 0 auto;       /* O el ancho real de tu card */
    scroll-snap-align: start;

}

.card_img_sec7 {
    width: 50%;
}

.card_img_sec7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card_body_sec7 {
    width: 50%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card_titulo_sec7 {
    font-family: "KumbhSans-Variable", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.20;
    padding-bottom: 40px;
    text-align: left;
    margin: 0%;
}

.card_texto_sec7 {
    font-family: "KumbhSans-Regular";
    font-size: 16px;
    line-height: 1.20;
    padding-bottom: 40px;
    text-align: left;
    margin: 0%;
}

.btn_card_sec7 {
    width: 100%;
    margin: auto 0 0 0;
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1440px) {

    .contenedor_textos_sec7 {
        max-width: 1088px;
    }

    .subtitulo_card_sec7 {
        max-width: 920px;
    }

    /*  -------- Parte inferior ------- */

    .contenedor_custom_arrows_sec7 {
        max-width: 1088px;
    } 

    .contenedor_carrusel_sec7 {
        padding-left: max(20px, calc((100vw - 1088px) / 2));
        padding-right: max(20px, calc((100vw - 1088px) / 2));
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1121px) {

    .contenedor_sec7 {
        padding: 80px 0 0 0;
    }

    .tituloGradiente_sec7 {
        max-width: 640px;
        width: 100%;
        font-size: 60px;
        margin: 0 auto;
    }

    .subtitulo_card_sec7 {
        max-width: 640px;
        padding: 0 0 32px 0;
    }

    /*  -------- Parte inferior ------- */

    .contenedor_custom_arrows_sec7 {
        max-width: 736px;
    }

    .contenedor_carrusel_sec7 {
        gap: 32px;
        padding-left: max(20px, calc((100vw - 736px) / 2));
        padding-right: max(20px, calc((100vw - 736px) / 2));
    }

    /* ---- Cards ------- */
    .card_sec7 {
        width: 565px;
        min-height: 668px;
        display: flex;
        flex-direction: column;
    }

    .card_img_sec7 {
        width: 100%;
        height: 326px;
    }

    .card_img_sec7 img {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .card_body_sec7 {
        width: 100%;
        padding: 48px;
    }

    .card_titulo_sec7 {
        font-size: 20px;
        padding-bottom: 32px;
        text-align: center;
    }
    
}

/* --------- Responsivo - Pantallas chicas ------- */

@media (max-width: 700px) {

    .contenedor_sec7 {
        padding: 100px 0 0 0;
    }

    .tituloGradiente_sec7 {
        max-width: 90%;
        font-size: 40px;
    }

    .subtitulo_card_sec7 {
        max-width: 80%;
        font-size: 16px;
    }

    /*  -------- Parte inferior ------- */

    .contenedor_custom_arrows_sec7 {
        max-width: 90%;
    }

    .spacer_seccion7 {
        flex: 0 0 1.5%;
    }

    .spacer_end_sec7 {
        flex: 0 0 1.5%;
    }

    .contenedor_carrusel_sec7 {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        scroll-snap-type: x mandatory;
        display: flex;
        scroll-padding-left: 5%;
        scroll-padding-right: 5%;
        gap: 16px;
    }
    
    .card_sec7 {
        width: 327px;
        min-height: 713px;
    }

    .card_img_sec7 {
        width: 100%;
        max-width: 326px;
        max-height: 322px;
    }

    .card_body_sec7 {
        width: 100%;
        height: 100%;
        padding: 48px 24px;
        display: flex;
        flex-direction: column;
    }

    .card_titulo_sec7 {
        padding: 0 0 32px 0;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_7 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_8 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.contenedor_FAQsSec8{
    padding: 0;
    margin: 160px auto;
    max-width: 1090px;
    width: 100%;
}

.tituloFAQsSec8{
    font-size: 60px;
    font-family: "Hector-Regular", sans-serif;
    line-height: 1.15;
    color: #1E1E1E;
    padding-bottom: 64px;
    margin-bottom: 0;
}

/* CARD */
.contienePreFAQsSec8{
    background-color: #EAE9DE;
    border: 1px solid transparent; /* IMPORTANTE */
    border-radius: 15px;
    padding: 16px 32px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: border 0.2s ease;
}

.contienePreFAQsSec8:hover{
    border-color: #313131;
}

.cardActivaFAQ{
    border-color: #313131;
}

.headerFAQ{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

/* PREGUNTA */
.preguntaFAQsSec8 {
    font-size: 18px;
    font-family: "KumbhSans-Regular",sans-serif;
    color: #1E1E1E;
    line-height: 1.20;
    margin: 0;
}

.preguntaActiva {
    font-weight: bold;
}

/* RESPUESTA */
.contieneResFAQsSec8{
    font-size: 18px;
    font-family: "KumbhSans-Regular",sans-serif;
    color: #1E1E1E;
    line-height: 1.20;
    background-color: #EAE9DE;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-top: 16px;
    display: none;
}

.contieneResFAQsSec8 p{
    margin-bottom: 0;
    padding-right: 13px;
}

/* Iconos */

.arrow{
    width: 13px;
    height: 13px;
}

.arrow-open{
    display: none;
}

.cardActivaFAQ .arrow-open{
    display: block;
}

.cardActivaFAQ .arrow-close{
    display: none;
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1440px) {

    .contenedor_FAQsSec8{
        max-width: 920px;
    }

}

/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 991px) {

    .tituloFAQsSec8{
        font-size: 50px;
        text-align: center;
        padding-bottom: 56px;
    }

    .contenedor_FAQsSec8{
        padding: 0;
        margin: 80px auto;
        max-width: 641px;
    }

    .preguntaFAQsSec8 {
        width: 90%;
    }
}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 670px) {

    .contenedor_FAQsSec8 {
        width: 90%;
        margin: 100px auto;
    }

    .tituloFAQsSec8{
        font-size: 35px;
        padding-bottom: 48px;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_8 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_9 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
.contenedorProceso_Sec9 {
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 96px);
    border-radius: 20px 20px 0 0;
    padding: 160px 0;
    margin: 0 48px;
    background-color: #000000;
}

.cuerpo_sec9 {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    gap: 32px;
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}

.columna_izq_sec9,
.columna_der_sec9 {
    width: 50%;
}

/* ------- Columna izquierda -------- */

.contenedor_textos_superior_sec9 {
    width: 100%;
}

.columna_izq_sec9 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    order: 1;
}

.titulo_card_sec9 {
    color: #F4F3E9;
    font-family: "Hector-Regular";
    font-size: 60px;
    line-height: 1.20;
    text-align: left;
    padding: 0 0 20px 0;
    margin: 0;
}

.subtitulo_card_sec9 {
    color: #F4F3E9;
    font-family: "KumbhSans-Variable", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.20;
    max-width: 485px;
    text-align: left;
    padding: 0 0 24px 0;
    margin: 0;
}

.contenedor_cards_contacto_inferior {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-top: auto;
}

.card_contactos_sec9 {
    background-color: #000000;
    border: 1px solid #707070;
    border-radius: 20px;
    transition: background-color 0.4s ease;
    padding: 32px;
    width: 50%;
    text-decoration: none;
}

.card_contactos_sec9:hover {
    background-color: #151515;
}

.titulo_card_contactos_sec9 {
    color: #F4F3E9;
    font-family: "KumbhSans-Variable", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.20;
    margin: 0;
    width: 100%;
    padding: 16px 0 16px 0;
}

.subtitulo_card_contactos_sec9 {
    color: #F4F3E9;
    font-family: "KumbhSans-Regular";
    font-size: 16px;
    line-height: 1.20;
    margin: 0;
    padding: 0;
}

.chatea_por_email_sec9 {
    width: 70% !important;
}

/* ------- Columna derecha -------- */

.contenedor_formulario_sec9 {
    background-color: #151515;
    border-radius: 20px;
    padding: 40px 56px;
    margin: 0;
}

.columna_der_sec9 {
    order: 2;
}

.contenedor_formulario_sec9 {
    gap: 40px;
    display: flex;
    flex-direction: column;
}

.campo_forms_sec9 {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.titulo_campo_form_sec9 {
    color: #FFFFFF;
    font-family: "KumbhSans-Variable", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.20;
    text-align: left;
    padding: 0;
    margin: 0;
}

.input_form_contacto_sec9 {
    border-radius: 10px;
    background-color: #1E1E1E;
    border: 1px solid #1E1E1E;
    transition: border-color 0.3s ease;
    height: 36px;
    text-indent: 46px; 
    box-sizing: border-box;
    color: #FFFFFF;
    padding: 5px;
}

.input_form_contacto_extra_sec9 {
    border-radius: 10px;
    background-color: #1E1E1E;
    border: 1px solid #1E1E1E;
    transition: border-color 0.3s ease;
    height: 100px;
    padding: 5px 5px 5px 46px;
    box-sizing: border-box;
    color: #FFFFFF;
    width: 100%;
    min-height: 100px;
    resize: none;
    font-family: inherit;
}

.input_form_contacto_sec9:focus,
.input_form_contacto_extra_sec9:focus {
    outline: none;
    border-color: #707070;
}

/* --------- Responsivo - Pantallas grandes ------- */
@media (max-width: 1600px) {

    .contenedorProceso_Sec9 {
        padding: 90px 85px;
    }

    .chatea_por_email_sec9 {
        width: 80% !important;
    }

}


/* --------- Responsivo - Pantallas medianas ------- */
@media (max-width: 1250px) {

    .contenedorProceso_Sec9 {
        max-width: calc(100% - 64px);
        padding: 56px 48px;
        margin: 0 32px;
    }

}

@media (max-width: 1120px) {

    .contenedorProceso_Sec9 {
        max-width: calc(100% - 64px);
        padding: 80px 48px;
        margin: 0 32px;
    }

    .cuerpo_sec9 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* hacemos que este div "desaparezca" visualmente pero mantenga a sus hijos */
    .columna_izq_sec9 {
        display: contents; 
    }

    .contenedor_textos_superior_sec9 {
        order: 1; 
        width: 100%;
    }

    .columna_der_sec9 {
        order: 2;
        width: 100%;
    }

    .contenedor_cards_contacto_inferior {
        order: 3;
        width: 100%;
    }
    
    .card_contactos_sec9 {
        width: 100%; /* Las cards ocupan todo el ancho en tableta/móvil */
    }

    .titulo_card_sec9 {
        text-align: center;
        padding: 0 0 56px 0;
    }

    .subtitulo_card_sec9 {
        font-size: 20px;
        text-align: center;
        max-width: 100%;
        padding: 0 0 24px 0;
        margin: 0;
    }

    .titulo_card_contactos_sec9 {
        width: 100%;
    }

    .chatea_por_email_sec9 {
        width: 100% !important;
    }
}

/* --------- Responsivo - Pantallas chicas ------- */
@media (max-width: 660px) {

    .contenedorProceso_Sec9 {
        max-width: 100%;
        padding: 40px 0;
        margin: 0;
    }

    .contenedor_cards_contacto_inferior {
        order: 3;
        width: 100%;
        flex-direction: column;
    }

    .titulo_card_sec9 {
        font-size: 40px;
        padding: 0 0 32px 0;
    }

    .subtitulo_card_sec9 {
        font-size: 20px;
        padding: 0;
    }

    .cuerpo_sec9 {
        max-width: 80%;
        gap: 32px;
    }

    .contenedor_formulario_sec9 {
        padding: 32px 16px;
        gap: 32px;
    }

    .campo_forms_sec9 {
        gap: 8px;
    }

    .card_contactos_sec9 {
        padding: 32px 16px;
    }

    .input_form_contacto_sec9 {
        text-indent: 32px; 
    }

    .input_form_contacto_extra_sec9 {
        padding: 5px 5px 5px 32px;
    }

}

/* <<<<<<<<<<<<<<<<<<<<<< SECTION_9 >>>>>>>>>>>>>>>>>>>>>>>>>>>>> */