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

:root {
    --bg-primary: #0b1f3a;
    --bg-secondary: #0d2a4a;
    --bg-footer: #060f1e;
    --blue-brand: #0d5cab;
    --accent-yellow: #f7c948;
    --text-white: #f7f9fc;
    --text-gray: #c7d0da;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--bg-primary);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(13,92,171,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(13,92,171,0.06) 0%, transparent 50%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow Condensed', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 85px;
    padding: 12px 0;
    transition: all 0.4s ease;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--blue-brand);
    height: 65px;
    padding: 8px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 260px;
    display: block;
    transition: all 0.4s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: var(--bg-primary);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid var(--blue-brand);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 92, 171, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: var(--accent-yellow);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image: url('fondos/fondohero.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(25%) saturate(1.3) contrast(1.2) brightness(0.85);
    z-index: 0;
}

.hero-duotone {
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    mix-blend-mode: multiply;
    opacity: 0.55;
    z-index: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 45%,
        rgba(6, 15, 30, 0.55) 100%
    );
    z-index: 1;
}

.hero-top-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(
        to bottom,
        rgba(6, 15, 30, 0.9) 0%,
        rgba(6, 15, 30, 0.5) 60%,
        transparent 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.hero-glow {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 201, 72, 0.18) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 0 0 60%;
    max-width: 60%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-decorative {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.hero-circles {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    border-color: rgba(247, 201, 72, 0.15);
    animation: pulse-circle 3s ease-in-out infinite;
}

.hero-circle-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(247, 201, 72, 0.08);
    animation: pulse-circle 3s ease-in-out infinite 0.5s;
}

.hero-circle-3 {
    width: 140px;
    height: 140px;
    border-color: rgba(247, 201, 72, 0.04);
    animation: pulse-circle 3s ease-in-out infinite 1s;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.hero-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    color: rgba(247, 201, 72, 0.6);
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--blue-brand);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-slogan {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-line {
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin-bottom: 25px;
}

.hero-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 18px 36px;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e5b63d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 201, 72, 0.3);
}

.btn-primary svg {
    width: 22px;
    height: 22px;
}

/* STATS */
.stats {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

/* MISSION VISION */
.mission-vision {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-item {
    text-align: center;
    padding: 2rem;
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-yellow);
}

.mission-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.mission-item p {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.8;
}

.mission-divider {
    width: 1px;
    background-color: var(--blue-brand);
    opacity: 0.4;
    align-self: stretch;
}

/* COMERCIALIZACION */
.comercial {
    background-color: var(--bg-primary);
}

.comercial-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 50px;
    margin-top: -30px;
}

.comercial-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

.gallery-item.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.gallery-item.no-photo i {
    font-size: 3rem;
    color: var(--accent-yellow);
    opacity: 0.4;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(13,92,171,0.3);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item span {
    display: block;
    text-align: center;
    padding: 0.6rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    background: var(--bg-secondary);
}

.brands-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
    padding: 2rem 0;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(13, 92, 171, 0.25);
    border-bottom: 1px solid rgba(13, 92, 171, 0.25);
}

.brands-strip img {
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brands-strip img:hover {
    opacity: 1;
}

.brands-strip img.brand-large {
    height: 62px;
    max-width: 160px;
}

.brands-strip img.brand-xlarge {
    height: 90px;
    max-width: 200px;
}

.brands-strip img.brand-mono {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.55;
}

.brands-strip img.brand-mono:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .brands-strip {
        gap: 1.8rem;
    }

    .brands-strip img {
        height: 26px;
        max-width: 85px;
    }

    .brands-strip img.brand-large {
        height: 40px;
        max-width: 110px;
    }

    .brands-strip img.brand-xlarge {
        height: 55px;
        max-width: 140px;
    }
}

.comercial-cta {
    text-align: center;
    margin-top: 30px;
}

.comercial-cta p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-family: 'Barlow', sans-serif;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--accent-yellow);
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid var(--accent-yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--accent-yellow);
    color: var(--bg-primary);
}

/* FABRICACION */
.fabricacion {
    background-color: var(--bg-secondary);
}

.fabricacion-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 4rem;
    align-items: center;
}

.fab-badge {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--accent-yellow);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.fab-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.fab-content > p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.fab-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.fab-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-family: 'Barlow', sans-serif;
}

.fab-check {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.fab-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    background-color: var(--bg-primary);
    border: 2px dashed rgba(13, 92, 171, 0.4);
    border-radius: 12px;
}

.fab-placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--accent-yellow);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.fab-placeholder span {
    color: var(--text-gray);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* SECTIONS COMMON */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 15px auto 50px;
}

.contact .section-title::after {
    display: none;
}

/* SERVICIOS V8 - FOTO FUSIONADA CON SOMBRA */
.services-v5 {
    background-color: var(--bg-primary);
    padding-bottom: 60px;
}

.services-v5-list {
    display: flex;
    flex-direction: column;
}

.service-row-v6 {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.service-row-v6.no-photo {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.service-row-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.6) 50%, transparent 100%);
    pointer-events: none;
}

.service-row-v6:nth-child(even) .service-row-overlay {
    background: linear-gradient(to left, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.6) 50%, transparent 100%);
}

.service-row-v6.no-photo .service-row-overlay {
    background: none;
}

.row-icon-watermark {
    position: absolute;
    font-size: 12rem;
    color: var(--accent-yellow);
    opacity: 0.07;
    pointer-events: none;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.service-row-v6:nth-child(even) .row-icon-watermark {
    right: auto;
    left: 8%;
}

.service-row-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 3rem 5%;
}

.service-row-v6:nth-child(even) .service-row-inner {
    margin-left: auto;
    text-align: right;
}

.service-row-inner h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.service-row-inner p {
    font-family: 'Barlow', sans-serif;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.85;
}

.services-v4-cta {
    text-align: center;
    margin-top: 3.5rem;
}

@media (max-width: 900px) {
    .service-row-v6 {
        min-height: 320px;
        background-position: center top;
    }

    .service-row-overlay {
        background: linear-gradient(to top, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.7) 60%, transparent 100%) !important;
    }

    .service-row-inner {
        max-width: 100%;
        padding: 2rem 20px;
        margin-top: auto;
        text-align: left !important;
    }

    .service-row-inner h3 {
        font-size: 1.8rem;
    }

    .service-row-inner p {
        font-size: 0.98rem;
    }

    .row-icon-watermark {
        font-size: 7rem;
        right: 5% !important;
        left: auto !important;
        top: 20%;
        transform: none;
    }
}

/* WHY US */
.why-us {
    background-color: var(--bg-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.why-item.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--blue-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
}

.why-icon svg {
    width: 30px;
    height: 30px;
}

.why-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.why-item p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CONTACT */
.contact {
    background-color: #060f1e;
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 50px,
        rgba(13, 92, 171, 0.06) 50px,
        rgba(13, 92, 171, 0.06) 51px
    );
}

.contact-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.contact-subtitle {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.contact-phone {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    margin-top: 25px;
    font-size: 1rem;
}

.contact-phone a {
    color: var(--text-white);
    font-weight: 600;
}

.contact-phone a:hover {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(13, 92, 171, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-white);
}

.social-link:hover {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--bg-primary);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    border: 2px solid var(--blue-brand);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FOOTER */
.footer {
    background-color: var(--bg-footer);
    padding: 40px 0;
    border-top: 1px solid rgba(13, 92, 171, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-text span {
    color: var(--accent-yellow);
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-links svg {
    width: 22px;
    height: 22px;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 16px 28px;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 25px rgba(247, 201, 72, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(247, 201, 72, 0.5);
}

.whatsapp-btn svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.whatsapp-btn span {
    transition: all 0.3s ease;
}

.whatsapp-btn.collapsed {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.whatsapp-btn.collapsed svg {
    margin: 0;
    display: block;
    flex-shrink: 0;
}

.whatsapp-btn.collapsed span {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(247, 201, 72, 0.4);
    }
    50% {
        box-shadow: 0 5px 40px rgba(247, 201, 72, 0.6);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(247, 201, 72, 0.2);
    }

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

    .section {
        padding: 70px 0;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero-decorative {
        display: none;
    }

    .hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-bg-layer {
        background-position: 75% center;
    }

    .hero-duotone {
        opacity: 0.75;
    }

    .hero-vignette {
        background: radial-gradient(
            ellipse at center,
            transparent 25%,
            rgba(6, 15, 30, 0.8) 100%
        );
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        padding: 14px 22px;
        font-size: 0.9rem;
    }

    .whatsapp-btn.collapsed {
        padding: 14px;
    }

    .logo img {
        height: 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mission-divider {
        width: 80%;
        height: 1px;
        margin: 2rem auto;
    }

    .fabricacion-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fab-content {
        text-align: center;
    }

    .fab-list {
        display: inline-block;
        text-align: left;
    }

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

/* Fade in animation helper */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Fallback visibility for new sections */
.mission-vision,
.comercial,
.fabricacion {
    opacity: 1 !important;
    transform: none !important;
}

/* PROYECTOS REALIZADOS */
.proyectos-realizados {
    position: relative;
    overflow: hidden;
}

.proyectos-realizados::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondoproyectos.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(9px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.proyectos-realizados::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    opacity: 0.5;
    z-index: 0;
}

.proyectos-realizados .container {
    position: relative;
    z-index: 1;
}

.industrial-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industrial-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    margin-bottom: 1rem;
}

.industrial-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-yellow);
    margin: 15px auto 0;
}

.industrial-header p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.proyectos-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.proyectos-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.project-card-big {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(247, 201, 72, 0);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.project-card-big:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.project-card-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card-big:hover img {
    transform: scale(1.06);
}

.project-card-big.no-photo {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.project-card-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-icon i {
    font-size: 5rem;
    color: var(--accent-yellow);
    opacity: 0.15;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 15, 30, 0.97) 0%,
        rgba(6, 15, 30, 0.6) 45%,
        rgba(6, 15, 30, 0.1) 100%
    );
    transition: background 0.3s ease;
}

.project-card-big:hover .project-card-overlay {
    background: linear-gradient(
        to top,
        rgba(6, 15, 30, 0.98) 0%,
        rgba(6, 15, 30, 0.65) 50%,
        rgba(13, 92, 171, 0.15) 100%
    );
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
}

.project-card-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.2;
}

.project-card-meta {
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    color: var(--accent-yellow);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.project-card-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* SERVICIOS INDUSTRIALES - BLUEPRINT */
.industrial-services {
    position: relative;
    overflow: hidden;
}

.mission-vision::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondomisionvision.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(18px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondostats.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(18px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.industrial-services::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondoindustrial.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(18px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.mission-vision::after,
.industrial-services::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    opacity: 0.55;
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #060f1e;
    opacity: 0.82;
    z-index: 0;
}

.stats .container,
.mission-vision .container,
.industrial-services .container {
    position: relative;
    z-index: 1;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem 3rem;
    margin: 3rem 0 3.5rem;
}

.blueprint-item {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.6rem;
    border-left: 2px solid rgba(247, 201, 72, 0.5);
}

.blueprint-item::before,
.blueprint-item::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 14px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.blueprint-item::before {
    top: 0;
}

.blueprint-item::after {
    bottom: 0;
}

.blueprint-icon {
    font-size: 2.1rem;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    display: block;
}

.blueprint-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.blueprint-item p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.65;
}

.industrial-cta {
    text-align: center;
}

.industrial-cta p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

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

    .proyectos-bottom {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .proyectos-top,
    .proyectos-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .project-card-big {
        height: 260px;
    }

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

/* SUBTITULO DE MARCAS */
.brands-subtitle {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    opacity: 0.5;
    margin: 0 0 1rem;
}

/* MANUFACTURA - FABRICACION V2 */
.fabricacion-v2 {
    background-color: var(--bg-secondary);
}

.fab-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
}

.fab-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(247, 201, 72, 0);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.fab-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
}

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

.fab-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 15, 30, 0.97) 0%,
        rgba(6, 15, 30, 0.55) 45%,
        rgba(6, 15, 30, 0.05) 100%
    );
}

.fab-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
}

.fab-card-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.fab-card-content p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .fab-card-grid {
        grid-template-columns: 1fr;
    }

    .fab-card {
        height: 300px;
    }
}

.fab-header-wide p {
    max-width: 900px;
}

/* SERVICIOS INDUSTRIALES - EVIDENCIA CON FOTO */
.blueprint-item.has-photo {
    border-left: 2px solid rgba(247, 201, 72, 0.5);
}

.blueprint-photo {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
}

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

.blueprint-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(13, 92, 171, 0.2);
}

/* FRANJA DE CONFIANZA */
.industrial-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 0;
    margin: 1rem 0 2.5rem;
    border-top: 1px solid rgba(247, 201, 72, 0.2);
    border-bottom: 1px solid rgba(247, 201, 72, 0.2);
}

.trust-stat {
    text-align: center;
}

.trust-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-yellow);
    line-height: 1;
}

.trust-label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background-color: rgba(247, 201, 72, 0.25);
}

@media (max-width: 768px) {
    .industrial-trust-strip {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .trust-num {
        font-size: 1.5rem;
    }
}

/* PROYECTOS - CARD HERO DESTACADA */
.project-card-hero {
    grid-column: span 2;
}

.project-card-hero .project-card-content h3 {
    font-size: 1.7rem;
}

.project-card-hero .project-card-content p {
    font-size: 0.95rem;
    max-width: 70%;
}

@media (max-width: 768px) {
    .project-card-hero {
        grid-column: span 1 !important;
    }

    .project-card-hero .project-card-content p {
        max-width: 100%;
    }
}

/* INDUSTRIAL V3 - LADO A LADO SIN OVERLAY */
.ind-row-v2 {
    padding: 4.5rem 0;
}

.ind-row-inner {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.ind-row-v2.reverse .ind-row-inner {
    flex-direction: row-reverse;
}

.ind-row-media {
    flex: 0 0 42%;
}

.ind-row-media img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.ind-row-text {
    flex: 1;
}

.ind-row-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1.3rem;
}

.ind-row-text h3 .accent {
    color: var(--accent-yellow);
    display: block;
}

.ind-row-text p.ind-intro {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.ind-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-white);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
}

.ind-checklist li:last-child {
    margin-bottom: 0;
}

.ind-check-icon {
    color: var(--accent-yellow);
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 900px) {
    .ind-row-inner,
    .ind-row-v2.reverse .ind-row-inner {
        flex-direction: column;
    }

    .ind-row-media {
        flex: 0 0 auto;
        width: 100%;
    }

    .ind-row-text h3 {
        font-size: 1.7rem;
    }
}

/* INDUSTRIAL V4 - CARDS FLOTANTES */
.industrial-services {
    padding: 100px 0;
}

.ind-float-card {
    display: grid;
    grid-template-columns: 42% 58%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
    margin-bottom: 2.2rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ind-float-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 55px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
    .ind-float-card {
        grid-template-columns: 1fr;
    }
}

.ind-float-media {
    height: 460px;
    overflow: hidden;
}

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

.ind-float-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem;
}

.ind-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.ind-float-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 1.4rem;
}

.ind-float-text p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.ind-float-btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--bg-primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    transition: all 0.3s ease;
}

.ind-float-btn:hover {
    background-color: #e5b63d;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .ind-float-card {
        grid-template-columns: 1fr;
    }

    .ind-float-media {
        height: 260px;
    }

    .ind-float-text {
        padding: 2rem;
    }

    .ind-float-text h3 {
        font-size: 1.6rem;
    }
}

/* FABRICACION V3 - CARDS FLOTANTES VERTICALES */
.fab-float-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fab-float-card {
    background-color: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.fab-float-card:hover {
    transform: translateY(-6px);
}

.fab-float-media {
    height: 240px;
    overflow: hidden;
}

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

.fab-float-text {
    padding: 2rem;
}

.fab-float-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.fab-float-text p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .fab-float-grid {
        grid-template-columns: 1fr;
    }

    .fab-float-media {
        height: 220px;
    }
}

/* COMERCIALIZACION V2 - EDITORIAL + CARRUSEL PREMIUM */
.comercial {
    position: relative;
    overflow: hidden;
}

.comercial::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondoproductos.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(18px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.comercial::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    opacity: 0.55;
    z-index: 0;
}

.comercial .container {
    position: relative;
    z-index: 1;
}

.comercial-layout {
    display: grid;
    grid-template-columns: 40% 58%;
    gap: 3.5rem;
    align-items: center;
    margin: 3rem 0 3.5rem;
}

.comercial-intro {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 1.08rem;
    line-height: 1.8;
}

.comercial-checklist {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0;
    column-count: 2;
    column-gap: 2rem;
}

.comercial-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    break-inside: avoid;
}

.comercial-checklist .ind-check-icon {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.comercial-carousel-panel {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.comercial-carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.comercial-carousel-slide.active {
    opacity: 1;
}

@media (max-width: 900px) {
    .comercial-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comercial-carousel-panel {
        height: 320px;
    }

    .comercial-checklist {
        column-count: 1;
    }
}

.comercial-checklist li {
    cursor: pointer;
    transition: color 0.25s ease;
}

.comercial-checklist li:hover {
    color: var(--accent-yellow);
}

.comercial-checklist li.active {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* TRUST STAT CON ICONO */
.trust-icon {
    font-size: 1.8rem;
    color: var(--accent-yellow);
    display: block;
    margin-bottom: 6px;
}

/* FABRICACION CARDS - DELIMITADAS */
.fab-card-v2 {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(247, 201, 72, 0.25);
    border-radius: 16px;
    padding: 1.8rem;
}

.fab-card-v2 h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 1.3rem;
    line-height: 1.2;
}

.fab-card-v2-media {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fab-card-v2-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fab-card-v2 p {
    font-family: 'Barlow', sans-serif;
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* FONDO DE SECCION - FABRICACION */
.fabricacion-v2 {
    position: relative;
    overflow: hidden;
}

.fabricacion-v2::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-image: url('fondos/fondofabricacion.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(18px) grayscale(55%) brightness(0.45) contrast(1.1);
    z-index: 0;
}

.fabricacion-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--bg-primary);
    opacity: 0.55;
    z-index: 0;
}

.fabricacion-v2 .container {
    position: relative;
    z-index: 1;
}

/* ANIMACIONES DE APARICIÓN AL SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.visible {
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* PARALLAX HERO - OVERSCAN PARA EVITAR BORDES VISIBLES */
.hero-bg-layer {
    top: -80px;
    bottom: -80px;
    left: 0;
    right: 0;
    will-change: transform;
}

/* TITULO MEGA - NUESTROS SERVICIOS */
.services-mega-title {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.industrial-header h2.section-sub-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.industrial-header h2.section-sub-label::after {
    display: none;
}