/* ==========================================================================
   61. CORPORATIVO: ESTRUCTURA GENERAL (#salesCorporate)
   ========================================================================== */
#salesCorporate {
    background-color: var(--cream-extra-light);
}

/* ==========================================================================
   62. CORPORATIVO: BENEFICIOS (.benefits)
   ========================================================================== */
#salesCorporate .benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#salesCorporate .benefits__title {
    margin: 32px 0;
    padding-inline: 5px;
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
}

#salesCorporate .benefits__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 0;
    list-style: none;
}

#salesCorporate .benefits__items__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 12px);
    max-width: 240px;
}

#salesCorporate .benefits__items__card__img {
    width: 52px;
}

#salesCorporate .benefits__items__card__title {
    margin: 1rem 0;
    color: var(--primary-dark-green);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600; /* SemiBold Mori */
    line-height: 24px;
    text-align: center;
}

#salesCorporate .benefits__items__card__description {
    width: 100%;
    color: var(--primary-dark-green);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

/* ==========================================================================
   63. CORPORATIVO: SECCIÓN DE VENTA (.wesell)
   ========================================================================== */
#salesCorporate .wesell {
    margin-top: 80px;
}

#salesCorporate .wesell .desktop {
    display: none; /* Se activa en media queries de desktop */
    gap: 2rem;
}

#salesCorporate .wesell .desktop .wesell__title {
    max-width: 600px;
}

#salesCorporate .wesell__sup {
    margin: 0;
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4px;
    text-align: center;
}

#salesCorporate .wesell__title {
    margin-top: 8px;
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

#salesCorporate .wesell__title b {
    font-family: var(--font-heading);
    font-weight: 700;
}

#salesCorporate .wesell__items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0;
}

#salesCorporate .wesell__items__card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#salesCorporate .wesell__items__card__title {
    width: calc(100% - 40px);
    margin: 0;
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    text-transform: uppercase;
}

#salesCorporate .wesell__items__card__description {
    padding: 0 20px;
    color: var(--primary-dark-green);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

#salesCorporate .wesell__items__card__img {
    width: 100%;
    margin-top: 32px;
}

#salesCorporate .wesell__items__card--inactive {
    opacity: 0.56;
}

/* ==========================================================================
   64. CORPORATIVO: FORMULARIO E INFORMACIÓN (.information)
   ========================================================================== */
#salesCorporate .information {
    padding-top: 54px;
}

#salesCorporate .information__title {
    color: var(--primary-dark-green);
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

#salesCorporate .information__description {
    margin-bottom: 56px;
    padding-inline: 24px;
    color: var(--primary-dark-green-muted);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

#salesCorporate .information__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor de Checkbox para términos */
#salesCorporate .information__container .checkbox-container {
    display: flex;
    margin-top: 24px;
    padding-inline: 24px;
}

#salesCorporate .information__container .checkbox-container .text {
    padding-left: 4px;
    color: var(--primary-dark-green);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

/* Botón/CTA de formulario */
#salesCorporate .information__container .primary {
    width: 300px;
    margin-top: 40px;
    color: var(--primary-dark-green-muted);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   65. CORPORATIVO: OPTIMIZACIÓN DESKTOP (min-width: 990px)
   ========================================================================== */
@media (min-width: 990px) {
    /* Gestión de visibilidad */
    #salesCorporate .wesell .mobile {
        display: none;
    }

    #salesCorporate .wesell .desktop {
        display: flex;
        justify-content: center;
    }

    #salesCorporate .wesell .desktop .wesell__container {
        display: flex;
    }

    /* Listado de servicios corporativos */
    #salesCorporate .wesell .desktop .wesell__items {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2.5rem;
    }

    #salesCorporate .wesell .desktop .wesell__items__card__img {
        width: 416px;
        height: 216px;
        margin-top: 16px;
        border-radius: var(--radius-lg);
        object-fit: contain;
    }

    #salesCorporate .wesell .desktop .wesell__items__card__title {
        width: 100%;
        color: var(--primary-dark-green);
        font-family: var(--font-heading);
        font-size: 32px;
        font-weight: 700;
    }

    #salesCorporate .wesell .desktop .wesell__items__card__description {
        padding: 0;
    }

    /* Cabeceras de la sección */
    #salesCorporate .wesell .desktop .wesell__sup {
        padding-left: 16px;
        font-size: 24px;
        text-align: left;
    }

    #salesCorporate .wesell .desktop .wesell__title {
        margin-bottom: 8px;
        font-size: 64px;
        line-height: 1.2;
        text-align: left;
    }

    /* Ajuste de cuadrícula de beneficios */
    #salesCorporate .benefits__items {
        justify-content: space-between;
        width: 100%;
        max-width: 1024px;
    }

    /* ==========================================================================
       66. CORPORATIVO: FORMULARIO DESKTOP (.information)
       ========================================================================== */
    #salesCorporate .information {
        display: flex;
        justify-content: center;
        gap: 100px;
    }

    #salesCorporate .information__card {
        max-width: 500px;
    }

    #salesCorporate .information__title {
        margin: 16px 0 0;
        font-size: 48px;
        text-align: left;
    }

    #salesCorporate .information__description {
        padding-inline: 0;
        text-align: left;
    }

    /* Layout del Formulario */
    #salesCorporate .information__container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 800px;
        gap: 15px 50px;
    }

    #salesCorporate .information__container .form-label {
        width: 40%;
    }

    #salesCorporate .information__container .form-label .form-input,
    #salesCorporate .information__container .form-label textarea,
    #salesCorporate .information__container .form-label select {
        width: 100%;
    }

    #salesCorporate .information__container .text-area {
        width: 90%;
    }
}

/* ==========================================================================
   67. CORPORATIVO: AJUSTES MÓVILES ESPECÍFICOS
   ========================================================================== */
@media screen and (max-width: 767px) {
    /* Sección Ocasión Perfecta */
    #salesCorporate .section-container-perfect-occasion .row-perfect-occasion .col-left h2 {
        font-family: var(--font-heading);
        font-size: 32px;
        line-height: 40px;
        font-weight: 700;
    }

    /* ==========================================================================
       263. VENTAS CORPORATIVAS (#salesCorporate)
       ========================================================================= */
    #salesCorporate .container-fluid {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    #salesCorporate .container-fluid .section-container-perfect-occasion {
        padding: 5px 5px 25px 5px;
    }

    #salesCorporate .container-fluid .section-container-perfect-occasion .row-perfect-occasion {
        flex-direction: column;
    }

    #salesCorporate .container-fluid .section-container-perfect-occasion .row-perfect-occasion .col-left h2,
    #salesCorporate .container-fluid .section-container-perfect-occasion .row-perfect-occasion .col-left h3 {
        text-align: center;
    }
}

/* ==========================================================================
   304. OCASIÓN PERFECTA: ESTRUCTURA DE FILA (.section-container-perfect-occasion)
   ========================================================================== */
.section-container-perfect-occasion {
    padding: 20px;
}

.section-container-perfect-occasion .row-perfect-occasion {
    display: flex;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

/* ==========================================================================
   305. TEXTOS EDITORIALES: H2 Y H3 (PPRader)
   ========================================================================== */
.section-container-perfect-occasion .row-perfect-occasion .col-left h2 {
    margin: 20px 0;
    color: var(--e-global-color-text);
    font-family: "PPRader", sans-serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1em;
    text-transform: uppercase;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left h3 {
    margin: 0;
    color: var(--e-global-color-42f6555);
    font-family: "PPRader", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.333em;
}

/* ==========================================================================
   306. SISTEMA DE TABS: INTERACTIVIDAD Y ESTADOS (.tabs)
   ========================================================================== */
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs {
    margin-top: 25px;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab {
    margin-bottom: 20px;
    cursor: pointer;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab h4 {
    margin: 15px 0;
    color: rgba(62, 72, 39, 0.56); /* #3E48278F - Verde oscuro con opacidad */
    font-family: var(--font-main), sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab p {
    margin: 15px 0;
    color: rgba(62, 72, 39, 0.56);
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
}

.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab img {
    display: none;
}

/* Estados de Activación y Hover */
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab.active,
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab:hover {
    color: var(--primary-dark-green); /* #3E4827 */
}

.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab.active h4,
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab:hover h4,
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab.active p,
.section-container-perfect-occasion .row-perfect-occasion .col-left .tabs .tab:hover p {
    color: var(--primary-dark-green);
}

/* ==========================================================================
   307. COLUMNA VISUAL: IMAGEN DE APOYO (.col-right)
   ========================================================================== */
.section-container-perfect-occasion .row-perfect-occasion .col-right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.section-container-perfect-occasion .row-perfect-occasion .col-right img {
    height: auto;
    max-width: 100%;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px;
}