/**
 * OR64 - Home v4.0
 * Ultra minimal, luxury, 2050 aesthetic
 * Sharp edges, deep vivid blue, precise spacing
 */

:root {
    --color-primary: #e8732e;
    --color-primary-dark: #d4622a;
    --color-secondary: #1a1a1a;
    --color-accent: #e8732e;
    --color-copper: #e8732e;
    --color-copper-dark: #d4622a;
    --color-text: #1a1a1a;
    --color-text-secondary: #5a5a5a;
    --color-text-light: rgba(255, 255, 255, 0.7);
    --color-border: rgba(26, 26, 26, 0.08);
    --color-bg: #ffffff;
    --color-bg-dark: #1a1a1a;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: var(--ds-font-heading);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero - Bold 700 (protagonista) */
.hero__title,
.cta-final__title {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Títulos de sección - Medium 500 (estilo Samsung) */
.catalogo__title,
.diferenciadores__title,
.transformacion__title,
.sectores__title,
.grupo__title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 48px);
}

/* Títulos de cards - SemiBold 600 */
.catalogo__card-title,
.sectores__card-title,
.grupo__card-name,
.diferenciadores__item-title {
    font-family: var(--font-heading);
    font-weight: 600;
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: var(--color-copper);
    color: #fff;
    border-color: var(--color-copper);
}

.btn--primary:hover {
    background: var(--color-copper-dark);
    color: #fff;
    border-color: var(--color-copper-dark);
}

.btn--secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

.btn--lg {
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.14em;
}

/* ============================================
   1. HERO
   ============================================ */

/* Keyframes para animaciones de entrada */
@keyframes hero-zoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-left {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-fade-right {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    animation: hero-zoom 1.8s ease-out forwards;
    transform-origin: center center;
}

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 20, 0.4) 0%,
        rgba(15, 15, 20, 0.6) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero__content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10vh;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    margin-bottom: 24px;
    opacity: 0;
    animation: hero-fade-left 0.7s ease-out 0.2s forwards;
}

.hero__title {
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px;
    width: 100%;
    max-width: none;
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, #e8732e 0%, #ff7a1a 25%, #ffcaaa 48%, #ff7a1a 52%, #ff6a00 75%, #e8732e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: var(--color-text-light);
    margin: 0 0 40px;
    max-width: 520px;
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* ── Hero Tags — Minimal inline ── */
.hero__tags {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 64px;
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero__tags span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__tags span:last-child {
    border-right: none;
}

/* Reducir animaciones si el usuario lo prefiere */
@media (prefers-reduced-motion: reduce) {
    .hero__bg-image,
    .hero__eyebrow,
    .hero__title,
    .hero__subtitle,
    .hero__actions,
    .hero__tags {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.hero__actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* ============================================
   2. CATÁLOGO — Paneles full-image 3x2
   ============================================ */
.catalogo {
    padding: 140px 80px;
    background: var(--color-bg);
}

.catalogo__container {
    max-width: 1400px;
    margin: 0 auto;
}

.catalogo__header {
    margin-bottom: 80px;
}

.catalogo__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper);
    background: rgba(30, 30, 30, 0.06);
    padding: 8px 16px;
    margin-bottom: 24px;
}

.catalogo__title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0;
}

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

.catalogo__panel {
    position: relative;
    display: block;
    height: 320px;
    overflow: hidden;
    text-decoration: none;
}

.catalogo__panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalogo__panel:hover .catalogo__panel-img {
    transform: scale(1.04);
}

.catalogo__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.9) 0%,
        rgba(30, 30, 30, 0.4) 50%,
        rgba(30, 30, 30, 0.15) 100%
    );
    transition: background 0.4s ease;
}

.catalogo__panel:hover .catalogo__panel-overlay {
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.92) 0%,
        rgba(30, 30, 30, 0.35) 50%,
        rgba(30, 30, 30, 0.2) 100%
    );
}

.catalogo__panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    z-index: 1;
}

.catalogo__panel-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 8px;
}

.catalogo__panel-desc {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
    margin: 0 0 14px;
}

.catalogo__panel-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.catalogo__panel:hover .catalogo__panel-link {
    color: #fff;
}

/* 6ª card — CTA "Ver catálogo completo" */
.catalogo__panel--cta {
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 50%, #2a2a2a 100%);
}

.catalogo__panel--cta .catalogo__panel-overlay {
    background: none;
}

.catalogo__panel-content--cta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}

.catalogo__panel-cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.catalogo__panel--cta .catalogo__panel-title {
    font-size: 28px;
}

.catalogo__panel--cta:hover .catalogo__panel-link {
    color: var(--color-accent);
}

/* ============================================
   DESTACADO — Bloque 50/50 impacto visual
   ============================================ */
.destacado {
    background: #1e1e1e;
}

.destacado__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.destacado__imagen {
    position: relative;
    overflow: hidden;
}

.destacado__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destacado__contenido {
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 50%, #2a2a2a 100%);
}

.destacado__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper);
    margin-bottom: 24px;
}

.destacado__titulo {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
}

.destacado__texto {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0 0 36px;
    max-width: 440px;
}

.destacado__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
}

.destacado__specs li {
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.75) 0%, rgba(245, 184, 0, 0.7) 40%, rgba(230, 168, 0, 0.65) 100%);
}

.destacado__spec-valor {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    margin-bottom: 4px;
}

.destacado__spec-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.destacado__link {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 4px;
    transition: var(--transition);
}

.destacado__link:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

/* Responsive destacado */
@media (max-width: 1024px) {
    .destacado__contenido {
        padding: 60px 40px;
    }
}

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

    .destacado__imagen {
        height: 320px;
    }

    .destacado__contenido {
        padding: 48px 24px;
    }

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

/* ============================================
   3. DIFERENCIADORES
   ============================================ */
.diferenciadores {
    padding: 140px 80px;
    background: #f5f7fa;
}

.diferenciadores__container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.diferenciadores__header {
    max-width: 600px;
    margin-bottom: 80px;
}

.diferenciadores__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper);
    background: rgba(30, 30, 30, 0.06);
    padding: 8px 16px;
    margin-bottom: 24px;
}

.diferenciadores__title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

/* Editorial collage — overlapping, scattered, editorial */
.diferenciadores__mosaic {
    position: relative;
    height: 520px;
    margin-bottom: 80px;
}

.diferenciadores__mosaic-img {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    border: 3px solid #fff;
}

.diferenciadores__mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 1: Encintado operario — HERO horizontal, grande, fondo */
.diferenciadores__mosaic-img--1 {
    width: 52%;
    height: 300px;
    top: 40px;
    left: 8%;
    z-index: 1;
}

/* 2: Hilo metálico — VERTICAL, encima a la izquierda */
.diferenciadores__mosaic-img--2 {
    width: 22%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 3;
}

/* 3: Rollo corte — horizontal, arriba derecha */
.diferenciadores__mosaic-img--3 {
    width: 36%;
    height: 220px;
    top: 0;
    right: 0;
    z-index: 2;
}

/* 4: Palets OR64 — horizontal, abajo centro-derecha, FONDO */
.diferenciadores__mosaic-img--4 {
    width: 34%;
    height: 200px;
    bottom: 0;
    right: 12%;
    z-index: 1;
}

/* 5: Operario almacén — horizontal pequeño, abajo izquierda */
.diferenciadores__mosaic-img--5 {
    width: 28%;
    height: 180px;
    bottom: 0;
    left: 14%;
    z-index: 4;
}

/* 6: Aluminio — VERTICAL, derecha, POR ENCIMA */
.diferenciadores__mosaic-img--6 {
    width: 20%;
    height: 300px;
    top: 120px;
    right: 2%;
    z-index: 4;
}

.diferenciadores__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
}

.diferenciadores__item {
    position: relative;
    padding: 56px 40px 48px;
    background: var(--color-bg);
    transition: var(--transition);
    overflow: hidden;
}

.diferenciadores__item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.diferenciadores__item-number {
    position: absolute;
    top: -18px;
    right: -8px;
    font-family: var(--font-heading);
    font-size: 140px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-copper);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.diferenciadores__item-title {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--color-text);
    margin: 0 0 16px;
    min-height: 2.6em;
}

.diferenciadores__item-text {
    position: relative;
    z-index: 1;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}


/* ============================================
   4. TRANSFORMACIÓN — Parallax + overlay
   ============================================ */
.transformacion {
    padding: 140px 80px;
    background: #3a3a3a;
    position: relative;
    overflow: hidden;
}

.transformacion__bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.transformacion__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

/* Fallback: en móvil background-attachment:fixed no funciona bien */
@media (max-width: 1024px) {
    .transformacion__bg {
        background-attachment: scroll;
        inset: 0;
    }
}

.transformacion__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.transformacion__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.transformacion__title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 24px;
}

.transformacion__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0 0 40px;
}

.transformacion__capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(60, 60, 60, 0.3);
}

.transformacion__capability {
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.75) 0%, rgba(245, 184, 0, 0.7) 40%, rgba(230, 168, 0, 0.65) 100%);
    transition: var(--transition);
}

.transformacion__capability:hover {
    background: linear-gradient(135deg, rgba(255, 214, 51, 0.82) 0%, rgba(255, 204, 0, 0.78) 40%, rgba(240, 186, 0, 0.72) 100%);
}

.transformacion__capability-value {
    display: block;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.transformacion__capability-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.transformacion__capability-detail {
    display: block;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   5. SECTORES — Paneles industriales full-image
   ============================================ */
.sectores {
    padding: 140px 80px 140px;
    background: #f0f2f5;
    position: relative;
}

.sectores__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sectores__header {
    margin-bottom: 80px;
    text-align: center;
}

.sectores__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 8px 16px;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.04);
}

.sectores__title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0;
}

.sectores__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 80px;
}

.sectores__panel {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    text-decoration: none;
}

.sectores__panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sectores__panel:hover .sectores__panel-img {
    transform: scale(1.04);
}

.sectores__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.85) 0%,
        rgba(30, 30, 30, 0.25) 55%,
        rgba(30, 30, 30, 0.1) 100%
    );
    transition: background 0.4s ease;
}

.sectores__panel:hover .sectores__panel-overlay {
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.9) 0%,
        rgba(30, 30, 30, 0.3) 55%,
        rgba(30, 30, 30, 0.15) 100%
    );
}

.sectores__panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    z-index: 1;
}

.sectores__panel-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 10px;
}

.sectores__panel-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.sectores__panel:hover .sectores__panel-link {
    color: #fff;
}

.sectores__cta {
    text-align: center;
}

/* ============================================
   6. GRUPO — Paneles verticales full-image
   ============================================ */
.grupo {
    padding: 140px 80px;
    background: var(--color-bg);
    position: relative;
    z-index: 2;
}

.grupo__container {
    max-width: 1400px;
    margin: 0 auto;
}

.grupo__header {
    margin-bottom: 80px;
}

.grupo__eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper);
    background: rgba(30, 30, 30, 0.06);
    padding: 8px 16px;
    margin-bottom: 24px;
}

.grupo__title {
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin: 0;
}

.grupo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 80px;
}

.grupo__panel {
    position: relative;
    display: block;
    height: 480px;
    overflow: hidden;
    text-decoration: none;
}

.grupo__panel-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grupo__panel:hover .grupo__panel-img {
    transform: scale(1.04);
}

.grupo__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.92) 0%,
        rgba(30, 30, 30, 0.55) 45%,
        rgba(30, 30, 30, 0.15) 100%
    );
    transition: background 0.4s ease;
}

.grupo__panel:hover .grupo__panel-overlay {
    background: linear-gradient(
        0deg,
        rgba(30, 30, 30, 0.95) 0%,
        rgba(30, 30, 30, 0.45) 45%,
        rgba(30, 30, 30, 0.2) 100%
    );
}

.grupo__panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 1;
}

.grupo__panel-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 4px;
}

.grupo__panel-tagline {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.grupo__panel-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0 0 16px;
}

.grupo__panel-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.grupo__panel:hover .grupo__panel-link {
    color: #fff;
}

.grupo__cta {
    text-align: center;
}

/* ============================================
   7. FABRICANTES
   ============================================ */
.fabricantes {
    padding: 100px 80px;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

.fabricantes__container {
    max-width: 1400px;
    margin: 0 auto;
}

.fabricantes__header {
    text-align: center;
    margin-bottom: 56px;
}

.fabricantes__title {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    margin: 0;
}

.fabricantes__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.fabricantes__logo {
    transition: var(--transition);
}

.fabricantes__logo:hover {
    opacity: 0.8;
}

.fabricantes__logo img {
    max-height: 50px;
    width: auto;
}

.fabricantes__logo--small img {
    max-height: 25px; /* Mitad del tamaño base */
}

.fabricantes__logo--large img {
    max-height: 100px; /* Doble del tamaño base */
}

/* ============================================
   8. CTA FINAL
   ============================================ */
.cta-final {
    padding: 0;
    position: relative;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        #c45a1e 0%, #e8732e 20%, #ffcaaa 45%,
        #ff7a1a 55%, #e8732e 80%, #c45a1e 100%);
}

.cta-final__container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 80px;
    text-align: center;
    background: #222222;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.cta-final__container::before {
    display: none;
}

.cta-final__title {
    font-size: clamp(32px, 4.5vw, 48px);
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 20px;
}

.cta-final__text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.cta-final__actions .ds-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(165deg, #f0944a 0%, #e8732e 35%, #c45a1e 70%, #e8732e 100%);
    color: #fff;
    border: none;
    padding: 20px 48px 20px 56px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow:
        0 4px 16px rgba(232, 115, 46, 0.25),
        0 1px 0 rgba(255, 200, 150, 0.3) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-final__actions .ds-btn .ds-btn__arrow {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.cta-final__actions .ds-btn::before {
    display: none;
}

.cta-final__actions .ds-btn:hover {
    background: transparent;
    border: 1px solid;
    border-image: linear-gradient(90deg, #c45a1e, #e8732e, #ffcaaa, #ff7a1a, #e8732e) 1;
    box-shadow: 0 0 20px rgba(232, 115, 46, 0.15);
    transform: translateY(-2px);
}

.cta-final__actions .ds-btn:hover .ds-btn__arrow {
    transform: translateX(6px);
}

.cta-final__actions .ds-btn:hover::before {
    left: 140%;
}

.cta-final__contact {
    display: flex;
    justify-content: center;
    gap: 56px;
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-final__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
}

.cta-final__contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-copper);
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .catalogo__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciadores__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciadores__mosaic {
        height: 420px;
    }

    .diferenciadores__mosaic-img--1 { width: 55%; height: 240px; top: 30px; left: 5%; }
    .diferenciadores__mosaic-img--2 { width: 24%; height: 270px; top: 0; left: 0; }
    .diferenciadores__mosaic-img--3 { width: 38%; height: 190px; top: 0; right: 0; }
    .diferenciadores__mosaic-img--4 { width: 38%; height: 170px; bottom: 0; right: 8%; }
    .diferenciadores__mosaic-img--5 { width: 30%; height: 160px; bottom: 0; left: 10%; }
    .diferenciadores__mosaic-img--6 { display: none; }

    .sectores__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
}

@media (max-width: 1024px) {
    .hero__container,
    .catalogo,
    .diferenciadores,
    .transformacion,
    .sectores,
    .grupo,
    .fabricantes {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cta-final {
        padding: 0;
    }

    .cta-final__container {
        padding: 60px 60px;
    }

    .transformacion__container {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .grupo__grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .grupo__panel {
        height: 400px;
    }
}

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

    .hero__container {
        padding: 0 24px;
        flex-direction: column;
        justify-content: center;
        gap: 48px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__eyebrow {
        margin-bottom: 24px;
    }

    .hero__title {
        font-size: clamp(28px, 8vw, 42px);
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hero__tags {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 28px;
    }

    .hero__tags span {
        font-size: 9px;
        padding: 0 10px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .catalogo,
    .diferenciadores,
    .transformacion,
    .sectores,
    .grupo {
        padding: 80px 24px;
    }

    .cta-final {
        padding: 0;
    }

    .cta-final__container {
        padding: 48px 32px;
    }

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

    .catalogo__panel {
        height: 260px;
    }

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

    .diferenciadores__mosaic {
        height: 340px;
        margin-bottom: 40px;
    }

    .diferenciadores__mosaic-img--1 { width: 65%; height: 200px; top: 20px; left: 0; }
    .diferenciadores__mosaic-img--2 { display: none; }
    .diferenciadores__mosaic-img--3 { width: 45%; height: 180px; top: 0; right: 0; }
    .diferenciadores__mosaic-img--4 { width: 50%; height: 160px; bottom: 0; right: 5%; }
    .diferenciadores__mosaic-img--5 { display: none; }
    .diferenciadores__mosaic-img--6 { display: none; }

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

    .sectores__grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .sectores__panel {
        height: 240px;
    }

    .fabricantes {
        padding: 60px 24px;
    }

    .fabricantes__logos {
        flex-wrap: wrap;
        gap: 40px;
    }

    .cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-final__contact {
        flex-direction: column;
        gap: 24px;
    }
}
