:root {
    --red: #E30613;
    --red-light: #fdeced;
    --red-mid: #f9b0b3;
    --orange: #FFA200;
    --yellow: #FFD400;
    --orange-lt: #fff8ec;
    --black: #0A0A0A;
    --dark: #1F1F1F;
    --mid: #4A4A4A;
    --soft: #808080;
    --border: #E5E7EB;
    --bg: #ffffff;
    --bg2: #F9FAFB;
    --bg3: #F3F4F6;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(227, 6, 19, 0.08);
    --shadow-lg: 0 20px 40px rgba(227, 6, 19, 0.15);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* clip (no hidden) evita crear un contenedor de scroll que rompe position: sticky del nav */
    overflow-x: clip;
}

h1, h2, h3, h4 {
    text-transform: uppercase;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--black);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--black);
    padding: 9px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.topbar-left span {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar-right a {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color .2s;
}

.topbar-right a:hover {
    color: var(--yellow);
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #2B2B2B;
    border-bottom: 2px solid #AA050E;
    padding: 0 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 86px;
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: flex-end;
    /* baja el logo para que su borde inferior roce la línea roja del nav */
    align-self: flex-end;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-mark span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
}

.nav-logo-sub {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--soft);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 0 22px;
    height: 86px;
    line-height: 86px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}

.nav-links li a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 11px 26px;
    transition: background .2s, transform .15s;
}

.nav-cta:hover {
    background: #c30511;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
}

@media (max-width: 960px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #2B2B2B;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        height: auto;
        line-height: 1;
        padding: 14px 24px;
        border-bottom: none;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-cta {
        display: none;
    }
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 100px);
    align-items: stretch;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 72px 90px 72px;
    position: relative;
}

.hero-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.hero-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
}

.hero-h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 20px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--red);
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.22rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--mid);
    max-width: 400px;
    margin-bottom: 44px;
}

@media (max-width: 960px) {
    .hero-sub {
        font-size: 1.3rem !important;
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 34px;
    transition: background .2s, transform .15s;
}

.btn-primary:hover {
    background: #c30511;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    transition: border-color .2s, color .2s;
}

.btn-outline:hover {
    border-color: var(--dark);
}

.hero-stat-row {
    display: flex;
    gap: 0;
    margin-top: 64px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
    .hero-stat-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

.hero-stat {
    flex: 1;
    padding-right: 28px;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.hero-stat:last-child {
    border-right: none;
    margin-right: 0;
}

.hero-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--red);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--soft);
    margin-top: 6px;
}

/* Hero Right */
.hero-right {
    background: var(--bg2);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 60px 56px;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: default;
    position: relative;
}

.hero-product-card:hover {
    border-color: rgba(227, 6, 19, 0.3);
    transform: translateX(6px);
    box-shadow: -4px 0 0 var(--red);
}

.hpc-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hpc-body h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.hpc-body p {
    font-size: 0.68rem;
    color: var(--soft);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hpc-refs {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--red-light);
    padding: 5px 10px;
}

/* ── MARQUEE ── */
.marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    background: var(--bg);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--soft);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.marquee-item::after {
    content: '●';
    color: var(--red);
    font-size: 0.4rem;
}

/* ── ABOUT ── */
.about {
    padding: 100px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--bg);
}

.about-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.about-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
}

.about h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--black);
    margin-bottom: 28px;
}

.about-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 16px;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border: 1px solid var(--border);
    color: var(--mid);
    transition: all .2s;
}

.tag:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.about-metric {
    background: var(--bg2);
    padding: 32px 36px;
    border: 1px solid var(--border);
    display: flex;
    gap: 24px;
    align-items: center;
    transition: border-color .25s;
}

.about-metric:hover {
    border-color: rgba(227, 6, 19, 0.25);
}

.about-metric-line {
    width: 3px;
    height: 52px;
    flex-shrink: 0;
}

.about-metric-num {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
}

.about-metric-text {
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.about-mission {
    background: var(--black);
    padding: 36px;
    border: 1px solid var(--border);
    margin-top: 1px;
}

.about-mission p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    color: white;
    font-style: italic;
}

.about-mission strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    font-style: normal;
}

/* ── PRODUCTS ── */
.products {
    padding: 100px 72px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.section-label {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
}

.section-h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-card .img-wrapper {
    width: 100%;
    height: 308px;
    overflow: hidden;
}

.product-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.08);
    /* Hover zoom */
}

.product-card .img-wrapper img.img-zoomout {
    object-fit: contain;
    transform: scale(1);
}

.product-card:hover .img-wrapper img.img-zoomout {
    transform: scale(1.05);
}

/* Product card image carousel */
.carousel-wrapper {
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.35);
}

.products-grid .product-card:not(.featured) .img-wrapper {
    height: 300px;
    background: var(--bg);
}

.products-grid .product-card:not(.featured) .carousel-slide {
    object-fit: contain;
}

.products-grid .product-card.featured {
    min-height: 560px;
}

.product-card.featured .img-wrapper {
    min-height: 560px;
    background: var(--black);
}

.product-card.featured .carousel-slide {
    object-fit: contain;
    z-index: 1;
}

/* Relleno difuminado detrás de la imagen "contain" de la card principal:
   la foto se ve completa (sin recorte) y el espacio sobrante deja de ser
   una barra negra — se llena con una versión cover+blur de la misma imagen. */
.product-card.featured .carousel-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(30px) brightness(0.8);
    transform: scale(1.2);
    z-index: 0;
}


.products-grid .product-card:not(.featured) .product-card-content {
    padding: 20px 18px;
}

.products-grid .product-card:not(.featured) .pc-title {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.products-grid .product-card:not(.featured) .pc-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-card-content {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.product-card:hover {
    border-color: rgba(227, 6, 19, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    transform: translateY(-4px);
}

.product-card.tall {
    grid-row: span 2;
}

.pc-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--bg2);
    border: 1px solid var(--border);
}

.pc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pc-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 24px;
}

.pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
}

.pc-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--soft);
}

.pc-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pc-footer::after {
    content: '→';
}

.product-card.featured {
    background: var(--black);
    border-color: var(--black);
}

.product-card.featured .pc-title {
    color: #fff;
}

.product-card.featured .pc-desc {
    color: rgba(255, 255, 255, 0.5);
}

.product-card.featured .pc-icon {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.product-card.featured .pc-tag {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

.product-card.featured .pc-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.product-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.featured-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    background: var(--red);
    color: #fff;
    margin-bottom: 24px;
}

/* ── BENEFICIOS ── */
.benefits {
    padding: 100px 72px;
    background: var(--bg2);
}

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

.benefit-item {
    position: relative;
    overflow: hidden;
    padding: 36px 28px;
    background: #fff;
    border: 2.5px solid;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item img {
    display: block;
    margin: 0 auto 20px auto;
}

.benefit-item:nth-child(1) { border-color: var(--red); }
.benefit-item:nth-child(2) { border-color: var(--black); }
.benefit-item:nth-child(3) { border-color: var(--red); }
.benefit-item:nth-child(4) { border-color: var(--black); }

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.benefit-num {
    display: none;
}

.benefit-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.benefit-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: #363636;
    font-weight: 400;
}

/* ── LINEAS SECTION ── */
.lineas {
    padding: 100px 72px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.lineas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

/* Tarjeta principal: ocupa fila completa */
.linea-card:nth-child(1) {
    grid-column: span 3;
}

.linea-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}

.linea-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-3px);
}

.linea-accent {
    width: 100%;
    height: 5px;
    flex-shrink: 0;
}

.linea-main {
    display: flex;
    flex: 1;
    flex-direction: column;
}

/* Tarjeta principal: texto izquierda, imagen derecha */
.linea-card:nth-child(1) .linea-main {
    flex-direction: row;
}

.linea-body {
    padding: 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.linea-img {
    overflow: hidden;
    flex-shrink: 0;
}

/* Imagen derecha en tarjeta principal */
.linea-card:nth-child(1) .linea-img {
    flex: 0 0 48%;
    min-height: 210px;
    max-height: 260px;
}

/* Imagen abajo en las 3 tarjetas pequeñas */
.linea-card:nth-child(2) .linea-img,
.linea-card:nth-child(3) .linea-img,
.linea-card:nth-child(4) .linea-img {
    height: 170px;
    width: 100%;
}

.linea-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.linea-card:hover .linea-img img {
    transform: scale(1.05);
}

.linea-body h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    text-align: left;
}

/* Título más prominente en la tarjeta principal */
.linea-card:nth-child(1) .linea-body h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.linea-body p {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.65;
    color: #1A1A1A;
    margin-bottom: 14px;
    text-align: left;
}

.linea-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.linea-list li {
    font-size: 0.84rem;
    font-weight: 500;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1.4;
}

.linea-list li::before {
    display: none;
}

.linea-list li svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Eyebrow label inside cards */
.linea-eyebrow {
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

/* Eyebrow + ODS badge row */
.linea-eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.linea-eyebrow-row .linea-eyebrow {
    margin-bottom: 0;
}

/* ODS badge pill */
.linea-ods-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    padding: 3px 9px;
    border-radius: 6px;
    letter-spacing: .04em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* KPI mini-strip inside card */
.linea-kpis {
    display: flex;
    align-items: stretch;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin: 14px 0 16px;
}

.linea-kpi {
    flex: 1;
    padding: 10px 10px 9px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.linea-kpi-sep {
    width: 1px;
    background: var(--border);
    flex-shrink: 0;
    align-self: stretch;
}

.linea-kpi-num {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.linea-kpi-label {
    font-size: 0.68rem;
    color: var(--soft);
    line-height: 1.3;
    text-align: center;
}

.btn-text-mobile { display: none; }
.btn-text-desktop { display: inline; }

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--red);
    padding: 72px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-strip::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12));
    pointer-events: none;
}

.cta-strip h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    flex: 1;
}

.cta-strip h2 span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    letter-spacing: 0;
}

.cta-strip-btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

.btn-white {
    background: #fff;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 32px;
    transition: opacity .2s;
}

.btn-white:hover {
    opacity: .9;
}

.btn-white-out {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 30px;
    transition: border-color .2s;
}

.btn-white-out:hover {
    border-color: #fff;
}

/* ── CONTACT ── */
.contact {
    padding: 80px 72px 56px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header {
    text-align: center;
}

.contact-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
}

.contact-map-col {
    display: flex;
    flex-direction: column;
}

.contact-left {}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    border: 1px solid var(--border);
    flex: 1;
}

.contact-info-item {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: background .2s;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item:hover {
    background: var(--bg2);
}

.ci-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.ci-text strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 3px;
}

.ci-text span {
    font-size: 0.82rem;
    color: var(--mid);
    font-weight: 400;
}

.form-title {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}

.form-title::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fg label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft);
}

.fg input,
.fg select,
.fg textarea {
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 13px 16px;
    outline: none;
    transition: border-color .2s;
    border-radius: 0;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--red);
    background: #fff;
}

.fg select option {
    font-family: 'Montserrat', sans-serif;
}

.fg textarea {
    resize: vertical;
    min-height: 110px;
}

/* ── Form errors ── */
.fg-error {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--red);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .22s ease, opacity .22s ease, margin-top .22s ease;
    margin-top: 0;
    text-align: left;
}

.fg-error i {
    font-size: 0.72rem;
}

.fg.has-error .fg-error {
    max-height: 32px;
    opacity: 1;
    margin-top: 2px;
}

.fg.has-error input,
.fg.has-error select,
.fg.has-error textarea {
    border-color: var(--red);
    background: var(--red-light);
    animation: fg-shake .32s ease;
}

.fg.has-error label {
    color: var(--red);
}

@keyframes fg-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(2px); }
}

.form-submit {
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    align-self: flex-start;
    transition: background .2s, transform .15s;
}

.form-submit:hover {
    background: #c30511;
    transform: translateY(-2px);
}

/* ── SOLICITUD DE COTIZACIÓN ── */
.cotizacion {
    padding: 100px 72px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    text-align: center;
}

.cotizacion-header {
    margin-bottom: 48px;
}

.cotizacion-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--mid);
    margin: 16px auto 0;
    max-width: 520px;
    line-height: 1.7;
}

.cotizacion-form-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    text-align: left;
}

.cotizacion-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cotizacion-form .fg label {
    font-weight: 600;
    color: var(--black);
    font-size: 0.72rem;
}

.cotizacion-form .fg input,
.cotizacion-form .fg select,
.cotizacion-form .fg textarea {
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
    background: var(--bg2);
}

.cotizacion-form .fg input:focus,
.cotizacion-form .fg select:focus,
.cotizacion-form .fg textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.08);
    background: #fff;
}

.cotizacion-btn {
    width: 100%;
    border-radius: 10px;
    padding: 18px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    align-self: stretch;
}

/* ── CONTACT MAP ── */
.contact-map-wrap {
    margin-top: 0;
    border: 1px solid var(--border);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-map-wrap iframe {
    flex: 1;
    width: 100%;
    min-height: 260px;
    display: block;
}

.contact-map-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft);
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.contact-map-link {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    padding: 10px 14px;
    text-decoration: none;
    border-top: 1px solid var(--border);
    background: var(--bg2);
    transition: background .2s, color .2s;
}

.contact-map-link:hover {
    background: var(--red-light);
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    padding: 60px 72px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {}

/* Afiliaciones column — siempre centrada */
.footer-top > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-mark {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.footer-logo-mark span {
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    max-width: 240px;
}

.footer-col h5 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
}

.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    h1, h2, h3, h4 {
        text-transform: none;
    }

    .hero-label, .about-label, .section-label {
        font-size: 0.68rem;
    }

    .topbar {
        display: none;
    }

    nav {
        padding: 0 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 60px 24px;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact {
        padding: 60px 24px;
        gap: 32px;
    }

    .contact-cols {
        grid-template-columns: 1fr;
    }

    .products,
    .benefits,
    .lineas {
        padding: 60px 24px;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-card .img-wrapper {
        height: 220px;
    }

    .about-desc {
        font-size: 1.12rem;
    }

    .benefit-item p {
        font-size: 0.98rem;
    }

    .linea-list li {
        font-size: 0.75rem;
    }

    .product-card.tall {
        grid-row: span 1;
    }

    .lineas-grid {
        grid-template-columns: 1fr;
    }

    .linea-card:nth-child(1) {
        grid-column: span 1;
    }

    .linea-card:nth-child(1) .linea-main {
        flex-direction: column;
    }

    .linea-card:nth-child(1) .linea-img {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .linea-kpi-num {
        font-size: 1.1rem;
    }

    .linea-kpi-label {
        font-size: 0.62rem;
    }

    .linea-eyebrow-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .cta-strip {
        flex-direction: column;
        padding: 60px 24px;
    }

    .btn-text-mobile { display: inline; }
    .btn-text-desktop { display: none; }

    footer {
        padding: 48px 24px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-mark {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-card.featured {
    background: #1a1a1a;
    color: white;
    border: none;
}

.product-card.featured .pc-title {
    color: white;
}

.product-card.featured .pc-desc {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .product-card.featured {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 961px) and (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .product-card.featured {
        grid-column: 1 / -1;
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 72px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

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

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.trust-badge {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.badge-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon img {
    width: 77px !important;
    height: 77px !important;
    object-fit: contain !important;
    display: block;
}

.badge-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.badge-text p {
    font-size: 0.9rem;
    color: var(--soft);
    line-height: 1.5;
}

.trust-contact-banner {
    background: var(--black);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.tcb-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--yellow);
}

.tcb-info p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.tcb-actions {
    display: flex;
    gap: 15px;
}

.btn-trust {
    background: var(--red);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-trust-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-trust:hover,
.btn-trust-outline:hover {
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .badge-icon {
        width: 90px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .badge-icon img {
        height: 77px;
        width: auto;
    }

    .trust-contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .section-h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 960px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .benefit-item {
        padding: 24px 20px;
    }


    .benefit-icon-svg {
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }

    .benefit-item h4 {
        margin-bottom: 4px;
    }

    .contact-info-grid {
        overflow: hidden;
    }

    .contact-info-item {
        padding: 16px;
    }

    .ci-text span {
        word-break: break-word;
        font-size: 0.75rem;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 24px;
    }

    section#contacto {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 32px;
    }

    .cotizacion {
        padding: 60px 24px;
    }

    .cotizacion-form-wrap {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-contact-banner {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .tcb-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-trust,
    .btn-trust-outline {
        text-align: center;
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-mark {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col ul {
        align-items: center;
    }
}

/* ── SOSTENIBILIDAD ── */
.sost {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sost-intro {
    color: var(--soft);
    font-size: 1rem;
    margin-top: 12px;
    margin-bottom: 40px;
    max-width: 680px;
    line-height: 1.7;
}

.sost-block-label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--soft);
    margin-bottom: 8px;
}

.sost-sub {
    color: var(--soft);
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* KPI strip */
.sost-kpi-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 56px;
}

.sost-kpi-cell {
    background: var(--bg);
    padding: 28px 20px;
    text-align: center;
}

.sost-kpi-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
}

.sost-kpi-label {
    font-size: 12px;
    color: var(--soft);
    font-weight: 500;
    line-height: 1.4;
}

/* ODS grid */
.sost-ods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.sost-ods-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
}

.sost-ods-badge {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.sost-ods-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sost-ods-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.sost-ods-desc {
    font-size: 12.5px;
    color: var(--soft);
    line-height: 1.6;
}

/* Donuts */
.sost-donuts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.sost-donut-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sost-donut-card svg {
    display: block;
}

.ring-fill {
    stroke-dasharray: 0 263.9;
}

.sost-donut-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
}

.sost-donut-desc {
    font-size: 11.5px;
    color: var(--soft);
    text-align: center;
    line-height: 1.5;
}

/* Bar chart card */
.sost-bar-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px 20px;
    margin-bottom: 48px;
}

.sost-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--soft);
    margin-bottom: 16px;
}

.sost-legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.sost-source {
    font-size: 10.5px;
    color: #b0b0b0;
    margin-top: 12px;
    font-style: italic;
}

/* Compromisos */
.sost-commit-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    margin-bottom: 48px;
}

.sost-commit-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sost-commit-intro {
    font-size: 14px;
    color: var(--soft);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 680px;
}

.sost-meta2032 {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #e8f5ee;
    border: 1px solid #b2dfce;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 28px;
}

.sost-meta2032-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #3f7e44;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sost-commit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sost-commit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
}

.sost-commit-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sost-commit-item-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.sost-commit-item-desc {
    font-size: 12px;
    color: var(--soft);
    line-height: 1.55;
}

/* Rol ambiental */
.sost-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sost-role-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 18px;
}

.sost-role-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.sost-role-desc {
    font-size: 12.5px;
    color: var(--soft);
    line-height: 1.6;
}

/* Responsive sostenibilidad */
@media (max-width: 960px) {
    .sost {
        padding: 60px 24px;
    }
    .sost-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .sost-ods-grid {
        grid-template-columns: 1fr;
    }
    .sost-donuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sost-commit-list {
        grid-template-columns: 1fr;
    }
    .sost-roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sost-commit-wrap {
        padding: 28px 20px;
    }
}

@media (max-width: 600px) {
    .sost-kpi-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .sost-kpi-num {
        font-size: 1.5rem;
    }
    .sost-donuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sost-roles-grid {
        grid-template-columns: 1fr;
    }
    .sost-legend {
        gap: 10px;
    }
}