/* --- VARIABLES DE GREENCHEM --- */
:root {
    --primary-green: #0BA14A;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --max-width: 2560px;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../res/fonts/SofiaPro/sofiapro-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../res/fonts/SofiaPro/sofiapro-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro';
    src: url('../res/fonts/SofiaPro/sofiapro-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
input,
textarea,
button {
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- ESTRUCTURA GREENCHEM --- */
.width-lock {
    max-width: var(--max-width);
    margin: auto;
    width: 100%;
}

main.width-lock {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.industrial-section--bordered .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 850px;
}

.industrial-section--bordered .grid-2 {
    gap: 40px;
    align-items: center;
}

/* Grid 3: texto e imagen alineados al borde superior (como referencia) */
.industrial-section--grid3 .grid-2 {
    align-items: start;
}

/* Sección sin columna de imagen: contenido a ancho completo, descripción de extremo a extremo */
.grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-width: 0;
    width: 100%;
}

.industrial-content--full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.industrial-section--full .industrial-content--full p {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.industrial-section--grid3 .industrial-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 1024px) {
    .industrial-section--bordered .grid-2 {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .industrial-section--bordered .grid-2 {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .industrial-section--bordered .grid-2 {
        gap: 15px;
    }
}

/* --- HERO / BANNER (Estructura Greenchem) --- */
.hero.banner-wrapper {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

@media (max-width: 1024px) {
    .hero.banner-wrapper {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero.banner-wrapper {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero.banner-wrapper {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }
}

@media (max-width: 360px) {
    .hero.banner-wrapper {
        min-height: 100vh;
        min-height: 100dvh;
        padding: 0;
    }
}

.banner-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-media video,
.banner-media img {
    width: 100%;
    height: 120%;
    max-width: 100%;
    object-fit: cover;
    object-position: bottom center;
    display: block;
}

/* Video en hero: capa en GPU para mantener nitidez al escalar */
.banner-media video {
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.banner-media img {
    filter: contrast(1.08) saturate(1.04);
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

/* Animación banner: subir desde abajo */
@keyframes bannerSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación banner-title-block: sale del borde izquierdo */
@keyframes bannerTitleFromLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Banner text content - Hero Secondary Butanol (solo título) */
.banner-text-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 0 0 20%;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-color: #0BA14A;
    clip-path: polygon(0 20%, 100% 85%, 100% 100%, 0 100%);
    z-index: 5;
    display: flex;
    align-items: flex-end;
    padding: 0 0 30px 6%;
    box-sizing: border-box;
}

.footer-gc-logo {
    height: clamp(40px, 4.5vw, 60px);
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

.banner-logo {
    position: absolute;
    top: 40px;
    right: 40px;
    height: clamp(50px, 6vw, 85px);
    width: auto;
    z-index: 10;
}



/* Título hero: SECONDARY (grande, negrita) + BUTANOL (más pequeño, gris claro) */
.banner-title-block {
    text-align: left;
    margin-bottom: 0;
    padding-top: 0;
    opacity: 0;
    animation: bannerTitleFromLeft 0.8s ease-out forwards;
}

/* Bloque separado del título: misma separación del borde que el título */
.banner-copy-block {
    position: relative;
    z-index: 2;
    padding: 0 22% 0 22%;
    margin-top: 1.25em;
    margin-left: auto;
    max-width: 980px;
    width: 100%;
    box-sizing: border-box;
    text-align: right;
}



.banner-hero-subtitle {
    font-size: clamp(2.7rem, 2vw, 3rem);
    color: #444;
    font-weight: 400;
    margin-top: 12px;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: bannerSlideUp 0.8s ease-out 0.8s forwards;
}

.banner-title-block .banner-title-secondary {
    font-size: clamp(2.2rem, 4vw, 5rem);
    font-weight: 500;
    color: #333333;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0.1em 0 0;
}

.banner-title-primary {
    font-size: clamp(6rem, 4.2vw, 6rem);
    font-weight: 600;
    color: #0BA14A;
    letter-spacing: -0.02em;
    text-transform: none;
    margin: 0;
    line-height: 1.05;
}

.banner-title-secondary {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: -0.1em 0 0.4em 0;
    line-height: 1;
}

.banner-subheading {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: #555555;
    margin: 0 0 1em 0;
    line-height: 1.4;
}

.banner-copy-block .banner-subheading {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    color: #333333;
    margin: 0 0 0.6em 0;
    margin-left: auto;
    line-height: 1.3;
    max-width: 420px;
    opacity: 0;
    animation: bannerSlideUp 0.6s ease-out 0.4s forwards;
}

.banner-description {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.55;
    margin: 0;
    padding-top: 40px;
    max-width: 480px;
    text-align: left;
    opacity: 0;
    animation: bannerSlideUp 0.6s ease-out 0.7s forwards;
}

.banner-copy-block .banner-description {
    text-align: right;
    margin-left: auto;
}

@media (max-width: 768px) {
    .banner-text-content {
        padding: 0 18% 0 18%;
    }

    .banner-copy-block {
        padding: 0 18% 0 18%;
    }
}

@media (max-width: 480px) {
    .banner-text-content {
        padding: 0 16% 0 16%;
    }

    .banner-copy-block {
        padding: 0 16% 0 16%;
    }

    .banner-title-block .banner-title-secondary {
        font-size: 1.5rem;
    }

    .banner-subheading {
        font-size: 0.95rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .banner-logo {
        width: 60px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 360px) {
    .banner-text-content {
        padding: 0 14% 0 14%;
    }

    .banner-copy-block {
        padding: 0 14% 0 14%;
    }

    .banner-title-block .banner-title-secondary {
        font-size: 1.25rem;
    }

    .banner-subheading {
        font-size: 0.9rem;
    }

    .banner-description {
        font-size: 0.85rem;
    }
}

.banner-title-container {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-h1 {
    font-size: 6rem;
    line-height: 0.85;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.hero-h1 .light {
    font-weight: 300;
}

.hero-h1 .bold {
    font-weight: 800;
    color: var(--primary-green);
}

.hero-sub {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 8px;
    opacity: 0.9;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .hero-h1 {
        font-size: 4rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 768px) {
    .banner-title-container {
        left: 5%;
        top: 50%;
        text-align: center;
        width: 90%;
    }

    .hero-h1 {
        font-size: 3.5rem;
    }
}

/* --- INTRO SECTION --- */
.text-center {
    text-align: left;
}

.intro-section {
    background-color: var(--white);
    padding-top: 80px;
    padding-bottom: 60px;
    margin-bottom: -4%;
}

.intro-question {
    font-size: 1rem;
    color: #343434;
    margin-bottom: 25px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

.intro-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.intro-text-2 {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 850px;
    margin: -35px auto -70px auto;
}

.intro-image {
    max-width: 1040px;
    margin: 0 auto;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- SOURCING FACTORS SECTION --- */
.sourcing-factors-section {
    background-color: var(--white);
    padding: 10px 0;
    margin: 40px 0;
}

.sourcing-container {
    background-color: var(--primary-green);
    color: #ffffff;
    max-width: 950px;
    margin: 0 auto;
    padding: 38px 40px 50px 40px;
    box-sizing: border-box;
    text-align: center;
}

.sourcing-title {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 00;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.sourcing-subtitle {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 700;
    display: block;
}

.sourcing-intro {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.sourcing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sourcing-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

/* Custom checkbox styling */
.sourcing-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.sourcing-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-green);
    font-weight: 900;
    font-size: 18px;
}

.sourcing-label {
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .sourcing-container {
        padding: 60px 40px;
    }

    .sourcing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .sourcing-container {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .sourcing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sourcing-intro {
        font-size: 1.1rem;
    }
}

/* --- DOCUMENTATION & COMPLIANCE SECTION --- */
.why-procurement-section {
    background-color: var(--white);
    padding: 100px 0;
}

.why-procurement-section .award-title-line--bulk-difference {
    white-space: nowrap;
    font-size: clamp(0.58rem, 1.85vw + 0.42rem, 1.2rem);
    letter-spacing: 0.5px;
    overflow-wrap: normal;
    word-wrap: normal;
}

.why-procurement-section .procurement-col-left .award-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
}

.why-procurement-section .award-title-wrapper {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.why-procurement-section .award-header .arrow-icon.triangle-icon {
    margin-top: 0;
    align-self: center;
}

/* Cuerpo de la sección: un poco más pequeño; el título no se modifica aquí */
.why-procurement-section .documentation-content .doc-text-grey,
.why-procurement-section .documentation-content .doc-list-black {
    font-size: 0.93rem;
}

.documentation-content {
    margin-top: 30px;
    text-align: left;
}

.doc-text-grey {
    color: #555555;
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.doc-list-black {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    color: #555555;
    font-size: 1rem;
    font-weight: 500;
}

.doc-list-black li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 6px;
    line-height: 1.15;
}

.doc-list-black li:last-child {
    margin-bottom: 0;
}

.doc-list-black li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.02em;
    font-size: 1.45em;
    line-height: 1;
    color: #555555;
}

.doc-image-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
}

.doc-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .dual-column-info {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .procurement-col-left {
        padding: 60px 20px;
    }

    .doc-side-image {
        height: 350px;
    }
}

.section-padding {
    padding: 100px 0;
}

/* Tres imágenes de aplicaciones: mismo ancho que los grids, alineado */
.applications-images {
    padding-top: 0;
    padding-bottom: 80px;
}

/* Mismo ancho y padding que .industrial-section--bordered .container */
.applications-images .container {
    max-width: 1040px;
    padding-left: 120px;
    padding-right: 120px;
}

.applications-images__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.applications-images__row img {
    width: auto;
    height: auto;
    max-width: calc((100% - 64px) / 3);
    display: block;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .applications-images .container {
        padding-left: 56px;
        padding-right: 56px;
    }
}

@media (max-width: 768px) {
    .applications-images .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .applications-images__row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .applications-images__row img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .applications-images .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Banner con imagen de fondo: mismo ancho que el contenido de los grids (1040px) */
.content-banner {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 80px 0;
    overflow: hidden;
    box-sizing: border-box;
}

.content-banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.content-banner__inner {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 0;
}

.content-banner__text {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .content-banner {
        max-width: calc(100% - 112px);
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .content-banner {
        max-width: calc(100% - 56px);
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .content-banner {
        max-width: calc(100% - 40px);
        padding: 40px 0;
    }
}

/* --- SECONDARY HERO --- */
.secondary-hero {
    position: relative;
    height: 650px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.secondary-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.secondary-title-box {
    background-color: #0BA14A;
    padding: 15px clamp(30px, 6vw, 60px) 15px 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 65%;
    transform: translateY(-50%);
    min-width: clamp(280px, 60vw, 750px);
    z-index: 5;
}

.hero-title-large {
    font-size: 8rem;
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -5px;
    text-align: right;
}

.hero-title-small {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 2px;
    text-align: right;
}

@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .hero-title-small {
        font-size: 1.5rem;
    }

    .secondary-hero {
        height: 400px;
    }

    .secondary-title-box {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 45px 15px 20px;
        align-items: flex-end;
        top: 70%;
    }

    .hero-title-large,
    .hero-title-small {
        text-align: right;
    }

    .banner-logo {
        width: 50px;
        top: 15px;
        right: 15px;
        z-index: 20;
    }
}

@media (max-width: 480px) {
    .secondary-hero {
        height: 180px;
    }

    .hero-title-large {
        letter-spacing: -1px;
    }

    .hero-title-small {
        letter-spacing: 0;
    }

    .secondary-hero-content {
        padding: 0 16px;
    }
}

@media (max-width: 360px) {
    .secondary-hero {
        height: 280px;
    }

    .hero-title-large {
        font-size: 2.4rem;
    }

    .hero-title-small {
        font-size: 1.1rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-width: 0;
}

/* --- HEADER DE SECCIÓN (Estilo Greenchem) --- */
.award-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.arrow-icon.triangle-icon {
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 20px solid var(--primary-green);
    margin-top: 5px;
    flex-shrink: 0;
}

.award-title-line {
    font-size: clamp(0.95rem, 3.8vw, 1.3rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    justify-content: flex-start;
}

.text-green-vibrant {
    color: var(--primary-green);
}

/* --- BOTONES --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-vibrant {
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 0;
    /* Rectangular como en la imagen */
}

.btn-vibrant:hover {
    background-color: #008a3d;
    transform: translateY(-2px);
}

/* --- SECCIÓN INDUSTRIAL --- */
.industrial-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin: 0.4em 0 1em 0;
    max-width: 550px;
    padding-left: 40px;
}

.award-title-line {
    font-size: 1.2rem;
}

.industrial-content p {
    font-size: 1.02rem;
    color: #555;
    margin-bottom: 25px;
    max-width: 550px;
    padding-left: 40px;
    line-height: 1.15;
}

.industrial-list {
    font-size: 1.02rem;
    color: #555;
    margin: 0 0 25px 0;
    padding-left: 40px;
    max-width: 550px;
    line-height: 1.15;
    list-style: none;
}

.industrial-list li {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 0;
}

.industrial-list li::before {
    content: "• ";
    color: #555;
    font-weight: bold;
}

.industrial-image {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5em;
}

.industrial-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
    display: block;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

/* Imagen grid 1: llena el contenedor sin perder nitidez */
.industrial-image--compact {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
}

.industrial-image--compact img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
}

.image-with-gradient {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-with-gradient::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Bloque de dos imágenes: ocupa todo el contenedor; imagen 1 superior izquierdo, imagen 2 inferior derecho */
.industrial-images-stack {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: stretch;
    min-width: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
}

/* Imagen 1: pegada arriba → espacio blanco en la parte inferior de su columna */
.industrial-images-stack__top {
    flex: 1;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
}

/* Imagen 2: pegada abajo → espacio blanco en la parte superior de su columna */
.industrial-images-stack__bottom {
    flex: 1;
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
}

.industrial-images-stack__top img,
.industrial-images-stack__bottom img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

.industrial-images-stack__top img {
    object-position: top left;
}

.industrial-images-stack__bottom img {
    object-position: bottom right;
}

@media (max-width: 1024px) {
    .industrial-images-stack {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .industrial-images-stack {
        flex-direction: column;
        max-width: 100%;
        height: auto;
        min-height: 0;
        align-items: center;
        gap: 20px;
    }

    .industrial-images-stack__top,
    .industrial-images-stack__bottom {
        max-width: 280px;
        width: 100%;
        min-height: 0;
        height: auto;
    }

    .industrial-images-stack__top img,
    .industrial-images-stack__bottom img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .industrial-image {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .industrial-image {
        max-width: 320px;
    }
}

@media (max-width: 360px) {
    .industrial-image {
        max-width: 280px;
    }
}

/* --- WHY PROCUREMENT SECTION (Dual Column) --- */
.why-procurement-section {
    padding: 0;
    width: 100%;
}

.dual-column-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 850px;
    width: 100%;
    min-width: 0;
    margin: 0 auto -45px;
}

.procurement-col-left {
    padding: 70px 40px 80px 0;
    min-width: 0;
}

.procurement-col-right {
    padding: 70px 0 100px;
    position: relative;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    max-height: 91%;
    min-width: 0;
}



.procurement-check-list {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.procurement-check-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.procurement-check-list .check-icon {
    color: var(--primary-green);
    font-weight: 900;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: -3px;
}

.procurement-check-list .item-content strong {
    display: block;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
}

.procurement-check-list .item-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
    padding-left: 0;
    max-width: none;
}

.procurement-bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.procurement-bullet-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.procurement-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 1.3rem;
}

.procurement-col-right p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 30px;
    padding-left: 0;
    max-width: none;
}

@media (max-width: 1024px) {
    .dual-column-info {
        grid-template-columns: 1fr;
    }

    .procurement-col-left,
    .procurement-col-right {
        padding: 60px 5%;
    }
}

/* --- LONG-TERM SECTION (Banner style) --- */
.long-term-section {
    padding: 0 0 60px 0;
}

.long-term-banner {
    position: relative;
    z-index: 2;
    min-height: 600px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 60px 40px;
    box-sizing: border-box;
    background-color: transparent;
    box-shadow: none;
}

.long-term-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.long-term-header,
.long-term-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.long-term-header {
    margin-bottom: 24px;
}

.long-term-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.long-term-title-green {
    color: var(--primary-green);
    font-size: inherit;
}

.long-term-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.long-term-btn-wrapper {
    text-align: center;
    padding: 32px 20px 0 20px;
}

.long-term-btn {
    border-radius: 0px;
    font-size: 1.2rem;
    padding: 10px 30px;
}

@media (max-width: 1400px) {
    .long-term-banner {
        width: calc(100% - 160px);
        margin-left: 80px;
        margin-right: 80px;
    }

    .long-term-btn-wrapper {
        padding: 32px 80px 0 80px;
    }
}

@media (max-width: 768px) {
    .long-term-banner {
        min-height: 280px;
        width: calc(100% - 48px);
        margin-left: 24px;
        margin-right: 24px;
    }

    .long-term-banner {
        padding: 44px 20px;
    }

    .long-term-btn-wrapper {
        padding: 24px 24px 0 24px;
    }

    .long-term-section {
        padding-bottom: 48px;
    }
}

@media (max-width: 480px) {
    .long-term-banner {
        min-height: 220px;
        width: calc(100% - 32px);
        margin-left: 16px;
        margin-right: 16px;
    }

    .long-term-banner {
        padding: 36px 16px;
    }

    .long-term-btn-wrapper {
        padding: 20px 16px 0 16px;
    }

    .long-term-section {
        padding-bottom: 40px;
    }

    .long-term-title {
        font-size: 1.4rem;
    }

    .long-term-title-green {
        font-size: 1.6rem;
    }

    .long-term-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .long-term-banner {
        width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
        min-height: 200px;
    }

    .long-term-banner {
        padding: 28px 12px;
    }

    .long-term-btn-wrapper {
        padding: 16px 12px 0 12px;
    }
}

/* --- SECCIÓN ALIGNED (Staggered Images) --- */
.aligned-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;
    align-items: center;
}

.staggered-images {
    position: relative;
    height: 550px;
    width: 100%;
}

.img-large {
    width: 340px;
    max-width: 80%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.img-small {
    width: 280px;
    max-width: 60%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.staggered-images img {
    box-shadow: none;
}

.aligned-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

/* --- QUOTE SECTION: imagen de fondo en toda la sección --- */
.quote-section.newsletter-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.quote-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.quote-section.newsletter-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.newsletter-grid-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .newsletter-grid-container {
        flex-direction: row;
        min-height: 480px;
        max-width: 850px;
        align-items: stretch;
    }
}

@media (max-width: 899px) {
    .quote-section-bg {
        display: block;
        /* Ensure it stays visible */
    }
}

@media (max-width: 480px) {
    .quote-section.newsletter-section {
        min-height: auto;
    }
}

/* Left Side */
.newsletter-left {
    flex: 1;
    padding: 60px 40px 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    min-width: 0;
}

@media (max-width: 768px) {
    .newsletter-left {
        padding: 50px 5%;
    }
}

@media (max-width: 480px) {
    .newsletter-left {
        padding: 40px 20px;
    }
}

.newsletter-content-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    min-width: 0;
    font-weight: 200;
}

.newsletter-title-left {
    font-size: 1.6rem;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin: 0;
    text-transform: none;
    text-align: left;
}

.highlight-green-box {
    color: #0BA14A;
    background-color: transparent;
    padding: 0;
    font-weight: 800;
}

/* Quote section: recuadro verde con texto blanco (como en la referencia) */
.quote-section .highlight-green-box {
    background-color: #0BA14A;
    color: white;
    padding: 4px 8px;
    line-height: 1.65;
}

/* Padding del contenido de la quote section (solo escritorio, no móvil) */
@media (min-width: 769px) {
    .quote-section .newsletter-left {
        padding-left: 0;
        padding-right: 40px;
    }
}

/* Título quote MEA: una sola línea, tipografía más contenida */
.quote-section .award-title-wrapper {
    display: block;
    min-width: 0;
}

.quote-section .award-title-wrapper .newsletter-title-left--mea-delivery-line {
    display: block;
    margin: 0;
    font-size: clamp(0.72rem, 2.05vw, 1.22rem);
    line-height: 1.2;
    color: #333333;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.quote-section .award-title-wrapper .newsletter-title-left--mea-delivery-line .quote-delivery-title-accent {
    color: #0BA14A;
    background-color: transparent;
    padding: 0;
    font-weight: 800;
}

@media (max-width: 768px) {
    .quote-section .award-title-wrapper .newsletter-title-left--mea-delivery-line {
        font-size: clamp(0.72rem, 4vw, 1.12rem);
    }
}

.quote-section .newsletter-content-left .newsletter-text {
    font-size: 0.93rem;
    line-height: 1.28;
}

.quote-section .whatsapp-btn {
    font-size: 0.95rem;
}

.quote-section .whatsapp-text {
    white-space: nowrap;
}

.quote-section .newsletter-content-left .award-header {
    align-items: center;
}

.quote-section .newsletter-content-left .award-header .arrow-icon.triangle-icon {
    margin-top: 0;
}

.newsletter-text {
    font-size: 1.13rem;
    color: #4f4f4f;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.newsletter-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-bullet-list li {
    position: relative;
    padding-left: 30px;
    padding-bottom: -7px;
    margin-bottom: 5px;
    font-size: 1.13rem;
    color: #4f4f4f;
    text-align: left;
    line-height: 1.1;
}

.newsletter-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

/* Botón WhatsApp: icono por fuera (círculo), de él sale el banner con el texto */
.whatsapp-btn {
    display: inline-flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    width: fit-content;
    transition: transform 0.3s ease;
    margin-top: 1rem;
    overflow: visible;
}

.whatsapp-btn:hover {
    transform: scale(1.03);
}

/* Icono verde más grande, sin fondo; el banner sale de su borde derecho */
.whatsapp-icon-bg {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    flex-shrink: 0;
    min-height: 32px;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    color: #0BA14A;
}

/* Banner que sale del icono: borde izquierdo con corte semicircular (como la línea azul curva) */
.whatsapp-text {
    display: inline-flex;
    align-items: center;
    padding: 0 32px 0 28px;
    min-height: 32px;
    line-height: 1;
    background-color: #0BA14A;
    border-radius: 0 12px 12px 0;
    margin-left: -12px;
    position: relative;
    z-index: 0;
    clip-path: url(#whatsapp-banner-clip);
}

/* Right Side */
.newsletter-right {
    flex: 1;
    position: relative;
    padding: 60px 0 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    min-width: 0;
}

.newsletter-right .newsletter-content-right {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .newsletter-right {
        padding: 50px 5%;
    }
}

@media (max-width: 480px) {
    .newsletter-right {
        padding: 80px 20px;
    }

    .newsletter-content-right {
        max-width: 100%;
    }
}

.newsletter-content-right {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.newsletter-title-right {
    font-size: clamp(1.4rem, 6vw, 2.2rem);
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-form * {
    box-sizing: border-box;
}

.newsletter-input {
    padding: 16px 20px;
    border: 1px solid #999;
    border-radius: 0;
    font-size: 1.1rem;
    outline: none;
    background: white;
    width: 100%;
    font-family: 'Sofia Pro', sans-serif;
    box-sizing: border-box;
}

.newsletter-input:focus {
    border-color: #0BA14A;
}

/* Formulario quote (columna derecha): campos más bajos y textarea al alto de un input */
.quote-section .newsletter-form {
    gap: 14px;
}

.quote-section .newsletter-form .newsletter-input {
    padding: 10px 14px;
    font-size: 0.98rem;
    line-height: 1.35;
}

.quote-section .newsletter-form input.newsletter-input,
.quote-section .newsletter-form textarea.newsletter-input {
    min-height: 42px;
}

.quote-section .newsletter-form textarea.newsletter-input {
    height: 42px;
    max-height: 42px;
    resize: none;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
}

.newsletter-submit-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #0BA14A;
    color: #0BA14A;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin: 10px auto 0 0;
}

@media (max-width: 900px) {
    .newsletter-submit-btn {
        margin: 10px auto;
        width: 100%;
    }
}

.newsletter-submit-btn:hover {
    background-color: #0BA14A;
    color: white;
}

/* --- FOOTER (Estilo Nuevo) --- */
footer#footer {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    padding: 60px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-width: 0;
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 16px;
    }
}

.footer-left {
    position: relative;
    display: flex;
    flex-direction: column;
}

.footer-watermark {
    font-size: 8rem;
    font-weight: 900;
    color: #f7f7f7;
    line-height: 1;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    user-select: none;
    letter-spacing: -5px;
}

.footer-company-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 5px;
}

.footer-info {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.footer-links {
    font-size: 0.9rem;
    color: #888;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0BA14A;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.footer-social img {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@media (max-width: 768px) {
    footer#footer {
        padding: 48px 0;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-right {
        text-align: center;
        align-items: center;
    }

    .footer-watermark {
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    footer#footer {
        padding: 40px 0;
    }

    .footer-container {
        gap: 32px;
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
    }

    .footer-watermark {
        font-size: 4rem;
    }

    .footer-company-name {
        font-size: 1.2rem;
    }

    .footer-logo {
        height: 38px;
    }

    .footer-info,
    .footer-links {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .footer-watermark {
        font-size: 3rem;
    }

    .footer-company-name {
        font-size: 1.1rem;
    }
}

/* --- INDUSTRIAL SECTION REFINED --- */
.industrial-section-full-width {
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
}

.industrial-content-full-width {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
}

.industrial-text-full-width {
    width: 100%;
    max-width: 100%;
}

.industrial-text-full-width p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 100%;
}

@media (max-width: 1040px) {
    .industrial-content-full-width {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .industrial-content-full-width {
        padding: 0 24px;
    }

    .industrial-text-full-width p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .industrial-content-full-width {
        padding: 0 20px;
    }
}

/* --- RESPONSIVE GLOBAL --- */
@media (max-width: 1200px) {
    .grid-2 {
        gap: 60px;
    }
}

@media (max-width: 1024px) {

    .grid-2,
    .aligned-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industrial-content p {
        max-width: 100%;
    }

    .industrial-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .industrial-content .btn {
        align-self: center;
    }

    .staggered-images {
        height: 400px;
    }

    .img-large {
        width: 250px;
    }

    .img-small {
        width: 200px;
    }

    .form-container.newsletter-right {
        width: 100%;
        margin-right: 0;
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .award-header {
        gap: 12px;
        align-items: flex-start;
    }

    .why-procurement-section .procurement-col-left .award-header {
        align-items: center;
    }

    .arrow-icon.triangle-icon {
        border-top-width: 15px;
        border-bottom-width: 15px;
        border-left-width: 12px;
    }

    .grid-2 {
        gap: 36px;
    }

    .btn {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 48px 0;
    }

    .hero-title-small {
        font-size: 1.2rem;
    }

    .industrial-content p,
    .industrial-subtitle,
    .aligned-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-left: 24px;
    }

    .industrial-list {
        padding-left: calc(24px + 1.35em);
    }

    .newsletter-title-left {
        font-size: 1.6rem;
    }

    .quote-section .award-title-wrapper .newsletter-title-left--mea-delivery-line {
        font-size: clamp(0.68rem, 3.5vw, 1.05rem);
    }

    .quote-section .newsletter-content-left .newsletter-text {
        font-size: 0.9rem;
    }

    .newsletter-text {
        font-size: 1.1rem;
    }

    .newsletter-content-left {
        align-items: flex-start;
        text-align: left;
    }

    .whatsapp-btn {
        margin-left: auto;
        margin-right: auto;
        align-self: center;
        max-width: 100%;
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .quote-section .whatsapp-text {
        white-space: normal;
        text-align: left;
    }

    .grid-2 {
        gap: 28px;
    }

    .intro-question {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }

    .intro-text {
        font-size: 1rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 360px) {
    .section-padding {
        padding: 40px 0;
    }

    .newsletter-title-left {
        font-size: 1.4rem;
    }
}

@media (min-width: 2000px) {
    .footer-container {
        max-width: 1800px;
    }

    .footer-logo {
        height: 65px;
        margin-bottom: 10px;
    }

    .footer-info,
    .footer-links {
        font-size: 1.1rem;
    }

    .footer-social {
        gap: 18px;
        margin-top: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-company-name {
        font-size: 2.8rem;
    }

    .footer-watermark {
        font-size: 14rem;
    }
}

/* --- CONTENT PAGES (FAQ, PRIVACY, TERMS) --- */
.content-page {
    max-width: 850px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.content-page p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-page li {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.content-page h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .content-page {
        padding: 0 24px;
    }

    .content-page p {
        font-size: 1.1rem;
    }

    .content-page li {
        font-size: 1.1rem;
        line-height: 1.3;
        margin-bottom: 0.4rem;
    }

    .content-page h3 {
        font-size: 1.3rem;
    }
}

/* Bulk MEA — legal / FAQ: cuerpo más compacto (no afecta .secondary-hero) */
body.bulk-mea-subpage main .content-page p,
body.bulk-mea-subpage main .content-page li {
    font-size: 0.92rem;
    line-height: 1.48;
}

body.bulk-mea-subpage main .content-page h3 {
    font-size: 1.05rem;
}

@media (max-width: 768px) {

    body.bulk-mea-subpage main .content-page p,
    body.bulk-mea-subpage main .content-page li {
        font-size: 0.85rem;
        line-height: 1.38;
    }

    body.bulk-mea-subpage main .content-page h3 {
        font-size: 0.95rem;
    }
}

/* --- Bulk MEA: hero diagonal (referencia LP) --- */
.hero.banner-wrapper.hero-banner-mea {
    background-color: #ffffff;
    isolation: isolate;
    justify-content: flex-end;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-banner-mea .banner-media--mea-diagonal {
    z-index: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 75% 100%);
    -webkit-clip-path: polygon(35% 0%, 100% 0%, 100% 100%, 75% 100%);
}

.hero-banner-mea .banner-media--mea-diagonal img.banner-bg-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 85% center;
    filter: none;
}

.hero-banner-mea .banner-brand-mark {
    position: absolute;
    top: clamp(20px, 3.5vw, 48px);
    left: max(clamp(20px, 4vw, 56px), env(safe-area-inset-left, 0px));
    z-index: 4;
    line-height: 0;
}

.hero-banner-mea .banner-brand-mark__img {
    display: block;
    height: clamp(44px, 7vw, 72px);
    width: auto;
    max-width: min(88px, 18vw);
}

.hero-banner-mea .banner-text-content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: none;
    width: 100%;
    padding: clamp(88px, 14vh, 160px) clamp(20px, 5vw, 72px) clamp(32px, 7vh, 96px);
    padding-right: max(clamp(20px, 5vw, 72px), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.hero-banner-mea .banner-title-block {
    max-width: min(100%, 52rem);
    padding-right: 1rem;
}

.hero-banner-mea .banner-title-primary--mea {
    font-size: clamp(2.25rem, 5.2vw, 4.25rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0BA14A;
    line-height: 1.05;
}

.hero-banner-mea .banner-hero-subtitle--mea {
    font-size: clamp(0.95rem, 1.35vw, 1.15rem);
    font-weight: 500;
    color: #555;
    margin-top: 1rem;
    max-width: 28em;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero-banner-mea .banner-media--mea-diagonal {
        clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 62% 100%);
        -webkit-clip-path: polygon(42% 0%, 100% 0%, 100% 100%, 62% 100%);
    }

    .hero-banner-mea .banner-text-content {
        padding-bottom: clamp(28px, 10vh, 72px);
        padding-left: max(clamp(20px, 5vw, 48px), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(20px, 5vw, 48px), env(safe-area-inset-right, 0px));
    }

    .hero-banner-mea .banner-title-primary--mea {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-banner-mea .banner-media--mea-diagonal {
        clip-path: polygon(48% 0%, 100% 0%, 100% 100%, 58% 100%);
        -webkit-clip-path: polygon(48% 0%, 100% 0%, 100% 100%, 58% 100%);
    }

    .hero-banner-mea .banner-text-content {
        padding-left: max(16px, env(safe-area-inset-left, 0px));
        padding-right: max(16px, env(safe-area-inset-right, 0px));
    }

    .hero-banner-mea .banner-hero-subtitle--mea {
        font-size: 0.88rem;
    }
}

/* --- Bulk MEA: intro (título, lead y cuerpo centrados) --- */
.intro-section.intro-section--mea {
    padding-top: clamp(56px, 8vw, 96px);
    padding-bottom: clamp(48px, 7vw, 80px);
    margin-bottom: 0;
}

.intro-section--mea .intro-section__inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    text-align: center;
}

.intro-section--mea .intro-section__title {
    text-align: center;
    margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem);
    max-width: 52rem;
    font-family: 'Montserrat', sans-serif;
}

.intro-section--mea .intro-section__title-line {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-size: clamp(1rem, 2.1vw, 1.35rem);
}

.intro-section--mea .intro-section__title-line--black {
    color: #111111;
}

.intro-section--mea .intro-section__title-line--green {
    color: #0BA14A;
    margin-top: 0.35em;
}

.intro-section--mea .intro-section__lead {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    font-weight: 700;
    color: #666666;
    line-height: 1.5;
    margin: 0 auto 1.5rem;
    max-width: 40rem;
}

.intro-section--mea .intro-section__body {
    text-align: center;
}

.intro-section--mea .intro-section__body p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 400;
    color: #555555;
    line-height: 1.65;
    margin: 0 auto 1.35rem;
    max-width: 48rem;
    text-align: center;
}

.intro-section--mea .intro-section__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .intro-section--mea .intro-section__title-line {
        font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    }
}

/* N-Butyl-Acetate: menos aire entre intro y bloque México + imagen */
.page-etac .intro-section.intro-section--mea.section-padding {
    padding-bottom: clamp(20px, 3vw, 36px);
}

.page-etac .intro-section--mea .intro-section__body p {
    font-size: clamp(0.95rem, 1.12vw, 1.06rem);
    color: #333333;
}

.page-etac .intro-section--mea .intro-section__body p strong {
    font-weight: 700;
    color: #111111;
}

.page-etac .intro-section--mea .intro-section__inner {
    padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
    padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
}

.page-etac .gly-mx-split.section-padding {
    padding-top: clamp(60px, 8vw, 100px);
}

/* --- N-Butyl-Acetate: bloque dos columnas (texto + imagen), mismo ancho que intro (900px) --- */
.page-etac .gly-mx-split {
    background: #ffffff;
}

.page-etac .gly-mx-split__inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4.5vw, 52px);
    align-items: stretch;
}

.page-etac .gly-mx-split__copy {
    position: relative;
    text-align: left;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: clamp(-40px, -5vw, -28px);
}

.page-etac .gly-mx-split__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    margin-bottom: 0;
    margin-left: clamp(-56px, -6.5vw, -46px);
}

.page-etac .gly-mx-split__header-icon {
    flex-shrink: 0;
    width: auto;
    height: 0.72em;
    display: block;
    object-fit: contain;
    object-position: left center;
    font-size: clamp(0.62rem, 1.3vw + 0.22rem, 0.98rem);
}

.page-etac .gly-mx-split__heading {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(0.62rem, 1.3vw + 0.22rem, 0.98rem);
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111111;
    white-space: nowrap;
}

.page-etac .gly-mx-split__divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: clamp(0.65rem, 1.4vw, 0.9rem) 0 clamp(0.85rem, 1.8vw, 1.1rem);
    border: 0;
    background-color: #0BA14A;
    opacity: 0.9;
}

.page-etac .gly-mx-split__text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 1.1rem;
    text-align: justify;
}

.page-etac .gly-mx-split__text:last-child {
    margin-bottom: 0;
}

.page-etac .gly-mx-split__text strong {
    font-weight: 700;
    color: #111111;
}

.page-etac .gly-mx-split__media-wrap {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.page-etac .gly-mx-split__media {
    position: relative;
    display: block;
    line-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.page-etac .gly-mx-split__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.page-etac .gly-mx-split__media-wrap {
    margin-right: clamp(-40px, -5vw, -24px);
}

@media (max-width: 768px) {
    .page-etac .gly-mx-split__inner {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
        padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
    }

    .page-etac .gly-mx-split__media-wrap {
        order: -1;
        margin-right: 0;
    }

    .page-etac .gly-mx-split__copy {
        margin-left: 0;
    }

    .page-etac .gly-mx-split__header {
        margin-left: 0;
    }

    .page-etac .gly-mx-split__heading {
        white-space: normal;
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
        overflow: hidden;
    }

    .page-etac .gly-mx-split__header-icon {
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
    }

    .page-etac .gly-mx-split__img {
        height: auto;
        object-fit: contain;
    }
}

/* --- Bulk MEA: "Why buyers rely on…" (fondo imagen-1, ancho 900px) --- */
.mea-buyers-section {
    background-color: #ffffff;
}

.mea-buyers-section__backdrop {
    position: relative;
    overflow: hidden;
    background-color: #d0d0d0;
    min-height: min(520px, 75vh);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 4vw, 24px);
    padding-right: clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mea-buyers-section__backdrop.section-padding {
    padding-top: clamp(48px, 6.5vw, 72px);
    padding-bottom: clamp(48px, 6.5vw, 72px);
}

.mea-buyers-section__sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.mea-buyers-section__inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.mea-buyers-section__title {
    text-align: center;
    margin: 0 auto clamp(1.75rem, 3.5vw, 2.75rem);
    max-width: 52rem;
    font-family: 'Montserrat', sans-serif;
}

.mea-buyers-section__title-line {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    font-size: clamp(1rem, 2.1vw, 1.35rem);
}

.mea-buyers-section__title-line--black {
    color: #111111;
}

.mea-buyers-section__title-line--green {
    color: #0BA14A;
    margin-top: 0.35em;
}

.mea-buyers-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.mea-buyers-section__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.1rem;
}

.mea-buyers-section__item:last-child {
    margin-bottom: 0;
}

.mea-buyers-section__check {
    flex-shrink: 0;
    margin-top: 0.15em;
    line-height: 0;
}

.mea-buyers-section__check-svg {
    display: block;
}

.mea-buyers-section__item-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 400;
    color: #555555;
    line-height: 1.55;
}

.mea-buyers-section__footnote {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    font-weight: 700;
    color: #555555;
    line-height: 1.65;
    text-align: left;
    max-width: 100%;
    margin-top: clamp(1.75rem, 3vw, 2.5rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .mea-buyers-section__title-line {
        font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    }
}

/* --- Bulk MEA: imagen + aplicaciones de alto volumen (dos columnas) --- */
.mea-volume-split {
    background-color: #ffffff;
}

.mea-volume-split__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(32px, 5.5vw, 60px);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 24px);
    box-sizing: border-box;
    align-items: stretch;
}

.mea-volume-split__col--media {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.mea-volume-split__img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    padding-left: clamp(110px, 2.4vw, 130px);
}

.mea-volume-split__col--copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (min-width: 769px) {
    .mea-volume-split__col--copy {
        padding-left: clamp(4px, 1.2vw, 14px);
        box-sizing: border-box;
    }
}

.mea-volume-split__header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.mea-volume-split__header .arrow-icon.triangle-icon {
    margin-top: 0;
    flex-shrink: 0;
}

.mea-volume-split .award-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
    min-width: 0;
}

.mea-volume-split__title-line {
    font-size: clamp(0.82rem, 2.35vw, 1.12rem);
    margin: 0;
    line-height: 1.15;
    color: #111111;
}

.mea-volume-split__title-line .highlight-green-box {
    color: #0BA14A;
}

.mea-volume-split__lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555555;
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.mea-volume-split__lead strong {
    font-weight: 600;
    color: #555555;
}

.mea-volume-split__list {
    list-style: none;
    margin: 0 0 1.15rem;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #555555;
}

.mea-volume-split__list li {
    position: relative;
    padding-left: 1.05em;
    margin-bottom: 0.1em;
    line-height: 1.12;
}

.mea-volume-split__list li:last-child {
    margin-bottom: 0;
}

.mea-volume-split__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555555;
}

.mea-volume-split__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.55;
    margin: 0 0 1rem;
}

.mea-volume-split__text:last-child {
    margin-bottom: 0;
}

.mea-volume-split__text strong {
    color: #555555;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mea-volume-split__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .mea-volume-split__col--media {
        min-height: min(320px, 42vh);
        order: -1;
    }

    .mea-volume-split__img {
        min-height: 260px;
    }
}

/* --- Bulk MEA 99% LP: tablet quote + ajustes móvil --- */
@media (min-width: 481px) and (max-width: 899px) {
    .quote-section.newsletter-section .newsletter-left,
    .quote-section.newsletter-section .newsletter-right {
        padding-left: clamp(16px, 5vw, 32px);
        padding-right: clamp(16px, 5vw, 32px);
    }

    .quote-section .newsletter-left {
        padding-top: clamp(40px, 6vw, 50px);
        padding-bottom: clamp(40px, 6vw, 50px);
    }
}

@media (max-width: 430px) {
    .hero-banner-mea .banner-title-primary--mea {
        font-size: clamp(1.45rem, 7.4vw, 2.2rem);
    }

    .mea-buyers-section__backdrop {
        min-height: min(440px, 68vh);
    }
}

/* --- N-Butyl-Acetate (LP) --- */
body.etac-subpage main .content-page p,
body.etac-subpage main .content-page li {
    font-size: 0.92rem;
    line-height: 1.48;
}

body.etac-subpage main .content-page h3 {
    font-size: 1.05rem;
}

@media (max-width: 768px) {

    body.etac-subpage main .content-page p,
    body.etac-subpage main .content-page li {
        font-size: 0.85rem;
        line-height: 1.38;
    }

    body.etac-subpage main .content-page h3 {
        font-size: 0.95rem;
    }
}

/* Banner N-Butyl-Acetate: ancho igual (100%), alto completo de la imagen (sin recorte vertical) */
.page-etac .hero.banner-wrapper.hero-banner-gly-only {
    background-color: #0a3d24;
    isolation: isolate;
    justify-content: flex-start;
    align-items: stretch;
    height: auto;
    min-height: 0;
}

.page-etac .hero-banner-gly-only .banner-media--gly-full {
    position: relative;
    z-index: 0;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    clip-path: none;
    -webkit-clip-path: none;
}

.page-etac .hero-banner-gly-only .banner-media--gly-full img.banner-bg-image--gly-cover,
.page-etac .hero-banner-gly-only .banner-media--gly-full img.banner-bg-image {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: unset;
    object-position: unset;
    filter: none;
    display: block;
}

.page-etac .banner-brand-stack {
    position: absolute;
    top: clamp(75px, 10vw, 110px);
    left: max(clamp(125px, 6vw, 155px), env(safe-area-inset-left, 0px));
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(6px, 1.2vw, 12px);
    line-height: 0;
    text-decoration: none;
}

.page-etac .banner-brand-stack__logo {
    display: block;
    width: clamp(82px, 13vw, 142px);
    height: auto;
    max-width: min(150px, 38vw);
    flex-shrink: 0;
    margin-left: clamp(-4px, -0.5vw, 0px);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* SLES 70%: banner a imagen + logo arriba a la izquierda (no afecta Acetato de Etilo) */
.page-sles-70 .hero-banner-gly-only .banner-media--gly-full {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-sles-70 .hero-banner-gly-only .banner-media--gly-full img.banner-bg-image--gly-cover,
.page-sles-70 .hero-banner-gly-only .banner-media--gly-full img.banner-bg-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-sles-70 .banner-brand-stack {
    top: max(clamp(10px, 2.5vw, 22px), env(safe-area-inset-top, 0px));
    left: max(clamp(10px, 2.5vw, 22px), env(safe-area-inset-left, 0px));
}

.page-sles-70 .banner-brand-stack__logo {
    width: clamp(52px, 7.5vw, 92px);
    max-width: min(96px, 26vw);
}

/* N-Butyl-Acetate: bloque "Por qué elegir" + contacto (referencia LP, sin hueco entre secciones) */
.page-etac .gly-lp-stack {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    box-sizing: border-box;
}

.page-etac .gly-por-que {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0BA14A;
}

.page-etac .gly-por-que__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-etac .gly-por-que__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    /* Mismo ancho y márgenes que .etac-dual-panel > div (max-width: 900px; padding: 0 24px) */
    max-width: 900px;
    margin: 0 auto;
    padding-top: clamp(44px, 6vw, 88px);
    padding-bottom: clamp(40px, 5.5vw, 72px);
    padding-left: max(24px, env(safe-area-inset-left, 0px));
    padding-right: max(24px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

.page-etac .gly-por-que__title {
    margin: 0 0 clamp(0.75rem, 1.4vw, 1rem);
    max-width: 100%;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.page-etac .gly-por-que__title-line {
    display: block;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.page-etac .gly-por-que__title-line--a {
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.35rem);
}

.page-etac .gly-por-que__title-line--b {
    margin-top: 0.2em;
    font-weight: 800;
    font-size: clamp(1.05rem, 2.2vw, 1.5rem);
}

.page-etac .gly-por-que__rule {
    display: block;
    width: min(11.5ch, 38%);
    max-width: 140px;
    height: 5px;
    margin-top: clamp(0.85rem, 1.6vw, 1.15rem);
    margin-bottom: clamp(1.35rem, 2.6vw, 2rem);
    margin-left: 0;
    margin-right: auto;
    border: 0;
    border-radius: 1px;
    background-color: #ffffff;
}

.page-etac .gly-por-que__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(6px, 1.2vw, 12px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.page-etac .gly-por-que__item {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.page-etac .gly-por-que__check {
    flex-shrink: 0;
    line-height: 0;
    margin-top: 0.12em;
}

.page-etac .gly-por-que__check img {
    display: block;
    width: clamp(15px, 1.9vw, 18px);
    height: auto;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.page-etac .gly-por-que__text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.72rem, 1.35vw + 0.2rem, 0.98rem);
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    overflow-wrap: break-word;
}

.page-etac .gly-por-que__text strong {
    color: #ffffff;
    font-weight: 700;
}

.page-etac .gly-footer-cta {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.page-etac .gly-footer-cta__bridge {
    position: absolute;
    z-index: 3;
    left: 0;
    top: clamp(-52px, -7vw, -36px);
    width: clamp(48px, 9vmin, 80px);
    height: clamp(48px, 9vmin, 80px);
    background-color: #0BA14A;
    pointer-events: none;
}

.page-etac .gly-footer-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(
            160deg,
            rgba(11, 161, 74, 0.3) 0%,
            rgba(11, 161, 74, 0.25) 50%,
            rgba(8, 130, 60, 0.35) 100%
        ),
        url('../Recursos/Formulario.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-etac .gly-footer-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(320px, 42vw, 480px);
    width: min(1180px, 100%);
    max-width: 100%;
    margin: 0 auto;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.page-etac .gly-footer-cta__col--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(40px, 5vw, 72px) max(clamp(16px, 3vw, 36px), env(safe-area-inset-right, 0px)) clamp(40px, 5vw, 72px) max(clamp(24px, 3.2vw, 44px), env(safe-area-inset-left, 0px));
    text-align: left;
}

.page-etac .gly-footer-cta__title {
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    max-width: 22rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.65vw, 1.2rem);
    line-height: 1.35;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.page-etac .gly-footer-cta__lead {
    margin: 0;
    max-width: 22rem;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.88rem, 1.15vw, 1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-etac .gly-footer-cta__lead strong {
    font-weight: 700;
    color: #ffffff;
}

.page-etac .gly-footer-cta__col--form {
    background-color: #e8e8e8;
    padding: clamp(36px, 5vw, 64px) max(clamp(24px, 4vw, 48px), env(safe-area-inset-right, 0px)) clamp(36px, 5vw, 64px) max(clamp(24px, 4vw, 48px), env(safe-area-inset-left, 0px));
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 100%;
}

.page-etac .gly-footer-cta__form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 1.5vw, 14px);
}

.page-etac .gly-footer-cta__input {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: clamp(12px, 1.6vw, 14px) clamp(14px, 2vw, 16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.95rem);
    color: #333333;
}

.page-etac .gly-footer-cta__input::placeholder {
    color: #9a9a9a;
}

.page-etac .gly-footer-cta__textarea {
    min-height: calc((clamp(12px, 1.6vw, 14px) * 2) + 1.45em + 2px);
    max-height: calc((clamp(12px, 1.6vw, 14px) * 2) + 1.45em + 2px);
    resize: none;
    line-height: 1.45;
    overflow-y: hidden;
}

.page-etac .gly-footer-cta__submit {
    align-self: flex-end;
    margin-top: clamp(4px, 1vw, 8px);
    padding: 0;
    border: none;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.15vw, 1.05rem);
    color: #0BA14A;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    text-decoration-color: #0BA14A;
    cursor: pointer;
}

.page-etac .gly-footer-cta__submit:hover {
    color: #067238;
    text-decoration-color: #067238;
}

@media (max-width: 1040px) {
    /* CTA apilada: fondo más "marca" y zona verde con altura agradable */
    .page-etac .gly-footer-cta__bg {
        background-image:
            linear-gradient(
                158deg,
                rgba(11, 161, 74, 0.33) 0%,
                rgba(7, 105, 58, 0.48) 42%,
                rgba(3, 52, 32, 0.66) 100%
            ),
            url('../Recursos/Formulario.webp');
        background-size: cover, cover;
        background-position: center, 52% 20%;
        background-repeat: no-repeat, no-repeat;
    }

    .page-etac .gly-footer-cta__bridge {
        left: max(0px, env(safe-area-inset-left, 0px));
        border-radius: 0 0 5px 0;
        box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
    }

    .page-etac .gly-footer-cta__inner {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 0;
    }

    .page-etac .gly-footer-cta__col--copy {
        position: relative;
        z-index: 1;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: auto;
        padding: clamp(40px, 8vw, 64px) max(clamp(22px, 5vw, 36px), env(safe-area-inset-left, 0px));
        box-shadow: none;
    }

    .page-etac .gly-footer-cta__title,
    .page-etac .gly-footer-cta__lead,
    .page-etac .gly-footer-cta__cta-line {
        text-align: center;
        max-width: 100%;
    }

    .page-etac .gly-footer-cta__col--form {
        padding: 0 max(clamp(20px, 5vw, 40px), env(safe-area-inset-right, 0px));
        padding-bottom: clamp(32px, 7vw, 48px);
    }

    .page-etac .gly-footer-cta__form {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-etac .gly-footer-cta__bg {
        background-image:
            linear-gradient(
                165deg,
                rgba(11, 161, 74, 0.4) 0%,
                rgba(6, 92, 52, 0.52) 40%,
                rgba(2, 44, 28, 0.72) 100%
            ),
            url('../Recursos/Formulario.webp');
        background-position: center, 50% 14%;
    }

    .page-etac .gly-footer-cta__col--copy {
        padding: clamp(32px, 8vw, 48px) max(clamp(20px, 6vw, 32px), env(safe-area-inset-left, 0px));
    }

    .page-etac .gly-footer-cta__col--form {
        padding: 0 max(clamp(16px, 5vw, 28px), env(safe-area-inset-right, 0px));
        padding-bottom: clamp(28px, 7vw, 40px);
    }

    .page-etac .gly-footer-cta__submit {
        align-self: center;
    }
}

@media (max-width: 520px) {
    .page-etac .gly-por-que__title-line--a,
    .page-etac .gly-por-que__title-line--b {
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
    }
}

.page-etac .gly-benefits {
    position: relative;
    overflow: hidden;
    background-color: #ececec;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: clamp(400px, 56vh, 680px);
}

.page-etac .gly-benefits__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.page-etac .gly-benefits__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: min(620px, calc(100% - clamp(32px, 8vw, 96px)));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(-12px, -1.1vh, -5px);
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
    box-sizing: border-box;
}

.page-etac .gly-benefits__heading {
    margin: 0 auto clamp(1rem, 2vw, 1.35rem);
    max-width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.52rem, 2.35vw + 0.28rem, 1.12rem);
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0d8a44;
    white-space: nowrap;
}

.page-etac .gly-benefits__divider {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 2px;
    margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
    border: 0;
    background-color: #0BA14A;
    opacity: 0.85;
}

.page-etac .gly-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
    align-items: start;
}

@media (max-width: 640px) {
    .page-etac .gly-benefits__grid {
        grid-template-columns: 1fr;
        gap: clamp(22px, 5vw, 32px);
    }
}

.page-etac .gly-benefits__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(12px, 2vw, 16px);
    text-align: left;
    min-width: 0;
}

.page-etac .gly-benefits__icon {
    flex-shrink: 0;
    width: clamp(26px, 4.2vw, 32px);
    height: clamp(26px, 4.2vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0BA14A;
    box-sizing: border-box;
}

.page-etac .gly-benefits__icon img {
    width: clamp(11px, 1.6vw, 14px);
    height: auto;
    display: block;
}

.page-etac .gly-benefits__copy {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.08vw, 1.02rem);
    font-weight: 400;
    line-height: 1.55;
    color: #222222;
}

.page-etac .gly-benefits__copy strong {
    font-weight: 700;
    color: #111111;
}

/* Beneficios + USOS: un poco más arriba dentro del fondo; sin hueco inferior hacia USOS */
.page-etac .gly-benefits.section-padding {
    padding-top: clamp(28px, 5vh, 68px);
    padding-bottom: 0;
}

.page-etac .mea-volume-split--gly-usos.section-padding {
    padding-top: 0;
}

.page-etac main.width-lock {
    margin-top: 0;
}

/* --- N-Butyl-Acetate: USOS CLAVES (texto + imagen, referencia LP) --- */
.page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(16px, 2.5vw, 32px);
    align-items: stretch;
    max-width: min(1040px, 100%);
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: 0;
    box-sizing: border-box;
}

.page-etac .mea-volume-split--gly-usos .mea-volume-split__col--media {
    height: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    overflow: visible;
    margin-top: clamp(-18px, -1.5vw, -6px);
    margin-left: clamp(-40px, -5vw, -24px);
}

.page-etac .mea-volume-split--gly-usos .mea-volume-split__col--copy {
    justify-content: flex-start;
    padding-left: 0;
    padding-top: 0;
    margin-left: clamp(-110px, -12vw, -90px);
}

/* USOS: una columna (texto arriba, foto abajo); anula el grid de 2 cols y el order:-1 del .mea-volume-split global */
@media (max-width: 900px) {
    .page-etac .mea-volume-split--gly-usos.section-padding {
        padding-bottom: clamp(20px, 5vw, 40px);
    }

    .page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
        grid-template-columns: 1fr;
        gap: clamp(22px, 5vw, 36px);
        max-width: 100%;
        padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
    }

    .page-etac .mea-volume-split--gly-usos .mea-volume-split__col--copy {
        order: 0;
        padding-top: clamp(0.75rem, 2.5vw + 0.35rem, 1.85rem);
        padding-bottom: 0;
        margin-left: 0;
    }

    .page-etac .mea-volume-split--gly-usos .mea-volume-split__col--media {
        order: 1;
        margin-top: 0;
        margin-left: 0;
        min-height: 0;
        align-self: center;
        width: 100%;
    }

    .page-etac .mea-volume-split--gly-usos .gly-usos-photo {
        flex: 0 0 auto;
        width: 100%;
        max-width: min(520px, 100%);
        height: auto;
        min-height: 0;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: 5 / 4;
        max-height: min(48vh, 420px);
        overflow: hidden;
        border-radius: 6px;
    }

    .page-etac .mea-volume-split--gly-usos .gly-usos-photo__img.mea-volume-split__img {
        padding-left: 0;
        width: 100%;
        height: 100%;
        flex: 1 1 auto;
        min-height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center 30%;
    }

    .page-etac .mea-volume-split--gly-usos .gly-usos-title {
        white-space: normal;
    }

    .page-etac .gly-usos-title.gly-usos-title--butac {
        white-space: normal;
        overflow: hidden;
        font-size: clamp(0.72rem, 4vw, 1rem);
    }
}

.page-etac .gly-usos-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(10px, 1.8vw, 14px);
}

.page-etac .gly-usos-marker {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.56rem, 1.35vw + 0.28rem, 1.02rem);
    width: auto;
    height: 0.78em;
    margin-top: 0.12em;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.page-etac .gly-usos-header__body {
    flex: 1;
    min-width: 0;
}

.page-etac .gly-usos-title {
    margin: 0 0 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.56rem, 1.35vw + 0.28rem, 1.02rem);
    line-height: 1.2;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: #111111;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .page-etac .gly-usos-title {
        white-space: normal;
        font-size: clamp(0.7rem, 3.4vw, 0.92rem);
    }

    .page-etac .gly-usos-marker {
        font-size: clamp(0.7rem, 3.4vw, 0.92rem);
    }
}

.page-etac .gly-usos-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 clamp(0.85rem, 1.8vw, 1.1rem);
    border: 0;
    background-color: #0BA14A;
    opacity: 0.9;
}

.page-etac .gly-usos-lead {
    margin: 0 0 clamp(1rem, 2vw, 1.35rem);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 0.98rem);
    font-weight: 400;
    line-height: 1.55;
    color: #222222;
    text-align: left;
}

.page-etac .gly-usos-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 1.6vw, 1.15rem);
}

.page-etac .gly-usos-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(12px, 1.8vw, 16px);
}

.page-etac .gly-usos-row__icon {
    flex-shrink: 0;
    width: clamp(40px, 5.2vw, 52px);
    height: auto;
    object-fit: contain;
}

.page-etac .gly-usos-row__text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.86rem, 1.03vw, 0.97rem);
    line-height: 1.5;
    font-weight: 400;
    color: #222222;
    text-align: left;
}

.page-etac .gly-usos-label {
    font-weight: 700;
    color: #0BA14A;
}

.page-etac .mea-volume-split--gly-usos .gly-usos-photo {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 0;
}

.page-etac .mea-volume-split--gly-usos .gly-usos-photo__img.mea-volume-split__img {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: 88% 32%;
    display: block;
}

/* --- N-Butyl-Acetate: responsive (desktop XL, iPad, iPhone 14 / Pro ~393px, safe areas) --- */
@media (min-width: 1400px) {
    .page-etac .gly-footer-cta__inner {
        width: min(1180px, calc(100% - clamp(48px, 6vw, 96px)));
    }
}

@media (max-width: 1024px) {
    .page-etac .gly-benefits__heading {
        white-space: normal;
        font-size: clamp(0.58rem, 2.65vw + 0.24rem, 1.02rem);
        line-height: 1.28;
        max-width: min(36rem, 100%);
    }

    .page-etac .gly-mx-split__inner {
        gap: clamp(22px, 4vw, 40px);
    }

}

@media (max-width: 900px) {
    .page-etac .gly-mx-split__inner {
        gap: clamp(18px, 4.5vw, 32px);
    }

    .page-etac .gly-footer-cta__bridge {
        width: clamp(36px, 8vmin, 64px);
        height: clamp(36px, 8vmin, 64px);
        top: clamp(-40px, -6vw, -28px);
    }
}

@media (max-width: 768px) {
    .page-etac .intro-section.intro-section--mea.section-padding {
        padding-top: clamp(40px, 10vw, 72px);
        padding-bottom: clamp(16px, 4vw, 28px);
    }

    .page-etac .gly-mx-split.section-padding {
        padding-top: clamp(16px, 4vw, 28px);
        padding-bottom: clamp(48px, 10vw, 72px);
    }

    .page-etac .gly-benefits.section-padding {
        padding-top: clamp(22px, 5vh, 48px);
    }

    .page-etac .gly-benefits__shell {
        max-width: min(620px, calc(100% - clamp(20px, 6vw, 40px)));
        padding-left: max(clamp(16px, 4vw, 28px), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(16px, 4vw, 28px), env(safe-area-inset-right, 0px));
    }

}

@media (max-width: 480px) {
    .page-etac .banner-brand-stack {
        top: clamp(44px, 11vw, 68px);
        left: max(clamp(10px, 3.5vw, 18px), env(safe-area-inset-left, 0px));
    }

    .page-etac .banner-brand-stack__logo {
        width: clamp(64px, 20vw, 108px);
        max-width: min(120px, 48vw);
    }

    /* SLES 70%: el bloque .page-etac de arriba sube el logo y lo agranda; aquí se restablece esquina + tamaño */
    .page-sles-70 .banner-brand-stack {
        top: max(clamp(8px, 2vw, 14px), env(safe-area-inset-top, 0px));
        left: max(clamp(8px, 2vw, 14px), env(safe-area-inset-left, 0px));
    }

    .page-sles-70 .banner-brand-stack__logo {
        width: clamp(34px, 9vw, 48px);
        max-width: min(48px, 20vw);
    }

    .page-etac .gly-por-que__inner {
        padding-top: clamp(28px, 8vw, 52px);
        padding-bottom: clamp(24px, 7vw, 44px);
    }

    .page-etac .gly-footer-cta__bg {
        background-position: center, 48% 10%;
    }

    .page-etac .gly-footer-cta__title,
    .page-etac .gly-footer-cta__lead {
        max-width: 100%;
    }

    .page-etac .gly-footer-cta__col--form {
        padding: clamp(28px, 6vw, 44px) max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px)) clamp(28px, 6vw, 44px) max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
    }
}

@media (max-width: 430px) {
    .page-etac .gly-por-que__text {
        font-size: clamp(0.78rem, 3.6vw, 0.92rem);
    }

    .page-etac .gly-por-que__title-line--a,
    .page-etac .gly-por-que__title-line--b {
        font-size: clamp(0.78rem, 3.8vw, 1rem);
    }

    .page-etac .gly-usos-title {
        font-size: clamp(0.66rem, 3.2vw, 0.88rem);
    }
}

@media (max-width: 390px) {
    .page-etac .gly-por-que__grid {
        gap: clamp(12px, 3.5vw, 18px);
    }

    .page-etac .gly-footer-cta__title {
        font-size: clamp(0.82rem, 4.2vw, 0.98rem);
    }
}

/* --- N-Butyl-Acetate: split invertido (imagen izq, texto der) --- */
.page-etac .gly-mx-split--reversed .gly-mx-split__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.page-etac .gly-mx-split--reversed .gly-mx-split__media-wrap {
    order: -1;
}

.page-etac .gly-mx-split--reversed .gly-mx-split__img {
    width: 100%;
    height: auto;
    display: block;
}

.page-etac .gly-mx-split--reversed .gly-mx-split__text {
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.page-etac .gly-mx-split--reversed .gly-mx-split__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-etac .gly-mx-split--reversed .gly-mx-split__inner {
        grid-template-columns: 1fr;
    }

    .page-etac .gly-mx-split--reversed .gly-mx-split__media-wrap {
        order: -1;
    }

    .page-etac .gly-mx-split--reversed .gly-mx-split__img {
        transform: none;
    }
}

/* --- N-Butyl-Acetate: título BUTAC negro/grueso + imagen derecha alineada --- */
.page-etac .gly-usos-title.gly-usos-title--butac {
    font-weight: 800;
    color: #111111;
    white-space: nowrap;
    font-size: clamp(0.62rem, 1.3vw + 0.22rem, 1rem);
    line-height: 1.3;
    letter-spacing: 0.02em;
    overflow: visible;
}

.page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
    align-items: center;
}

.page-etac .mea-volume-split--gly-usos .mea-volume-split__col--media {
    max-height: none;
    align-self: center;
}

.page-etac .mea-volume-split--gly-usos .gly-usos-photo {
    max-height: 100%;
    overflow: hidden;
}

.page-etac .mea-volume-split--gly-usos .gly-usos-photo__img.mea-volume-split__img {
    width: 92%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    padding-left: 0;
}

/* --- N-Butyl-Acetate: bloque verde "Aplicaciones industriales" --- */
.page-etac .butac-apps {
    background-color: #0BA14A;
    padding: clamp(40px, 5.5vw, 64px) 0;
}

.page-etac .butac-apps__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 max(clamp(40px, 6vw, 80px), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    text-align: center;
}

.page-etac .butac-apps__title {
    margin: 0 0 clamp(0.75rem, 1.6vw, 1.15rem);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #ffffff;
}

.page-etac .butac-apps__title-line {
    display: block;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.page-etac .butac-apps__title-line--bold {
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.4rem);
}

.page-etac .butac-apps__title-line--light {
    font-weight: 300;
    font-size: clamp(0.88rem, 1.6vw, 1.15rem);
    margin-top: 0.25em;
}

.page-etac .butac-apps__rule {
    display: block;
    width: clamp(56px, 9vw, 90px);
    height: 5px;
    margin: clamp(1rem, 2vw, 1.5rem) auto clamp(1.5rem, 3vw, 2.25rem);
    border: 0;
    border-radius: 1px;
    background-color: #ffffff;
}

.page-etac .butac-apps__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 32px);
}

.page-etac .butac-apps__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(8px, 1.2vw, 12px);
    text-align: left;
}

.page-etac .butac-apps__check {
    flex-shrink: 0;
    width: clamp(18px, 2.2vw, 22px);
    height: auto;
    margin-top: 0.1em;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.page-etac .butac-apps__label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 1.05vw, 0.95rem);
    font-weight: 600;
    line-height: 1.35;
    color: #ffffff;
}

@media (max-width: 640px) {
    .page-etac .butac-apps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .page-etac .butac-apps__grid {
        grid-template-columns: 1fr;
    }
}

/* --- N-Butyl-Acetate: beneficios operativos (fondo blanco, título verde) --- */
.page-etac .butac-benefits {
    background-color: #ffffff;
}

.page-etac .butac-benefits__inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
}

.page-etac .butac-benefits__heading {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0BA14A;
    text-align: left;
}

.page-etac .butac-benefits__rule {
    display: block;
    width: clamp(56px, 9vw, 90px);
    height: 5px;
    margin: clamp(1rem, 2vw, 1.5rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
    border: 0;
    border-radius: 1px;
    background-color: #0BA14A;
}

.page-etac .butac-benefits__lead {
    margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 400;
    color: #555555;
    line-height: 1.5;
    text-align: left;
}

.page-etac .butac-benefits__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 40px) clamp(24px, 3.5vw, 36px);
}

.page-etac .butac-benefits__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(10px, 1.4vw, 14px);
    text-align: left;
}

.page-etac .butac-benefits__check {
    flex-shrink: 0;
    width: clamp(20px, 2.4vw, 24px);
    height: auto;
    margin-top: 0.05em;
}

.page-etac .butac-benefits__label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 1.05vw, 0.96rem);
    font-weight: 600;
    line-height: 1.4;
    color: #111111;
}

@media (max-width: 768px) {
    .page-etac .butac-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .page-etac .butac-benefits__grid {
        grid-template-columns: 1fr;
    }
}

/* --- ETAC: panel doble (Soporte + Beneficios) --- */
.page-etac .etac-dual-panel {
    background-image: url('../Recursos/cuadro de texto.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-etac .etac-dual-panel__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    max-width: 960px;
    margin: 0 auto;
    padding: 0 max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
}

.page-etac .etac-dual-panel__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-etac .etac-dual-panel__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(0.88rem, 1.4vw, 1.1rem);
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #0BA14A;
}

.page-etac .etac-dual-panel__rule {
    display: block;
    width: 100%;
    height: 1px;
    margin: clamp(0.6rem, 1.2vw, 0.85rem) 0 clamp(0.85rem, 1.6vw, 1.1rem);
    border: 0;
    background-color: #0BA14A;
    opacity: 0.9;
}

.page-etac .etac-dual-panel__lead {
    margin: 0 0 clamp(0.75rem, 1.4vw, 1rem);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
}

.page-etac .etac-dual-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1vw, 10px);
}

.page-etac .etac-dual-panel__list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(8px, 1.2vw, 12px);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 600;
    color: #111111;
    line-height: 1.4;
}

.page-etac .etac-dual-panel__check {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.15em;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .page-etac .etac-dual-panel {
        background-size: cover;
        background-position: center top;
    }

    .page-etac .etac-dual-panel__inner {
        grid-template-columns: 1fr;
        gap: clamp(32px, 6vw, 48px);
        padding: 0 max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
    }

    .page-etac .etac-dual-panel__title {
        font-size: clamp(0.82rem, 4vw, 1rem);
    }

    .page-etac .etac-dual-panel__lead {
        font-size: clamp(0.78rem, 3.6vw, 0.88rem);
    }

    .page-etac .etac-dual-panel__list li {
        font-size: clamp(0.78rem, 3.6vw, 0.88rem);
    }
}

/* --- ETAC: Apoyo comercial (imagen izq + texto der) --- */
.page-etac .etac-apoyo {
    background-color: #ffffff;
}

.page-etac .etac-apoyo__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4.5vw, 52px);
    max-width: 960px;
    margin: 0 auto;
    padding: 0 max(clamp(20px, 4vw, 40px), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    align-items: center;
}

.page-etac .etac-apoyo__col--media {
    overflow: hidden;
    line-height: 0;
}

.page-etac .etac-apoyo__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.page-etac .etac-apoyo__col--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-etac .etac-apoyo__header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(6px, 1vw, 10px);
    margin-bottom: 0;
}

.page-etac .etac-apoyo__marker {
    flex-shrink: 0;
    width: auto;
    height: 0.72em;
    display: block;
    object-fit: contain;
    object-position: left center;
    font-size: clamp(0.62rem, 1.3vw + 0.22rem, 0.98rem);
    margin-top: 0.2em;
}

.page-etac .etac-apoyo__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(0.62rem, 1.3vw + 0.22rem, 0.98rem);
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111111;
    white-space: nowrap;
    overflow: visible;
}

.page-etac .etac-apoyo__rule {
    display: block;
    width: 100%;
    height: 1px;
    margin: clamp(0.6rem, 1.2vw, 0.85rem) 0 clamp(0.85rem, 1.6vw, 1.1rem);
    border: 0;
    background-color: #0BA14A;
    opacity: 0.9;
    margin-left: clamp(36px, 4vw, 46px);
}

.page-etac .etac-apoyo__text {
    margin: 0 0 1rem;
    margin-left: clamp(36px, 4vw, 46px);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    font-weight: 400;
    line-height: 1.55;
    color: #555555;
    text-align: justify;
}

.page-etac .etac-apoyo__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-etac .etac-apoyo__inner {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
        padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right, 0px));
    }

    .page-etac .etac-apoyo__col--media {
        order: -1;
    }

    .page-etac .etac-apoyo__img {
        width: 100%;
        max-width: min(520px, 100%);
        height: auto;
        margin: 0 auto;
        display: block;
        border-radius: 6px;
    }

    .page-etac .etac-apoyo__title {
        white-space: normal;
        font-size: clamp(0.82rem, 4.2vw, 1.05rem);
    }

    .page-etac .etac-apoyo__header {
        margin-left: 0;
    }

    .page-etac .etac-apoyo__rule {
        margin-left: 0;
    }

    .page-etac .etac-apoyo__text {
        margin-left: 0;
        font-size: clamp(0.78rem, 3.6vw, 0.88rem);
    }

    .page-etac .etac-apoyo__marker {
        width: clamp(22px, 5vw, 30px);
        height: auto;
    }
}

/* --- N-Butyl-Acetate: callout verde centrado --- */
.page-etac .butac-callout.section-padding {
    padding-top: 0;
    padding-bottom: clamp(20px, 3vw, 36px);
}

.page-etac .butac-callout {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-etac .butac-callout__inner {
    max-width: 580px;
    margin: 0 auto;
    padding: clamp(32px, 4.5vw, 48px) clamp(36px, 5vw, 60px);
    background-color: #0BA14A;
    box-sizing: border-box;
}

.page-etac .butac-callout__text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 768px) {
    .page-etac .butac-callout__inner {
        max-width: calc(100% - clamp(80px, 16vw, 160px));
    }
}

@media (max-width: 480px) {
    .page-etac .butac-callout__inner {
        max-width: calc(100% - 60px);
        padding: clamp(24px, 6vw, 36px) clamp(24px, 5vw, 36px);
    }
}

/* --- N-Butyl-Acetate: soporte (imagen izq + texto der) --- */
.page-etac .butac-soporte {
    background-color: #ffffff;
}

.page-etac .butac-soporte__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 60px);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 max(clamp(16px, 4vw, 24px), env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    align-items: center;
}

.page-etac .butac-soporte__col--media {
    overflow: hidden;
    line-height: 0;
}

.page-etac .butac-soporte__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-etac .butac-soporte__col--copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-etac .butac-soporte__header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(10px, 1.6vw, 14px);
}

.page-etac .butac-soporte__marker {
    flex-shrink: 0;
    width: auto;
    height: 0.78em;
    margin-top: 0.15em;
    display: block;
    object-fit: contain;
    font-size: clamp(0.72rem, 1.55vw + 0.28rem, 1.15rem);
}

.page-etac .butac-soporte__title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(0.72rem, 1.55vw + 0.28rem, 1.15rem);
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111111;
}

.page-etac .butac-soporte__rule {
    display: block;
    width: 100%;
    height: 1px;
    margin: clamp(0.75rem, 1.5vw, 1.1rem) 0 clamp(0.85rem, 1.8vw, 1.25rem);
    border: 0;
    border-radius: 0;
    background-color: #0BA14A;
    opacity: 0.9;
}

.page-etac .butac-soporte__text {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    font-weight: 400;
    line-height: 1.6;
    color: #555555;
    text-align: justify;
}

@media (max-width: 768px) {
    .page-etac .butac-soporte__inner {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 36px);
    }

    .page-etac .butac-soporte__col--media {
        order: -1;
        max-height: min(360px, 48vh);
    }
}

/* --- N-Butyl-Acetate: footer CTA ajustes --- */
.page-etac .gly-footer-cta__title {
    font-weight: 800;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    letter-spacing: 0.02em;
}

.page-etac .gly-footer-cta__lead {
    font-weight: 300;
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    line-height: 1.55;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.page-etac .gly-footer-cta__lead strong {
    font-weight: 300;
}

.page-etac .gly-footer-cta__cta-line {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(0.92rem, 1.15vw, 1.05rem);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-etac .gly-footer-cta__inner {
    align-items: center;
    gap: 0;
}

.page-etac .gly-footer-cta__col--copy {
    padding-left: clamp(60px, 9vw, 120px);
    padding-right: clamp(20px, 3vw, 40px);
}

.page-etac .gly-footer-cta__col--form {
    background-color: transparent;
    padding: 0 clamp(30px, 5vw, 60px) 0 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-etac .gly-footer-cta__form {
    max-width: 440px;
    width: 100%;
    background-color: #e8e8e8;
    padding: clamp(24px, 3vw, 36px) clamp(24px, 3.5vw, 40px);
    box-sizing: border-box;
}

.page-etac .gly-footer-cta__form {
    gap: clamp(8px, 1.2vw, 11px);
}

.page-etac .gly-footer-cta__input {
    padding: clamp(10px, 1.3vw, 12px) clamp(12px, 1.8vw, 14px);
    font-size: clamp(0.82rem, 0.95vw, 0.9rem);
}

@media (max-width: 1040px) {
    .page-etac .gly-footer-cta__col--form {
        padding: 0;
        justify-content: center;
    }

    .page-etac .gly-footer-cta__form {
        max-width: 420px;
        width: calc(100% - clamp(40px, 10vw, 80px));
        margin: 0 auto;
        padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 40px);
    }
}

@media (max-width: 480px) {
    .page-etac .gly-footer-cta__form {
        width: calc(100% - 48px);
        max-width: none;
        padding: clamp(24px, 5vw, 32px);
    }
}

.page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
    max-width: min(1200px, 100%);
    padding-left: clamp(24px, 12vw, 180px);
}

/* ── SLES 70% Responsive ── */

@media (max-width: 1024px) {
    .page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
        padding-left: 60px;
    }
}

@media (max-width: 768px) {
    .page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 480px) {
    .page-etac .mea-volume-split--gly-usos .mea-volume-split__inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}
