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

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-face {
    font-family: 'Sofia Pro';
    src: url('../res/fonts/SofiaPro/sofiapro-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

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

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

/* Imágenes: conservar formato original y relación de aspecto para no perder calidad */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

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

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

/* Texto alineado a la izquierda en main; contenedores siguen centrados con margin: auto */
main.width-lock .industries-banner {
    text-align: left;
}

main.width-lock .intro-title {
    text-align: left;
}

.container {
    max-width: 850px;
    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.di-alignment {
    padding: 40px 0 60px 0;
}

.di-alignment .container {
    max-width: 850px;
}

.industrial-section--bordered .grid-2 {
    gap: 60px;
    align-items: flex-start;
}

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

/* Market: columna imagen misma altura que texto (solo ≥1025px, grid en 2 cols) */
@media (min-width: 1025px) {
    .industrial-section--market.industrial-section--bordered.di-alignment .grid-2 {
        align-items: stretch;
    }

    .industrial-section--market .industrial-image {
        height: 100%;
        min-height: 0;
        align-self: stretch;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .industrial-section--market .industrial-image img {
        width: 100%;
        height: calc(100% - 1.75rem);
        max-width: none;
        max-height: calc(100% - 1.75rem);
        object-fit: cover;
        object-position: center;
    }
}

.industrial-text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industrial-section--centered .grid-2 {
    align-items: center;
}

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

.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 .container {
        padding-left: clamp(16px, 4vw, 40px);
        padding-right: clamp(16px, 4vw, 40px);
    }

    .industrial-section--bordered .grid-2 {
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .industrial-section--bordered .container {
        padding-left: 28px;
        padding-right: 28px;
    }

    .industrial-section--bordered .grid-2 {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .industrial-section--bordered .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .industrial-section--bordered .grid-2 {
        gap: 14px;
    }
}

/* --- HERO / BANNER (Estructura Greenchem) --- */
.hero.banner-wrapper {
    position: relative;
    min-height: 728px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 132px 0 72px 0;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero.banner-wrapper {
        min-height: 608px;
        height: auto;
        padding: 82px 0 44px 0;
    }
}

@media (max-width: 768px) {
    .hero.banner-wrapper {
        min-height: 518px;
        height: auto;
        padding: 68px 0 36px 0;
    }
}

@media (max-width: 480px) {
    .hero.banner-wrapper {
        min-height: 432px;
        height: auto;
        padding: 56px 0 30px 0;
    }
}

@media (max-width: 360px) {
    .hero.banner-wrapper {
        min-height: 392px;
        height: auto;
        padding: 46px 0 26px 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: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

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

.banner-footer-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 60px 28px 90px;
}

.logo-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    clip-path: polygon(55px 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.banner-footer-logo img {
    height: 45px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .banner-footer-logo {
        padding: 18px 30px 18px 60px;
    }

    .logo-bg-shape {
        clip-path: polygon(35px 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .banner-footer-logo img {
        height: 30px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.35);
    z-index: 1;
}

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

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

/* Banner text content - D-Limonene hero */
.banner-text-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1100px;
    padding: 44px max(40px, env(safe-area-inset-right, 0px)) 0 calc(115px + env(safe-area-inset-left, 0px));
    margin: 0 auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    width: 70px;
    height: auto;
    display: block;
}

/* Título estilo PROPYLENE / CARBONATE (dos líneas, contraste peso) */
.banner-title-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    margin: 0;
    margin-left: 0;
    padding-left: 0;
    color: #363636;
    font-family: 'Sofia Pro', sans-serif;
}

.banner-title-hero .banner-title-line1 {
    font-size: clamp(2.2rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
    color: #0BA14A
}

.banner-title-hero .banner-title-line1 + .banner-title-line1 {
    margin-top: 0.07em;
}

.banner-title-hero .banner-title-line2 {
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 10px 0 0;
    color: #333;
}

.banner-title-primary {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    color: #333333;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.1em 0;
    line-height: 0.95;
}

.banner-title-secondary {
    font-size: clamp(4rem, 4.5vw, 4.2rem);
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 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-title-text {
    margin-top: 0;
    margin-bottom: clamp(10px, 1.5vh, 18px);
    opacity: 0;
    animation: bannerSlideUp 0.7s ease-out forwards;
}

.banner-title-hero.banner-title-text {
    font-size: inherit;
}

.banner-text-content .banner-subheading {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1.1vw, 1.05rem);
    color: #333333;
    margin-top: 0.5em;
    line-height: 1;
    opacity: 0;
    animation: bannerSlideUp 0.6s ease-out 0.4s forwards;
}

.banner-description-container {
    align-self: flex-start;
    max-width: 450px;
    text-align: left;
    margin-top: 30px;
    padding-left: 0;
    padding-right: 51%;
}

.banner-description {
    font-family: 'Sofia Pro', sans-serif;
    font-weight: 400;
    font-size: clamp(0.1rem, 1.4vw, 1.3rem);
    color: #6a6a6a;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-align: left;
    opacity: 0;
    animation: bannerSlideUp 0.6s ease-out 0.7s forwards;
}

.banner-description strong {
    color: #131313;
}


@media (max-width: 1024px) {
    .banner-description-container {
        align-self: flex-end;
        text-align: left;
        padding-left: 0;
        max-width: 100%;
        padding-right: clamp(0px, 8vw, 24%);
    }

    .banner-description {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .banner-text-content {
        padding: 18px max(20px, env(safe-area-inset-right, 0px)) 0 max(20px, env(safe-area-inset-left, 0px));
    }

    .banner-description-container {
        align-self: stretch;
        max-width: 100%;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .banner-text-content {
        padding: 14px max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
    }

    .banner-title-primary {
        font-size: 2.2rem;
    }

    .banner-title-text {
        font-size: inherit;
    }

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

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

@media (max-width: 360px) {
    .banner-text-content {
        padding: 12px max(12px, env(safe-area-inset-right, 0px)) 0 max(12px, env(safe-area-inset-left, 0px));
    }

    .banner-title-primary {
        font-size: 1.9rem;
    }

    .banner-title-text {
        font-size: inherit;
    }

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

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

.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 --- */
.intro-section {
    padding: 100px 20px 80px;
    text-align: center;
}

.intro-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: 'Sofia Pro', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #0BA14A;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Título largo en una línea (panel gris) */
.intro-title.intro-title--why-buyers {
    font-size: clamp(0.62rem, 1.65vw, 1.28rem);
    letter-spacing: 0.06px;
    line-height: 1.2;
    margin-bottom: 28px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .intro-title.intro-title--why-buyers {
        white-space: normal;
        font-size: clamp(0.88rem, 2.8vw, 1.12rem);
    }
}

@media (max-width: 480px) {
    .intro-title.intro-title--why-buyers {
        font-size: clamp(0.72rem, 3.4vw, 0.95rem);
    }
}

main.width-lock .intro-title.intro-title--two-line {
    text-align: center;
}

.isophorone-supply-section__inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

main.width-lock .isophorone-supply-section .intro-title--two-line {
    text-align: center;
    margin-bottom: 28px;
}

.isophorone-supply-section__text {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.isophorone-supply-section__text p {
    text-align: left;
}

.intro-title.intro-title--two-line {
    font-size: clamp(0.88rem, 1.55vw, 1.28rem);
    line-height: 1.2;
    margin-bottom: 28px;
    white-space: normal;
    letter-spacing: 0.04em;
    color: #333;
    text-align: center;
}

.intro-title--two-line .intro-title__line {
    display: block;
}

.intro-title--two-line .intro-title__line--dark {
    color: #333;
}

.intro-title--two-line .intro-title__line--green {
    color: #0BA14A;
    margin-top: 0.2em;
}

.intro-title--single-line .intro-title__line {
    display: inline;
}

.intro-title--single-line .intro-title__ipa {
    color: #0BA14A;
    font-weight: inherit;
}

.glycolic-product-split-header.award-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 0.85rem;
    text-align: left;
}

.glycolic-product-split-header .arrow-icon.triangle-icon {
    flex: 0 0 auto;
    margin-top: 0.15em;
}

.glycolic-product-split__text .intro-title--product-split {
    flex: 1 1 auto;
    min-width: auto;
    margin: 0;
    text-align: left;
    font-size: clamp(0.78rem, 1.35vw, 1.08rem);
    line-height: 1.2;
    letter-spacing: 0.03em;
}

main.width-lock .glycolic-product-split__text .intro-title--product-split {
    text-align: left;
}

.glycolic-product-split__text .intro-title--product-split .intro-title__line {
    text-align: left;
}

.glycolic-product-split__text .intro-title--product-split .intro-title__line--dark {
    white-space: nowrap;
    width: max-content;
    max-width: 100%;
    letter-spacing: 0.02em;
}

@media (max-width: 480px) {
    .glycolic-product-split__text .intro-title--product-split .intro-title__line--dark {
        white-space: normal;
        width: auto;
        font-size: clamp(0.68rem, 3.2vw, 0.88rem);
    }
}

.glycolic-product-split__text .glycolic-applications-list {
    margin: 0.1rem 0 0.75rem;
}

.glycolic-product-split__text .glycolic-applications-list li {
    margin-bottom: 4px;
    line-height: 1.28;
    color: #333;
    gap: 8px;
}

.glycolic-product-split__text .glycolic-applications-list li img {
    display: none;
}

.glycolic-product-split__text .glycolic-applications-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #333;
    margin-top: 0.42em;
    flex-shrink: 0;
}

/* Panel WHY BUYERS (sin título): mismo gris que .industrial-content; líneas más juntas */
.intro-content.intro-content--industrial-tone {
    color: #555;
    line-height: 1.34;
    font-size: 1.03rem;
}

.intro-content.intro-content--industrial-tone p {
    color: #555;
    line-height: 1.34;
    font-size: 1.03rem;
}

.intro-content.intro-content--industrial-tone ul > li span {
    color: #555;
    line-height: 1.34;
    font-size: 1.03rem;
}

.intro-content.intro-content--industrial-tone ul > li {
    margin-bottom: 5px;
}

.intro-content.intro-content--industrial-tone ul > li:last-child {
    margin-bottom: 0;
}

.intro-paragraph {
    font-family: 'Sofia Pro', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: normal;
    margin: 0;
    padding: 0 60px;
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

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



/* --- INDUSTRIES SECTION --- */
.industries-section {
    padding: 40px 0 60px 0;
}

.industries-section .container {
    max-width: 1100px;
}

.industries-banner {
    background-size: cover;
    background-position: center;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.industries-banner h2 {
    font-size: clamp(1.5rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.industries-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.industries-content-wrapper p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: left;
}

@media (max-width: 1024px) {
    .industries-banner {
        padding: 40px 20px;
    }

    .industries-content-wrapper p {
        text-align: center;
        font-size: 1rem;
    }
}

.industries-content-wrapper p:last-child {
    margin-bottom: 0;
}

/* --- SCALE SECTION --- */
.scale-section {
    padding: 80px 0;
}

.support-subheading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 5px 35px;
    text-transform: uppercase;
}

.support-tagline {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 15px 35px;
    font-weight: 400;
}

.support-subheading-group p {
    margin-left: 35px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {

    .support-subheading,
    .support-tagline,
    .support-subheading-group p {
        margin-left: 0;
    }
}

.btn-white {
    background-color: white !important;
    color: #0BA14A !important;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-white:hover {
    background-color: #f8f8f8 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- SECCIONES --- */
.section-padding {
    padding: 100px 0;
}

/* Menos espacio entre stability banner y el grid siguiente */
.section-padding.industrial-section--reduced-bottom {
    padding-bottom: 40px;
}

.section-padding.industrial-section--reduced-top {
    padding-top: 40px;
}

/* --- LEGAL HERO BANNER (Terms, Privacy, FAQ) --- */
.legal-hero {
    position: relative;
    height: 444px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    padding-top: 0;
}

.legal-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 1;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8% 0 18%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.legal-hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    color: #0BA14A;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.legal-hero--terms .legal-hero-title {
    font-size: clamp(4rem, 10vw, 8.5rem);
}

.legal-hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 2px 0 0 4px;
    padding-left: 5px;
}

.legal-hero-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px 15px 40px;
}

.legal-hero-logo .logo-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    clip-path: polygon(30px 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.legal-hero-logo img {
    height: 55px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
    padding-bottom: 5%;
}

@media (max-width: 768px) {
    .legal-hero {
        height: 322px;
    }

    .legal-hero-title {
        font-size: 2.5rem;
    }

    .legal-hero--terms .legal-hero-title {
        font-size: 4rem;
    }

    .legal-hero-logo {
        padding: 14px 30px 14px 55px;
    }

    .legal-hero-logo .logo-bg-shape {
        clip-path: polygon(35px 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .legal-hero-logo img {
        height: 28px;
    }
}

/* Legal pages (FAQ, Terms, Privacy): banner centrado con caja blanca */
.legal-hero--card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 48px 20px;
}

.legal-hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: min(92vw, 720px);
}

.legal-hero-center__logo {
    width: clamp(52px, 9vw, 76px);
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    margin-top: -140px;
    margin-bottom: 90px;
}

.legal-hero-center__card {
    background-color: #ffffff;
    padding: clamp(28px, 5vw, 44px) clamp(36px, 8vw, 72px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.legal-hero--card .legal-hero-title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 700;
    color: #0BA14A;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}

.legal-hero--card .legal-hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    font-weight: 300;
    color: #0BA14A;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0.4em 0 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

.legal-hero--card.legal-hero--terms .legal-hero-title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
}

@media (max-width: 768px) {
    .legal-hero--card {
        height: auto;
        min-height: 300px;
        padding: 36px 16px;
    }

    .legal-hero-center__card {
        padding: 24px 28px;
    }

    .legal-hero--card .legal-hero-title {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
    }

    .legal-hero--card .legal-hero-subtitle {
        font-size: clamp(0.82rem, 3.2vw, 1rem);
        letter-spacing: 0.1em;
    }
}

/* --- 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: center;
}

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

.hero-title-small {
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

@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-hero-content {
        padding: 0 20px;
    }
}

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

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

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

    .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: 80px;
    align-items: center;
    min-width: 0;
}

@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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

.award-title-line {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.15;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primera línea en una sola línea; tipografía un poco menor que .award-title-line */
.award-title-line--critical-supply,
.industrial-section--market .award-title-line {
    font-size: 1.52rem;
    letter-spacing: 0.35px;
}

.award-title-line--critical-supply .award-title-line__row1 {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .award-title-line--critical-supply .award-title-line__row1 {
        white-space: normal;
    }
}

.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);
}

.btn-di {
    text-transform: none;
    font-size: 1.15rem;
    padding: 15px 45px;
}

.di-button-wrapper {
    margin-left: 35px;
}

@media (max-width: 768px) {
    .di-button-wrapper {
        margin-left: 0;
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

/* --- SECCIÓN INDUSTRIAL --- */
.industrial-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    margin-left: 35px;
    max-width: 550px;
}

/* Mismo cuerpo tipográfico que los <li> de la lista superior (~1rem del documento) */
.industrial-content ul + p {
    font-size: 1rem;
}

.industrial-content ul li {
    color: #555;
}

.industrial-content ul li strong {
    color: #131313;
}

/* Critical supply / Market: mismo cuerpo tipográfico */
.industrial-section--critical-supply .industrial-content p,
.industrial-section--market .industrial-content p {
    font-size: 1.2rem;
    line-height: 1.35;
}

.industrial-section--critical-supply .industrial-content ul + p,
.industrial-section--market .industrial-content ul + p {
    font-size: 1.08rem;
    line-height: 1.38;
}

.industrial-section--critical-supply .industrial-content ul li,
.industrial-section--market .industrial-content ul li {
    font-size: 1.08rem;
    line-height: 1.32;
}

.industrial-content .btn {
    margin-left: 35px;
}

@media (max-width: 1024px) {

    .industrial-content p,
    .industrial-content .btn {
        margin-left: 0;
        max-width: none;
    }
}

/* Grid solo texto: contenido de extremo a extremo sin imagen */
.industrial-content--fullwidth p {
    max-width: none;
}

.industrial-image {
    width: 100%;
    min-width: 0;
    overflow: visible;
    transition: transform 0.4s ease;
}

.industrial-image--offset-left {
    transform: translateX(-25px);
}

.industrial-image--offset-right {
    transform: translateX(25px);
}

@media (max-width: 1024px) {

    .industrial-image--offset-left,
    .industrial-image--offset-right {
        transform: translateX(0);
    }
}

/* Conservar formato original: relación de aspecto, sin recorte ni distorsión */
.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;
}

/* Grid 1 y 2: misma calidad y formato original, sin deformar */
.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;
}

.industrial-image--reduced img {
    max-width: 95%;
}

/* 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;
        justify-content: center;
    }

    .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: 1024px) {
    .industrial-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .industrial-image img {
        margin: 0 auto;
    }
}

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

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

/* --- STABILITY BANNER (imagen ocupa espacio de columna imagen + columna texto del grid) --- */
.stability-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stability-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.stability-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 60px 24px;
}

.stability-banner__title {
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.stability-banner__title-line1 {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.stability-banner__title-line2 {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.stability-banner__text {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: #666;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .stability-banner {
        min-height: auto;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .stability-banner {
        min-height: auto;
        padding: 20px 0;
    }

    .stability-banner__content {
        padding: 40px 16px;
    }
}

/* --- SECTORS BANNER --- */
.sectors-banner {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 40px;
    background-image: url('../res/imgs/imagen-2_2.webp');
    background-size: cover;
    background-position: center;
    background-color: #f9f9f9;
}

.sectors-title {
    text-align: center;
    margin-bottom: 50px;
}

.sectors-title-line1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sectors-title-line2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.sectors-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.sectors-item-icon {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--primary-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.sectors-item-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.sectors-item-text strong {
    color: #333;
}

@media (max-width: 900px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-banner {
        padding: 40px 20px;
    }

    .sectors-title-line1,
    .sectors-title-line2 {
        font-size: 1.8rem;
    }
}

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

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

.long-term-quote-banner {
    background-color: var(--primary-green);
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}

.long-term-quote-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.long-term-quote-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    margin: 0 0 35px 0;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 700;
    border: none;
    border-radius: 0;
    padding: 15px 40px;
    text-transform: none;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.15rem;
}

.btn-white:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .long-term-quote-banner {
        padding: 40px 20px;
    }

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

    .long-term-quote-subtitle {
        font-size: 1.05rem;
    }
}

/* --- 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: 600px;
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: flex-start;
}

.img-large {
    width: 250px;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.img-small {
    width: 250px;
    height: 500px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.staggered-images img {
    border-radius: 0;
}

@media (max-width: 1024px) {
    .staggered-images {
        height: 450px;
        max-width: 100%;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .img-large,
    .img-small {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: calc(50% - 10px);
        height: 350px;
    }

    .img-small {
        margin-top: 40px;
    }
}

.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;
}

@media (min-width: 900px) {
    .quote-section.newsletter-section {
        flex-direction: row;
        min-height: 480px;
    }
}

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

.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;
    }
}

/* 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 {
    max-width: 640px;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

/* Quote section: títulos GET A / QUOTE (referencia) */
.quote-section .newsletter-content-right > .newsletter-title-right {
    font-size: clamp(1.2rem, 4.6vw, 1.85rem);
    font-weight: 600;
}

.quote-section .newsletter-content-right > .newsletter-title-right:first-of-type {
    color: #2d2d2d;
    margin-bottom: 0;
    line-height: 1;
}

.quote-section .newsletter-content-right > .newsletter-title-right + .newsletter-title-right {
    line-height: 1;
    margin-top: -0.72rem;
    margin-bottom: 0;
}

.quote-section .highlight-green-box {
    color: #ffffff;
    background-color: #0BA14A;
    font-weight: 600;
    padding: 0.06em 0.38em;
    display: inline-block;
    line-height: 1.05;
    box-sizing: border-box;
}

.quote-section .newsletter-right {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 52px;
    padding-bottom: 58px;
}

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

@media (min-width: 900px) {
    .quote-section.newsletter-section .newsletter-grid-container {
        gap: clamp(2rem, 5vw, 6.5rem);
    }

    .quote-section .newsletter-left {
        flex: 1.12;
        padding-right: 8px;
    }

    .quote-section .newsletter-content-left {
        max-width: 100%;
    }

    .quote-section .newsletter-right {
        flex: 0.88;
        padding-left: 28px;
        align-self: flex-start;
        margin-top: -9px;
        padding-top: 44px;
        padding-bottom: 54px;
    }
}

/* Título en dos líneas: más separado y un poco más pequeño */
.quote-section .award-title-wrapper {
    display: block;
}

.quote-section .award-title-wrapper .newsletter-title-left {
    display: block;
    margin-bottom: 2px;
    font-size: 1.75rem;
    line-height: 1.15;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.quote-section .award-title-wrapper .newsletter-title-left:last-child {
    margin-bottom: 0;
}

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

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

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

.newsletter-text.newsletter-text--dark {
    color: #000000;
    margin-top: -0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
}

/* 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: 500;
    font-size: 1.12rem;
    width: fit-content;
    max-width: 100%;
    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: 40px 20px;
    }

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

.newsletter-content-right {
    max-width: 450px;
    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;
}

/* Quote section: formulario más bajo para acercar altura a newsletter-left */
.quote-section.newsletter-section .newsletter-content-right {
    gap: 1rem;
    align-items: center;
}

.quote-section.newsletter-section .newsletter-form {
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.quote-section.newsletter-section .newsletter-input {
    padding: 8px 14px;
    font-size: 1rem;
    line-height: 1.25;
    /* Una línea; misma caja que el textarea (border-box) */
    height: calc(1.25 * 1em + 16px + 2px);
}

.quote-section.newsletter-section textarea.newsletter-input {
    height: calc(1.25 * 1em + 16px + 2px);
    resize: vertical;
    overflow-y: auto;
}

.quote-section.newsletter-section .newsletter-submit-btn {
    padding: 8px 22px;
    font-size: 1rem;
    margin-top: 6px;
    align-self: flex-start;
    margin-left: 0;
    margin-right: auto;
}

.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 (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: 1024px) {
    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;
    }
}

/* --- 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%;
    }

    .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;
    }

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

    .award-title-line--critical-supply,
    .industrial-section--market .award-title-line {
        font-size: 1.22rem;
    }

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

    .award-header {
        gap: 10px;
    }

    .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;
    }

    .industrial-content .btn {
        display: block;
        margin: 0 auto;
        width: fit-content;
        text-align: center;
    }
}

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

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

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

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

    .award-title-line--critical-supply,
    .industrial-section--market .award-title-line {
        font-size: 1.06rem;
    }

    .award-title-line--critical-supply .award-title-line__row1 {
        white-space: normal;
    }

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

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

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

    .newsletter-text.newsletter-text--dark {
        font-size: 0.99rem;
    }

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

    .quote-section .whatsapp-btn {
        margin-left: auto;
        margin-right: auto;
        align-self: flex-start;
        font-size: clamp(0.68rem, 3.15vw, 0.82rem);
        max-width: 100%;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .quote-section .whatsapp-text {
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        min-height: 50px;
        padding: 0 clamp(8px, 2.5vw, 12px) 0 clamp(12px, 3.2vw, 18px);
        margin-left: -10px;
        text-align: left;
        line-height: 1.15;
        box-sizing: border-box;
    }

    .grid-2 {
        gap: 28px;
    }
}

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

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

    .award-title-line--critical-supply,
    .industrial-section--market .award-title-line {
        font-size: 1rem;
    }

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

/* --- PROPYLENE GLYCOL SECTION --- */
.prop-glycol-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.prop-glycol-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
    margin-bottom: 70px;
    flex-wrap: wrap;
    width: 100%;
}

.prop-glycol-images img {
    max-height: 160px;
    width: auto;
    object-fit: contain;
}

/* Hacer la imagen 2 y 3 un poco más grandes */
.prop-glycol-images img:nth-child(2),
.prop-glycol-images img:nth-child(3) {
    max-height: 190px;
}

@media (max-width: 1024px) {
    .prop-glycol-images {
        gap: 20px;
        justify-content: center;
    }

    .prop-glycol-images img {
        max-height: 100px;
    }

    .prop-glycol-images img:nth-child(2),
    .prop-glycol-images img:nth-child(3) {
        max-height: 120px;
    }
}

.prop-glycol-title {
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

.prop-glycol-title.green {
    color: var(--primary-green);
    margin-bottom: 40px;
}

.prop-glycol-text {
    text-align: left;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 15px;
}

.prop-glycol-text p {
    margin-bottom: 20px;
}

.prop-glycol-text strong {
    color: #333;
}

/* --- CONSISTENCY SECTION --- */
.consistency-box {
    margin: 0 auto;
    text-align: center;
    position: relative;
    border: 1px solid #f0f0f0;
    width: 100%;
    box-sizing: border-box;
}

.consistency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    text-align: left;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .consistency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .consistency-box {
        padding: 50px 20px !important;
    }

    .consistency-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .consistency-box h2 {
        margin-bottom: 30px !important;
    }
}

@media (max-width: 768px) {
    .banner-logo {
        width: 50px;
        top: 15px;
        left: 15px;
        z-index: 20;
    }
}

@media (max-width: 480px) {
    .banner-logo {
        width: 60px;
        top: 15px;
        left: 15px;
    }
}

/* --- CONTENT PAGES (FAQ, Privacy, Terms) — tono como Benzyl Alcohol Tech Grade --- */
.content-page {
    max-width: 850px !important;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.content-page h3 {
    font-size: 1.22rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #000;
}

.content-page strong {
    color: #000;
}

.content-page > p:first-of-type {
    color: #000;
}

.content-page .faq-item h3 {
    font-size: 1.08rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #000;
}

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

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

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

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

    .content-page .faq-item h3 {
        font-size: 1.02rem;
    }
}

/* --- Acetic Acid 99% LP: bloques principales y ajustes viewport --- */
.industries-banner.acetic-lede-banner {
    background-color: #0BA14A;
    background-image: none;
    border: none;
    border-radius: 0;
    max-width: 850px;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 40px) clamp(18px, 6vw, 100px);
    box-sizing: border-box;
    text-align: left;
}

.acetic-lede-banner__text {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: #ffffff;
    line-height: 1.6;
    max-width: 900px;
    margin: 0;
}

.glycolic-intro-block {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: left;
}

.glycolic-intro-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
    margin: 0 0 1.25rem 0;
}

.glycolic-intro-block p:last-child {
    margin-bottom: 0;
}

/* IPA — intro: mismos párrafos que imagen-1 (.ipa-imagen-split__text) */
main.width-lock > section.section-padding.industrial-section--reduced-bottom .glycolic-intro-block p {
    font-size: 1.05rem;
    line-height: 1.32;
    margin-bottom: 0.7rem;
}

main.width-lock > section.section-padding.industrial-section--reduced-bottom .glycolic-intro-block p:last-child {
    margin-bottom: 0;
}

main.width-lock > section.section-padding.industrial-section--reduced-bottom .glycolic-intro-block p strong {
    color: #333;
    font-weight: 700;
}

/* Applications: fondo gris ancho completo, contenido alineado con .container (850px) */
.glycolic-applications-band {
    background-color: #f4f4f4;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.glycolic-applications-band .container.glycolic-applications-grid {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 48px);
    align-items: start;
}

.glycolic-applications-header {
    margin-bottom: 18px;
    gap: 16px;
    align-items: flex-start;
}

.glycolic-applications-header .arrow-icon.triangle-icon {
    margin-top: 5px;
    flex-shrink: 0;
}

.glycolic-applications-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #131313;
    line-height: 1.45;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.glycolic-applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.glycolic-applications-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.45;
}

.glycolic-applications-list li:last-child {
    margin-bottom: 0;
}

.glycolic-applications-list li img {
    width: 20px;
    height: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.glycolic-value-panel--plain {
    background-color: transparent;
    padding: 0;
}

/* Producto + texto: texto más ancho a la derecha para párrafos más bajos */
.glycolic-product-split.section-padding.industrial-section--reduced-top {
    padding-top: clamp(52px, 7vw, 72px);
}

.glycolic-product-split .container {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(28px, 4vw, 48px);
    padding-right: clamp(28px, 4vw, 48px);
    box-sizing: border-box;
}

.glycolic-product-split-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(0px, 0.35vw, 4px);
    align-items: stretch;
}

.glycolic-product-split__image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
}

.glycolic-product-split__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin-left: -32px;
    transform: scale(1.08);
    transform-origin: left center;
}

.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse) {
    align-items: stretch;
}

.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse) .glycolic-product-split__text {
    justify-content: flex-start;
    min-height: auto;
    align-self: stretch;
}

.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse) .glycolic-product-split__image,
.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse) .glycolic-product-split__text {
    min-height: 0;
}

.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse):not(.glycolic-product-split-grid--image-right) .glycolic-product-split__image {
    max-width: 70%;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse):not(.glycolic-product-split-grid--image-right) .glycolic-product-split__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: none;
    margin-left: 0;
}

/* Texto izquierda, imagen derecha — misma altura en ambas columnas */
.glycolic-product-split-grid--image-right {
    align-items: stretch;
}

.glycolic-product-split-grid--image-right .glycolic-product-split__text,
.glycolic-product-split-grid--image-right .glycolic-product-split__image {
    min-height: 0;
    align-self: stretch;
}

.glycolic-product-split-grid--image-right .glycolic-product-split__image {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.glycolic-product-split-grid--image-right .glycolic-product-split__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    margin-left: 0;
}

.glycolic-product-split--operational-focus .container {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(28px, 4.5vw, 52px);
    padding-right: clamp(20px, 3vw, 32px);
    box-sizing: border-box;
}

.glycolic-product-split--operational-focus .glycolic-product-split-grid {
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
}

.glycolic-product-split--operational-focus .glycolic-product-split__text {
    align-self: stretch;
}

/* Párrafos alineados con el título, no con el triángulo */
.glycolic-product-split--operational-focus .glycolic-product-split__text.glycolic-intro-block > p {
    padding-left: calc(15px + 12px);
    box-sizing: border-box;
}

.glycolic-product-split--operational-focus .glycolic-product-split__image {
    max-width: 100%;
    align-self: start;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
}

.glycolic-product-split--operational-focus .glycolic-product-split__image img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    min-height: 0;
    object-fit: contain;
    object-position: top center;
    margin: 0 auto;
    display: block;
}

.glycolic-product-split__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    min-width: 0;
    padding-right: 0;
    margin-right: 0;
    align-self: stretch;
}

/* Misma tipografía que .glycolic-intro-block (sección superior) */
.glycolic-product-split__text.glycolic-intro-block {
    max-width: none;
    padding: 0;
    margin: 0;
}

.glycolic-product-split__text.glycolic-intro-block p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.32;
    margin-bottom: 0.7rem;
}

.glycolic-product-split__text.glycolic-intro-block p strong {
    color: #131313;
}

@media (max-width: 1024px) {
    .glycolic-product-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .glycolic-product-split__image {
        max-width: 420px;
        margin: 0 auto;
        justify-content: center;
    }

    .glycolic-product-split__image img {
        margin-left: 0;
        object-position: center;
        transform: none;
        height: auto;
        max-height: none;
    }

    .glycolic-product-split-grid:not(.glycolic-product-split-grid--reverse):not(.glycolic-product-split-grid--image-right) .glycolic-product-split__image {
        max-width: 420px;
    }

    .glycolic-product-split--operational-focus .glycolic-product-split__image img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .glycolic-product-split--operational-focus .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .glycolic-product-split .container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

/* Texto centrado entre producto y CTA (referencia PDF) */
.glycolic-statement {
    background-color: #ffffff;
    padding: clamp(44px, 7vw, 64px) 20px clamp(24px, 4vw, 36px);
}

.glycolic-statement .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.glycolic-statement__text {
    margin: 0;
    text-align: center;
    font-family: 'Sofia Pro', sans-serif;
    font-size: clamp(0.95rem, 1.85vw, 1.1rem);
    font-weight: 600;
    color: #131313;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .glycolic-statement {
        padding-left: 28px;
        padding-right: 28px;
    }

    .glycolic-statement .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 1024px) {
    .glycolic-applications-band .container.glycolic-applications-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

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

.acetic-value-panel {
    background-color: #f4f4f4;
    padding: clamp(28px, 6vw, 60px) clamp(16px, 4vw, 32px);
    box-sizing: border-box;
}

main.width-lock .acetic-value-panel .intro-title--why-buyers {
    text-align: center;
}

.acetic-value-panel .intro-content--industrial-tone {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.acetic-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: clamp(16px, 3vw, 20px);
    padding-bottom: clamp(20px, 3.5vw, 32px);
}

.section-padding.acetic-cta-row.industrial-section--reduced-top {
    padding-top: clamp(12px, 2vw, 18px);
}

.section-padding.acetic-cta-row.industrial-section--reduced-bottom {
    padding-bottom: clamp(28px, 4vw, 44px);
}

.acetic-cta-row__btn {
    background-color: #0BA14A;
    color: #ffffff;
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    line-height: 1.2;
    padding: 0.42em 0.9em;
}

.acetic-cta-row .acetic-cta-row__btn.btn-di {
    padding: 0.42em 0.9em;
}

.hero.banner-wrapper .legal-hero-logo {
    right: max(0px, env(safe-area-inset-right, 0px));
}

/* Glycolic Acid 70% — banner (texto derecha, fondo banner.webp) */
.hero.banner-wrapper--glycolic {
    justify-content: flex-end;
    align-items: center;
    padding-top: clamp(88px, 14vw, 132px);
    padding-bottom: clamp(48px, 8vw, 80px);
}

.hero.banner-wrapper--glycolic .banner-media img {
    object-fit: cover;
    object-position: left center;
    filter: none;
}

.hero.banner-wrapper--glycolic .banner-text-content--right {
    position: relative;
    z-index: 2;
    flex: 0 1 auto;
    width: min(52%, 640px);
    max-width: none;
    margin: 0 clamp(24px, 5vw, 88px) 0 auto;
    padding: 0 clamp(12px, 2vw, 28px) 0 0;
    align-items: flex-start;
    text-align: left;
}

.banner-title-hero--glycolic {
    align-items: flex-start;
    color: #363636;
}

.banner-title-hero--glycolic .banner-tagline {
    display: block;
    font-size: clamp(0.98rem, 1.85vw, 1.58rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #4a4a4a;
    margin: 0 0 0.45em 0;
}

.banner-title-hero--glycolic .banner-title-product {
    display: block;
    font-size: clamp(3rem, 6.5vw, 5.75rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #0BA14A;
    margin: 0;
}

.banner-title-hero--glycolic .banner-title-product + .banner-tagline {
    margin-top: clamp(0.35rem, 1.1vw, 0.75rem);
    margin-bottom: 0;
}

.banner-title-hero--glycolic .banner-title-product--pct {
    margin-top: 0.18em;
    color: #1a6b3c;
}

.banner-title-hero--glycolic .banner-title-subline {
    display: block;
    margin-top: 0.55em;
    font-size: clamp(0.82rem, 1.55vw, 1.2rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4a4a4a;
    max-width: 28ch;
}

.glycolic-applications-band--single .container.glycolic-applications-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.glycolic-applications-band--single .glycolic-applications-col {
    width: 100%;
    max-width: 640px;
    text-align: left;
}

.glycolic-applications-band--single .glycolic-applications-title,
.glycolic-applications-band--single .glycolic-intro-block,
.glycolic-applications-band--single .glycolic-applications-list {
    text-align: left;
}

.glycolic-applications-band--single .glycolic-applications-header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    text-align: left;
}

.glycolic-applications-band--single .glycolic-applications-header .arrow-icon.triangle-icon {
    flex: 0 0 auto;
    margin-top: 0;
    align-self: center;
}

.glycolic-applications-band--single .glycolic-applications-header .glycolic-applications-title {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding-top: 0;
    line-height: 1.35;
    align-self: center;
}

@media (min-width: 769px) {
    .glycolic-product-split-grid--reverse {
        direction: rtl;
    }

    .glycolic-product-split-grid--reverse > * {
        direction: ltr;
    }
}

.hero.banner-wrapper--glycolic .legal-hero-logo--no-bg {
    padding: clamp(14px, 2.5vw, 22px) clamp(20px, 4vw, 40px);
    background: none;
}

.hero.banner-wrapper--glycolic .legal-hero-logo--no-bg .logo-bg-shape {
    display: none;
}

.hero.banner-wrapper--glycolic .legal-hero-logo--no-bg img {
    height: clamp(44px, 7vw, 68px);
    width: auto;
    padding-bottom: 0;
}

@media (max-width: 1024px) {
    .hero.banner-wrapper--glycolic .banner-text-content--right {
        width: min(58%, 520px);
        margin-right: clamp(16px, 3vw, 40px);
    }

    .banner-title-hero--glycolic .banner-title-product {
        font-size: clamp(2.5rem, 5.8vw, 4.25rem);
    }
}

@media (max-width: 768px) {
    .hero.banner-wrapper--glycolic {
        align-items: flex-end;
        padding-bottom: 56px;
    }

    .hero.banner-wrapper--glycolic .banner-text-content--right {
        width: min(72%, 100%);
        margin-right: 16px;
        padding-top: 12px;
    }

    .hero.banner-wrapper--glycolic .banner-media img {
        object-position: 20% center;
    }

    .hero.banner-wrapper--glycolic .legal-hero-logo--no-bg img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero.banner-wrapper--glycolic .banner-text-content--right {
        width: calc(100% - 32px);
        margin-right: 16px;
        margin-left: auto;
    }

    .banner-title-hero--glycolic .banner-tagline {
        font-size: clamp(0.82rem, 3.6vw, 1rem);
        letter-spacing: 0.04em;
    }

    .banner-title-hero--glycolic .banner-title-product {
        font-size: clamp(2.15rem, 10.5vw, 2.9rem);
    }
}

@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) {
    .banner-title-hero .banner-title-line1 {
        font-size: clamp(1.65rem, 8.2vw, 2.5rem);
    }

    .banner-title-hero .banner-title-line2 {
        font-size: clamp(0.92rem, 4.2vw, 1.3rem);
    }

    /* iPhone 14 Pro (~393px): icono + banda verde en una fila, alineados */
    .quote-section .whatsapp-btn {
        font-size: clamp(0.62rem, 2.95vw, 0.74rem);
    }

    .quote-section .whatsapp-icon {
        width: 44px;
        height: 44px;
    }

    .quote-section .whatsapp-text {
        margin-left: -8px;
        min-height: 44px;
        padding: 0 clamp(6px, 2.2vw, 10px) 0 clamp(10px, 2.8vw, 14px);
    }
}

/* IPA — grid de tarjetas (referencia PDF) */
.glycolic-applications-band--ipa-cards .ipa-industries-section {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 3vw, 24px);
    padding-right: clamp(16px, 3vw, 24px);
    box-sizing: border-box;
    overflow: visible;
}

.glycolic-applications-band--ipa-cards .ipa-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(15px, 12vw, 20px);
    column-gap: clamp(48px, 8vw, 88px);
    width: 100%;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card {
    background-color: #ffffff;
    box-shadow:
        -4px 5px 14px rgba(0, 0, 0, 0.12),
        -2px 2px 6px rgba(0, 0, 0, 0.06);
    padding: clamp(14px, 2vw, 20px) clamp(14px, 2.2vw, 22px);
    box-sizing: border-box;
    text-align: center;
    min-height: clamp(82px, 10vw, 108px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card--title {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: inherit;
    line-height: 1.2;
    text-align: center;
    transform: translateX(-6px);
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__title-row {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.2vw, 12px);
}

.glycolic-applications-band--ipa-cards .ipa-industry-card--title .triangle-icon.arrow-icon {
    margin-top: 0;
    flex-shrink: 0;
    transform: translateX(14px);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 9px;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title-line--dark {
    display: inline;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__title {
    margin: 0;
    font-family: inherit;
    line-height: 1.2;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__title-line {
    display: block;
    font-size: clamp(0.68rem, 1vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__title-line--dark {
    color: #333333;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__title-line--green {
    color: #0BA14A;
    margin-top: 0.15em;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title-line--green {
    display: block;
    padding-left: calc(9px + clamp(8px, 1.2vw, 12px));
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__heading {
    margin: 0 0 0.35rem;
    font-size: clamp(0.68rem, 1vw, 0.8rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0BA14A;
}

.glycolic-applications-band--ipa-cards .ipa-industry-card__text {
    margin: 0;
    font-size: clamp(0.7rem, 0.92vw, 0.78rem);
    font-weight: 400;
    line-height: 1.35;
    color: #555555;
    max-width: 24ch;
}

/* Título: grid centrado en pantallas estrechas (sin solapamiento) */
@media (max-width: 900px) {
    .glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        justify-content: center;
        align-content: center;
        column-gap: 10px;
        row-gap: 0.2em;
        width: fit-content;
        max-width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        transform: none;
        text-align: center;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card__title-row {
        display: contents;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card--title .triangle-icon.arrow-icon {
        transform: none;
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: center;
        justify-self: center;
        margin-top: 0;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title-line--dark {
        display: block;
        grid-column: 2;
        grid-row: 1;
        text-align: center;
        line-height: 1.25;
        justify-self: center;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title-line--green {
        grid-column: 2;
        grid-row: 2;
        padding-left: 0;
        text-align: center;
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .glycolic-applications-band--ipa-cards .ipa-industries-grid {
        grid-template-columns: 1fr;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card {
        min-height: 0;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card__text {
        max-width: none;
    }
}

/* IPA — fondo gris bajo las tarjetas (sombras visibles) */
.glycolic-applications-band--ipa-cards.section-padding.industrial-section--reduced-bottom {
    padding-bottom: clamp(28px, 4vw, 44px);
    overflow: visible;
}

.glycolic-product-split.glycolic-product-split--ipa-imagen.section-padding.industrial-section--reduced-top {
    padding-top: 0;
}

/* IPA — sección imagen-1: fondo full-bleed, texto derecha sobre degradado blanco */
.glycolic-product-split--ipa-imagen {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.glycolic-product-split--ipa-imagen.section-padding.industrial-section--reduced-bottom {
    padding-bottom: 0;
}

/* IPA — CTA verde (referencia PDF) */
.ipa-catalog-cta.section-padding.industrial-section--reduced-top {
    padding-top: clamp(24px, 3vw, 40px);
}

.ipa-catalog-cta {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 0 clamp(48px, 6vw, 80px);
    box-sizing: border-box;
    background-color: #f4f4f4;
}

.ipa-catalog-cta__wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}

.ipa-catalog-cta__banner {
    background-color: #0BA14A;
    width: fit-content;
    min-width: calc(46em + clamp(64px, 8vw, 104px));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(22px, 2.8vw, 32px) clamp(32px, 4vw, 52px);
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
}

.ipa-catalog-cta__text {
    margin: 0 auto clamp(18px, 2.2vw, 24px);
    max-width: 37.5em;
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.45;
    color: #ffffff;
}

.ipa-catalog-cta__btn.btn-white {
    font-size: clamp(0.875rem, 1vw, 0.9375rem) !important;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 0;
    text-transform: none;
    color: #0BA14A;
    background-color: #ffffff;
}

.ipa-catalog-cta__btn.btn-white:hover {
    background-color: #f2f2f2;
    color: #0BA14A;
    transform: translateY(-2px);
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    filter: none;
    transform: scale(0.84);
    transform-origin: left center;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 38%,
        rgba(255, 255, 255, 0.35) 48%,
        rgba(255, 255, 255, 0.88) 56%,
        #ffffff 64%,
        #ffffff 100%
    );
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 3vw, 24px);
    padding-right: clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    align-items: center;
    min-height: clamp(190px, 26vw, 290px);
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__visual {
    min-height: 1px;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__text {
    padding: clamp(20px, 3.5vw, 40px) clamp(16px, 2.5vw, 32px);
    box-sizing: border-box;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.32;
    margin-bottom: 0.7rem;
}

.glycolic-product-split--ipa-imagen .ipa-imagen-split__text p strong {
    color: #333;
    font-weight: 700;
}

@media (max-width: 768px) {
    .glycolic-product-split--ipa-imagen .ipa-imagen-split__grid {
        grid-template-columns: 1fr;
        min-height: clamp(240px, 50vw, 340px);
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__visual {
        display: none;
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__text {
        margin-top: auto;
        padding-top: clamp(95px, 28vw, 155px);
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.75) 18%,
            #ffffff 32%
        );
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__fade {
        background: linear-gradient(
            to bottom,
            transparent 0%,
            transparent 35%,
            rgba(255, 255, 255, 0.5) 50%,
            #ffffff 62%
        );
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__bg img {
        object-position: center 20%;
        transform: scale(0.88);
        transform-origin: center top;
    }
}

/* IPA — banner único (banner-1.webp) */
.hero.banner-wrapper.banner-wrapper--ipa {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
    display: block;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: #ffffff;
}

.hero.banner-wrapper--ipa .ipa-banner-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================================================
   IPA — responsive (móvil, iPad, desktop grande)
   ============================================================================= */

/* Pantallas grandes: banner centrado, contenido alineado */
@media (min-width: 1921px) {
    .hero.banner-wrapper--ipa {
        background-color: #ffffff;
    }

    .hero.banner-wrapper--ipa .ipa-banner-img {
        width: 100%;
        max-width: 1920px;
    }
}

/* iPad / tablet landscape y desktop estrecho */
@media (max-width: 1024px) {
    main.width-lock > section.section-padding.industrial-section--reduced-bottom {
        padding-top: clamp(48px, 8vw, 72px);
        padding-bottom: clamp(28px, 5vw, 40px);
    }

    .glycolic-applications-band--ipa-cards.section-padding.industrial-section--reduced-top,
    .glycolic-applications-band--ipa-cards.section-padding.industrial-section--reduced-bottom {
        padding-top: clamp(36px, 6vw, 48px);
        padding-bottom: clamp(24px, 4vw, 36px);
    }

    .glycolic-applications-band--ipa-cards .ipa-industries-section {
        max-width: min(480px, calc(100% - 40px));
    }

    .glycolic-applications-band--ipa-cards .ipa-industries-grid {
        column-gap: clamp(24px, 5vw, 48px);
        row-gap: clamp(12px, 2.5vw, 18px);
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__grid {
        min-height: clamp(200px, 28vw, 260px);
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__text {
        padding: clamp(16px, 2.5vw, 28px);
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__text p {
        font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    }

    .ipa-catalog-cta__banner {
        min-width: 0;
        width: min(100%, calc(100% - 32px));
        max-width: 640px;
        padding: clamp(20px, 3vw, 28px) clamp(20px, 3.5vw, 32px);
    }

    .ipa-catalog-cta__text {
        max-width: 36em;
        font-size: clamp(0.875rem, 1.6vw, 1rem);
    }
}

/* iPad portrait y móvil grande */
@media (max-width: 768px) {
    .hero.banner-wrapper--ipa .ipa-banner-img {
        max-width: 100%;
    }

    main.width-lock > section.section-padding.industrial-section--reduced-bottom {
        padding-top: 48px;
        padding-bottom: 28px;
    }

    .glycolic-applications-band--ipa-cards .ipa-industries-section {
        max-width: min(400px, calc(100% - 32px));
    }

    .ipa-catalog-cta {
        padding-bottom: clamp(36px, 8vw, 56px);
    }

    .ipa-catalog-cta__banner {
        width: calc(100% - 24px);
        max-width: none;
        min-width: 0;
    }

    .ipa-catalog-cta__text {
        max-width: 32em;
        font-size: 0.9rem;
    }

    .ipa-catalog-cta__btn.btn-white {
        font-size: 0.8125rem !important;
        padding: 9px 16px;
    }
}

/* Móvil */
@media (max-width: 480px) {
    main.width-lock > section.section-padding.industrial-section--reduced-bottom {
        padding-top: 40px;
        padding-bottom: 24px;
    }

    main.width-lock > section.section-padding.industrial-section--reduced-bottom .glycolic-intro-block {
        padding-left: 0;
        padding-right: 0;
    }

    main.width-lock > section.section-padding.industrial-section--reduced-bottom .glycolic-intro-block p {
        font-size: 0.95rem;
    }

    .intro-title.intro-title--two-line.intro-title--single-line {
        font-size: clamp(0.78rem, 4.2vw, 0.95rem);
        margin-bottom: 20px;
    }

    .glycolic-applications-band--ipa-cards .ipa-industries-section {
        max-width: calc(100% - 24px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .glycolic-applications-band--ipa-cards .ipa-industries-grid {
        column-gap: 0;
        row-gap: 12px;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card {
        padding: 14px 16px;
        min-height: 0;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card__text {
        font-size: 0.72rem;
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .glycolic-product-split--ipa-imagen .ipa-imagen-split__text p {
        font-size: 0.95rem;
    }

    .ipa-catalog-cta.section-padding.industrial-section--reduced-top {
        padding-top: 20px;
    }

    .ipa-catalog-cta__wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ipa-catalog-cta__banner {
        width: 100%;
        padding: 18px 14px;
    }

    .ipa-catalog-cta__text {
        max-width: 100%;
        font-size: 0.85rem;
        margin-bottom: 14px;
    }
}

/* iPhone estrecho */
@media (max-width: 390px) {
    .glycolic-applications-band--ipa-cards .ipa-industry-card--title .ipa-industry-card__title {
        column-gap: 8px;
        max-width: calc(100% - 16px);
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card__title-line {
        font-size: 0.64rem;
    }

    .glycolic-applications-band--ipa-cards .ipa-industry-card__heading {
        font-size: 0.64rem;
    }
}

/* =============================================================================
   IPA LP 2 — contenido y estética según LP-Isopropyl Alcohol (IPA)-2.pdf
   ============================================================================= */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.ipa-lp2 .ipa-lp2-intro-section .ipa-lp2-intro-copy {
    text-align: left;
}

body.ipa-lp2 .ipa-lp2-intro-section > .container {
    max-width: 960px;
}

body.ipa-lp2 .ipa-lp2-hero-banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    /* Sin franja blanca arriba; solo respeto a notch / barra de estado */
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: 0;
    box-sizing: border-box;
    background: #ffffff;
    overflow: hidden;
}

body.ipa-lp2 .ipa-lp2-hero-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    min-height: clamp(220px, 32vw, 560px);
    max-height: min(728px, 92vh);
    position: relative;
    z-index: 0;
}

body.ipa-lp2 .ipa-lp2-hero-banner__copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(20px, 3.5vw, 48px) clamp(20px, 4vw, 56px) clamp(24px, 4vw, 56px)
        clamp(20px, 3vw, 40px);
    background: #ffffff;
    box-sizing: border-box;
}

body.ipa-lp2 .ipa-lp2-hero-banner__logo-link {
    position: absolute;
    top: clamp(16px, 2.5vw, 28px);
    left: max(clamp(20px, 3vw, 40px), env(safe-area-inset-left, 0px));
    display: block;
    line-height: 0;
    z-index: 2;
}

body.ipa-lp2 .ipa-lp2-hero-banner__logo {
    width: clamp(46px, 5.8vw, 58px);
    height: auto;
    display: block;
}

body.ipa-lp2 .ipa-lp2-hero-banner__titles {
    margin-top: clamp(36px, 6vw, 52px);
    margin-left: clamp(28px, 11vw, 168px);
    box-sizing: border-box;
}

body.ipa-lp2 .ipa-lp2-hero-banner__title {
    margin: 0;
    padding: 0;
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 14.5vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: #0ba14a;
}

body.ipa-lp2 .ipa-lp2-hero-banner__tagline {
    margin: clamp(0.35rem, 1.2vw, 0.65rem) 0 0 0;
    max-width: 22ch;
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2.25vw, 1.48rem);
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #363636;
}

body.ipa-lp2 .ipa-lp2-hero-banner__photo {
    position: relative;
    min-height: 0;
    min-width: 0;
    background: #e8e9eb;
}

body.ipa-lp2 .ipa-lp2-hero-banner__img {
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 36vw, 560px);
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* IPA LP 2 — escritorio estrecho / iPad horizontal: título sin tanto margen */
@media (max-width: 1180px) and (min-width: 901px) {
    body.ipa-lp2 .ipa-lp2-hero-banner__titles {
        margin-left: clamp(48px, 10vw, 108px);
    }
}

@media (max-width: 768px) {
    body.ipa-lp2 .ipa-lp2-hero-banner__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
        min-height: clamp(200px, 42vw, 360px);
        max-height: none;
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__copy {
        padding: clamp(14px, 3vw, 22px) clamp(12px, 2.5vw, 16px) clamp(16px, 3vw, 24px)
            clamp(12px, 2vw, 14px);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__logo-link {
        top: clamp(10px, 2vw, 16px);
        left: max(clamp(12px, 2vw, 16px), env(safe-area-inset-left, 0px));
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__titles {
        margin-top: clamp(22px, 5vw, 36px);
        margin-left: clamp(18px, 4.5vw, 52px);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__title {
        font-size: clamp(2.125rem, 12.5vw, 3.5rem);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__tagline {
        font-size: clamp(0.76rem, 3vw, 0.95rem);
        max-width: 18ch;
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__img {
        min-height: clamp(200px, 52vw, 360px);
        object-position: 55% center;
    }
}

@media (max-width: 960px) and (min-width: 769px) {
    body.ipa-lp2 .ipa-lp2-hero-banner__grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        max-height: none;
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__titles {
        margin-left: clamp(36px, 8vw, 96px);
    }
}

@media (max-width: 400px) {
    body.ipa-lp2 .ipa-lp2-hero-banner__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
        min-height: clamp(176px, 50vw, 300px);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__logo {
        width: clamp(36px, 11vw, 46px);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__title {
        font-size: clamp(1.65rem, 10.5vw, 2.5rem);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__tagline {
        max-width: 14ch;
        line-height: 1.2;
        font-size: clamp(0.65rem, 2.9vw, 0.82rem);
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__img {
        min-height: clamp(176px, 50vw, 280px);
        object-position: 58% center;
    }

    body.ipa-lp2 .ipa-lp2-hero-banner__titles {
        margin-left: clamp(10px, 3.5vw, 28px);
    }
}

/* IPA LP 2 — tablet: splits y contenedores sin recortes ni scroll horizontal */
@media (max-width: 1024px) {
    body.ipa-lp2 .glycolic-product-split:not(.glycolic-product-split--operational-focus) .glycolic-product-split__image img {
        margin-left: 0;
        transform: none;
        object-position: center center;
    }

    body.ipa-lp2 .glycolic-product-split .container {
        padding-left: clamp(16px, 3.5vw, 36px);
        padding-right: clamp(16px, 3.5vw, 36px);
    }

    body.ipa-lp2 .ipa-lp2-operations-band__inner {
        padding-left: clamp(14px, 3vw, 28px);
        padding-right: clamp(14px, 3vw, 28px);
    }
}

/* Lista de operaciones: tarjetas solo texto (PDF) */
body.ipa-lp2 .ipa-lp2-industries .ipa-industry-card--bullet-only {
    min-height: clamp(72px, 9vw, 96px);
    justify-content: center;
}

body.ipa-lp2 .ipa-lp2-industries .ipa-industry-card--bullet-only .ipa-industry-card__text {
    margin: 0;
    font-weight: 600;
    font-size: clamp(0.72rem, 1.85vw, 0.88rem);
    line-height: 1.3;
    color: #333;
}

body.ipa-lp2 .ipa-lp2-industries .ipa-industry-card--title-long .ipa-industry-card__title-line {
    font-size: clamp(0.52rem, 2.1vw, 0.72rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.ipa-lp2 .ipa-lp2-industries .ipa-industry-card--title-long .ipa-industry-card__title-row {
    flex-wrap: wrap;
    justify-content: center;
}

/* IPA LP 2 — split cleaning: menos espacio entre “IPA may participate…” y la lista */
body.ipa-lp2 .ipa-lp2-cleaning-split .ipa-lp2-cleaning-split__list-intro {
    margin-bottom: 0.15rem;
    line-height: 1.25;
    color: #2f2f2f;
}

body.ipa-lp2 .ipa-lp2-cleaning-split .ipa-lp2-cleaning-split__list-intro strong {
    color: #2f2f2f;
    font-weight: 600;
}

body.ipa-lp2 .ipa-lp2-cleaning-split .ipa-lp2-disc-list {
    margin-top: 0;
}

body.ipa-lp2 .ipa-lp2-structured-ops.section-padding {
    padding-top: clamp(28px, 3.8vw, 44px);
}

/* Banda "Cleaning conditions…" (PDF) */
body.ipa-lp2 .ipa-lp2-cleaning-band {
    background: #f4f5f6;
}

body.ipa-lp2 .ipa-lp2-cleaning-band__inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 3vw, 24px);
    padding-right: clamp(16px, 3vw, 24px);
    box-sizing: border-box;
}

body.ipa-lp2 .ipa-lp2-cleaning-band__title {
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    margin: 0 0 1rem 0;
    text-align: center;
}

body.ipa-lp2 .ipa-lp2-cleaning-band__copy {
    text-align: left;
}

body.ipa-lp2 .ipa-lp2-cleaning-band__copy p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.32;
    margin-bottom: 0.7rem;
}

/* Lista con viñetas (PDF) */
body.ipa-lp2 .ipa-lp2-process-list {
    margin: 0.75rem 0 1rem 1.1rem;
    padding: 0;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.35;
}

body.ipa-lp2 .ipa-lp2-process-list li {
    margin-bottom: 0.35em;
}

body.ipa-lp2 .ipa-lp2-split-copy p,
body.ipa-lp2 .ipa-lp2-split-copy ul {
    font-size: 1.05rem;
}

/* CTA: "Structured around industrial operations" (PDF) */
body.ipa-lp2 .ipa-catalog-cta__banner--lp2 {
    text-align: center;
}

body.ipa-lp2 .ipa-catalog-cta__structured {
    margin: 0 0 0.75rem 0;
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
}

body.ipa-lp2 .ipa-catalog-cta__structured-line {
    display: block;
}

body.ipa-lp2 .ipa-catalog-cta__structured-line--green {
    color: #0BA14A;
    margin-top: 0.2em;
}

body.ipa-lp2 .ipa-catalog-cta__banner--lp2 .ipa-catalog-cta__text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

@media (max-width: 768px) {
    body.ipa-lp2 .ipa-lp2-cleaning-band__title {
        font-size: clamp(0.92rem, 3.2vw, 1.15rem);
    }
}

/* IPA LP 2 — banda “Industrial operations…” (fondo: Recursos/imagen-2.webp, sin velo; capa base en HTML inline) */
body.ipa-lp2 .ipa-lp2-operations-band {
    position: relative;
    min-height: clamp(320px, 48vw, 520px);
    background-color: #c5cad0;
}

body.ipa-lp2 .ipa-lp2-operations-band__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(18px, 4vw, 40px);
    padding-right: clamp(18px, 4vw, 40px);
    box-sizing: border-box;
    text-align: center;
}

body.ipa-lp2 .ipa-lp2-operations-band__title {
    margin: 0 auto clamp(1.25rem, 3vw, 2rem);
    max-width: 42rem;
    font-family: 'Sofia Pro', 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ipa-lp2 .ipa-lp2-operations-band__title-line {
    display: block;
}

body.ipa-lp2 .ipa-lp2-operations-band__title-line--dark {
    color: #222222;
    font-size: clamp(0.82rem, 1.85vw, 1.12rem);
}

body.ipa-lp2 .ipa-lp2-operations-band__title-line--green {
    color: #0BA14A;
    margin-top: 0.28em;
    font-size: clamp(0.88rem, 1.95vw, 1.18rem);
}

body.ipa-lp2 .ipa-lp2-operations-band__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3.5vw, 40px);
    text-align: left;
    margin: 0 auto clamp(1.35rem, 2.8vw, 2rem);
    max-width: 720px;
}

body.ipa-lp2 .ipa-lp2-operations-band__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.ipa-lp2 .ipa-lp2-operations-band__copy {
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

body.ipa-lp2 .ipa-lp2-operations-band__copy p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

body.ipa-lp2 .ipa-lp2-operations-band__copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    body.ipa-lp2 .ipa-lp2-operations-band__columns {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}