:root {
    /* Color Palette - Corporate Dark Elegance */
    --bg-base: #0B0E14;
    --bg-surface: #121721;
    --bg-glass: rgba(18, 23, 33, 0.7);

    --accent-primary: #00D2E0;
    /* Cyan profesional */
    --accent-dark: #007A87;

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-btn: #0B0E14;
    /* Texto negro de alto contraste sobre botones */

    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 210, 224, 0.3);

    --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
}

/* CONTENEDOR MAESTRO / MASTER WRAPPER */
.master-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* Reglas de prevención estricta de desbordamiento horizontal */
section,
.glass-panel,
.grid-3,
.grid-4,
.grid-5,
.services-grid,
.about,
.about-grid,
.about-container-box,
.about-text,
.about-image-wrapper,
.mission-vision,
.mv-card,
.stats,
.cta-box,
.footer-grid,
.footer-bottom {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-glass);
    width: 100%;
}

.bg-dark-glass {
    background: #0E131D;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.highlight {
    color: var(--accent-primary);
}

.img-fluid {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.prod-image-wrap {
    overflow: hidden;
    border-radius: 10px;
}

.prod-image-wrap img {
    height: 180px;
    transition: transform 0.4s ease;
}

.interactive-card:hover .prod-image-wrap img {
    transform: scale(1.05);
}

.about-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 250px;
    max-height: 340px;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: cover;
    display: block;
}

.rounded {
    border-radius: 12px;
}

.shadow-glow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Badge Corporativo */
.corporate-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    background: rgba(0, 210, 224, 0.1);
    border-left: 3px solid var(--accent-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

/* Utilities */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-20 {
    margin-bottom: 1.5rem;
}

.mt-10 {
    margin-top: 2rem;
}

.mt-20 {
    margin-top: 4rem;
}

.mt-6 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* --- Modern Glassmorphism Navigation Bar --- */
/* --- Modern Glassmorphism Navigation Bar Header --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.9rem 0;
    background: rgba(11, 14, 20, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 210, 224, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(8, 11, 16, 0.95);
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 210, 224, 0.25);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.75);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover img {
    transform: scale(1.04);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 210, 224, 0.6));
}

.nav-links {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.5rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 1.1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--accent-primary);
    background: rgba(0, 210, 224, 0.14);
    font-weight: 600;
    box-shadow: 0 0 15px rgba(0, 210, 224, 0.15);
}

/* Header Quote Action Button */
.btn-nav-quote {
    background: linear-gradient(135deg, #00D2E0 0%, #008899 100%) !important;
    color: #05080C !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.55rem 1.35rem !important;
    border-radius: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 0 20px rgba(0, 210, 224, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-nav-quote:hover {
    background: linear-gradient(135deg, #2BE6F5 0%, #00B3C4 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 210, 224, 0.6) !important;
    color: #05080C !important;
}

.btn-nav-quote svg {
    transition: transform 0.3s ease;
}

.btn-nav-quote:hover svg {
    transform: translateX(2px) scale(1.1);
}

/* BOTONES DE NAVEGACIÓN Y ACCIÓN GENERALES */
.btn-primary,
.btn-primary-sm {
    background: linear-gradient(135deg, #00D2E0 0%, #0099A8 100%);
    color: #05080C !important;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 4px 18px rgba(0, 210, 224, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    padding: 0.95rem 2.4rem;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-primary-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
}

.btn-primary:hover,
.btn-primary-sm:hover {
    background: linear-gradient(135deg, #2BE6F5 0%, #00C2D1 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 224, 0.5);
    color: #05080C !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.95rem 2.2rem;
    border-radius: 30px;
    display: inline-block;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 210, 224, 0.15);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    position: relative;
}

.hamburger::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
}

.hamburger::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 14, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

/* --- Standalone Page Banner & Header --- */
.page-banner {
    padding: 6.5rem 1.5rem 2.8rem;
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 224, 0.08) 0%, rgba(11, 14, 20, 1) 70%);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.page-title span {
    color: var(--accent-primary);
}

.page-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Contact Page Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1rem;
}

.contact-form-box {
    padding: 2.5rem;
    border-radius: 16px;
}

.btn-full {
    width: 100%;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.35rem 1.5rem;
    border-radius: 12px;
    background: rgba(18, 23, 33, 0.75);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: rgba(0, 210, 224, 0.35);
    transform: translateX(4px);
}

.info-icon {
    font-size: 1.5rem;
    background: rgba(0, 210, 224, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.alert-box {
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-box.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34D399;
}

.alert-box.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #F87171;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- WIN (win.pe) Style Full-Width Edge-to-Edge Hero Carousel --- */
.hero {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    background-color: #080B10;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 0 3.2rem;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    position: relative;
    box-sizing: border-box;
}

.hero-slide.active {
    position: relative;
}

/* Gradient overlay like win.pe (darker on left for readable text, clear on right for image) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.7) 45%, rgba(8, 11, 16, 0.15) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 620px;
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

.hero-slide.active .corporate-badge {
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-slide.active .hero-title {
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-slide.active .hero-subtitle {
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-slide.active .hero-cta {
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.corporate-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 210, 224, 0.15);
    border: 1px solid rgba(0, 210, 224, 0.4);
    color: var(--accent-primary);
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.corporate-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.hero-title {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.8px;
    line-height: 1.12;
    color: #FFFFFF;
}

.hero-title .highlight {
    color: var(--accent-primary);
    background: none;
    -webkit-text-fill-color: initial;
    display: inline;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: #E2E8F0;
    margin-bottom: 1.8rem;
    max-width: 580px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Slider Controls (Arrows & Dots) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(18, 23, 33, 0.75);
    border: 1px solid rgba(0, 210, 224, 0.3);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent-primary);
    color: #05080C;
    border-color: var(--accent-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 210, 224, 0.6);
}

.prev-slide {
    left: 2rem;
}

.next-slide {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.35s ease;
}

.slider-dot.active {
    background: var(--accent-primary);
    width: 36px;
    border-radius: 10px;
    box-shadow: 0 0 14px rgba(0, 210, 224, 0.8);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatBreath {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 210, 224, 0.3);
    }

    50% {
        box-shadow: 0 0 28px rgba(0, 210, 224, 0.7);
    }
}

/* Glass Card Light Pass Effect & Micro-Animations */
.service-card,
.prod-card,
.diff-card,
.mv-card,
.contact-info-card,
.about-container-box {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card::after,
.prod-card::after,
.diff-card::after,
.mv-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: translateX(-100%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.8s ease;
}

.service-card:hover::after,
.prod-card:hover::after,
.diff-card:hover::after,
.mv-card:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.service-card:hover,
.prod-card:hover,
.diff-card:hover,
.mv-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: var(--accent-primary) !important;
    box-shadow: 0 15px 35px rgba(0, 210, 224, 0.22), 0 5px 15px rgba(0, 0, 0, 0.4) !important;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.corporate-badge,
.icon-circle {
    animation: floatBreath 5s ease-in-out infinite;
}

/* --- General Sections --- */
section {
    padding: 6.5rem 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--accent-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3.5rem;
    font-size: 1.1rem;
}

.about-container-box {
    background: rgba(18, 23, 33, 0.75) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass) !important;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.about-container-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(0, 210, 224, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.about-text {
    width: 100%;
    box-sizing: border-box;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: var(--transition-smooth);
}

.feature-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
}

.feature-tag:hover {
    border-color: rgba(0, 210, 224, 0.4);
    color: #FFFFFF;
    background: rgba(0, 210, 224, 0.08);
}

.about-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(18, 23, 33, 0.4);
}

.about-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.04);
}

.about-floating-badge {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: rgba(11, 14, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 224, 0.35);
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 5;
}

.badge-accent-line {
    width: 4px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 210, 224, 0.6);
}

.about-floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.about-floating-badge .badge-text strong {
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.about-floating-badge .badge-text span {
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 400;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.stat-item {
    flex: 1;
    min-width: 100px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    border-color: rgba(0, 210, 224, 0.35);
    background: rgba(0, 210, 224, 0.04);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.15rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
}

.mission-vision {
    width: 100%;
    margin-top: 2.5rem;
    box-sizing: border-box;
}

.mv-card {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.2rem 2rem;
    border-radius: 14px;
    background: rgba(18, 23, 33, 0.75);
    border: 1px solid var(--border-glass);
    border-top: 3px solid var(--accent-primary);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-glass);
}

.mv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 210, 224, 0.4);
    border-top-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(0, 210, 224, 0.12);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
}

.mv-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    background: rgba(0, 210, 224, 0.1);
    border: 1px solid rgba(0, 210, 224, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.mv-card h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    background: #121721;
    border: 1px solid var(--border-glass);
}

.card-image-wrap {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.card-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.interactive-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.interactive-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Produccion Cards --- */
.prod-card {
    transition: var(--transition-smooth);
    background: #121721;
}

.prod-image-wrap img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.prod-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
}

.prod-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.prod-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- Diferenciadores Section --- */
.diff-card {
    background: #121721;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
}

.icon-circle {
    font-size: 2rem;
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.15rem;
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Diferenciadores Enriquecidos --- */
.diff-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.diff-card-rich {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 23, 33, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.diff-card-rich:hover {
    transform: translateY(-6px);
    border-color: var(--accent-primary);
    box-shadow: 0 16px 32px rgba(0, 210, 224, 0.12);
}

.diff-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.diff-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(0, 210, 224, 0.12);
    border: 1px solid rgba(0, 210, 224, 0.3);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 0.2rem;
}

.diff-card-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.3;
    margin: 0;
}

.diff-card-rich p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #94A3B8;
    margin-bottom: 1.2rem;
}

.diff-features-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.diff-features-list li {
    font-size: 0.85rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.diff-check {
    color: #10B981;
    font-weight: 800;
    font-size: 0.9rem;
}

/* Workflow Process Banner */
.diff-workflow-banner {
    padding: 2.5rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    border: 1px solid rgba(0, 210, 224, 0.2);
}

.workflow-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 1.8rem;
}

.workflow-header h3 span {
    color: var(--accent-primary);
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.workflow-step:hover {
    background: rgba(0, 210, 224, 0.06);
    border-color: rgba(0, 210, 224, 0.3);
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-primary);
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.workflow-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #F8FAFC;
    margin-bottom: 0.4rem;
}

.workflow-step p {
    font-size: 0.83rem;
    color: #94A3B8;
    line-height: 1.45;
    margin: 0;
}

/* --- Contact CTA --- */
.cta-box {
    text-align: center;
    padding: 4.5rem 2rem;
    background: #121721;
    border: 1px solid var(--border-glass);
    position: relative;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* --- Enhanced Footer --- */
.main-footer {
    background: #07090E;
    border-top: 1px solid #1A202C;
    padding-top: 4.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1240px;
    margin: 0 auto 3.5rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand img {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--accent-primary);
    color: #000;
    border-color: var(--accent-primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-list .icon {
    font-size: 1.2rem;
}

.contact-list a {
    color: var(--text-secondary);
}

.contact-list a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    border-top: 1px solid #1A202C;
    padding: 1.5rem 0;
    background: #05060A;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.85rem;
    margin: 0;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botón de acceso al Panel de Administración */
.btn-admin-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-admin-nav:hover {
    background: var(--accent-primary);
    color: #05080C;
    border-color: var(--accent-primary);
}

.btn-admin-mobile {
    background: rgba(0, 210, 224, 0.15);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary) !important;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 700 !important;
}

.footer-admin-link {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-admin-link:hover {
    color: var(--accent-primary);
}

/* --- MENÚ DESPLEGABLE MÓVIL (GLASS DRAWER) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 14, 20, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    padding: 5.5rem 1.5rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-10px);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--accent-primary);
    background: rgba(0, 210, 224, 0.12);
    border-color: rgba(0, 210, 224, 0.35);
}

.mobile-link.btn-primary-sm {
    background: linear-gradient(135deg, #00D2E0 0%, #0099A8 100%) !important;
    color: #05080C !important;
    font-weight: 700;
    margin-top: 0.5rem;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 210, 224, 0.4);
}

.btn-admin-mobile {
    font-size: 0.85rem !important;
    color: var(--text-secondary) !important;
    background: transparent !important;
    border: 1px dashed rgba(255, 255, 255, 0.2) !important;
}

/* MEDIA QUERIES RESPONSIVAS DE ALTA PRECISIÓN */
@media (max-width: 950px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    .logo img {
        height: 34px;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .nav-links,
    .navbar .btn-primary-sm,
    .navbar .btn-admin-nav {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
        overflow: hidden;
    }

    .container {
        padding: 0 1.25rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.2rem;
    }

    .hero {
        height: auto !important;
    }

    .hero-slide {
        padding-top: 2.8rem;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        padding: 0 0.8rem;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.45;
        margin-bottom: 1.2rem;
    }

    .corporate-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        margin-bottom: 0.6rem;
    }

    .slider-arrow {
        display: none !important;
    }

    .slider-dots {
        bottom: 18px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 28px;
    }

    .footer-grid {
        grid-template-columns: 100%;
        gap: 2.2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .navbar {
        padding: 0.65rem 0;
        background: rgba(11, 14, 20, 0.88);
    }

    .nav-container {
        padding: 0 1rem !important;
    }

    .logo img {
        height: 30px;
    }

    .glass-panel {
        padding: 1.35rem 1.15rem !important;
        border-radius: 16px;
        background: rgba(18, 23, 33, 0.75) !important;
        border: 1px solid var(--border-glass) !important;
    }

    /* SECTION TITLE */
    .section-title {
        font-size: 1.7rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    /* HERO SLIDER MOBILE */
    .hero {
        height: auto !important;
        position: relative;
    }

    .hero-slide {
        padding-top: 6.5rem !important;
        padding-bottom: 3.5rem !important;
        min-height: 480px !important;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.22;
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.8rem;
        display: block !important;
    }

    .corporate-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
        margin-bottom: 0.9rem;
    }

    .slider-arrow {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        background: rgba(11, 14, 20, 0.85) !important;
        border: 1px solid rgba(0, 210, 224, 0.4) !important;
        z-index: 35 !important;
    }

    .prev-slide {
        left: 0.6rem !important;
    }

    .next-slide {
        right: 0.6rem !important;
    }

    .slider-dots {
        bottom: 10px !important;
        z-index: 35 !important;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 0.8rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
        border-radius: 30px;
    }

    /* ABOUT / NOSOTROS */
    .about-container-box {
        padding: 1.35rem 1.15rem !important;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 1.3rem;
        width: 100% !important;
    }

    .about-image-wrapper {
        order: -1;
        width: 100% !important;
        max-width: 100% !important;
        height: 200px !important;
        max-height: 200px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        margin-top: 0;
    }

    .about-image-wrapper img {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
        border-radius: 12px !important;
        display: block !important;
    }

    .about-floating-badge {
        padding: 0.45rem 0.75rem !important;
        bottom: 0.65rem !important;
        right: 0.65rem !important;
        border-radius: 10px !important;
    }

    .about-floating-badge .badge-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 1.1rem !important;
    }

    .about-floating-badge .badge-text strong {
        font-size: 0.78rem !important;
    }

    .about-floating-badge .badge-text span {
        font-size: 0.68rem !important;
    }

    .about-text {
        width: 100% !important;
        box-sizing: border-box;
    }

    .about-text p {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 0.9rem;
    }

    .about-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem !important;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .feature-tag {
        font-size: 0.76rem !important;
        padding: 0.35rem 0.65rem !important;
        white-space: nowrap;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem !important;
        text-align: center;
        margin-top: 1.2rem !important;
        background: rgba(255, 255, 255, 0.02);
        padding: 0.5rem 0.3rem !important;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-sizing: border-box;
        width: 100% !important;
    }

    .stat-item {
        padding: 0.6rem 0.15rem !important;
        min-width: 0 !important;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

    .stat-number {
        font-size: 1.25rem !important;
        font-weight: 800;
        color: var(--accent-primary);
        margin-bottom: 0.1rem;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 0.65rem !important;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.2px;
        margin: 0;
        white-space: nowrap;
    }

    @media (max-width: 400px) {
        .stats {
            gap: 0.25rem !important;
            padding: 0.4rem 0.2rem !important;
        }

        .stat-item {
            padding: 0.5rem 0.1rem !important;
        }

        .stat-number {
            font-size: 1.1rem !important;
        }

        .stat-label {
            font-size: 0.6rem !important;
            letter-spacing: 0;
        }
    }

    /* MISIÓN VISIÓN OBJETIVO */
    .mission-vision .grid-3 {
        display: flex;
        flex-direction: column;
        gap: 1.1rem !important;
    }

    .mv-card {
        padding: 1.35rem 1.15rem !important;
        border-left: 3px solid var(--accent-primary) !important;
        border-radius: 14px;
    }

    .mv-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .mv-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* SERVICIOS & PRODUCCIÓN GRIDS */
    .grid-3,
    .grid-4,
    .grid-5,
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    .service-card,
    .prod-card {
        padding: 1.25rem 1.1rem !important;
        border-radius: 14px;
    }

    .card-image-wrap,
    .prod-image-wrap {
        height: 175px !important;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 1rem;
    }

    .card-image-wrap img,
    .prod-image-wrap img {
        height: 175px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .service-card h3,
    .prod-card h4 {
        font-size: 1.18rem;
        margin-bottom: 0.5rem;
    }

    .service-card p,
    .prod-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* DIFERENCIADORES HORIZONTAL FLUID ITEM */
    .diff-card {
        display: flex;
        align-items: center;
        gap: 1.1rem;
        text-align: left;
        padding: 1.1rem 1.15rem !important;
        border-radius: 14px;
        background: rgba(18, 23, 33, 0.75);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .icon-circle {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin: 0;
        background: rgba(0, 210, 224, 0.1);
        border: 1px solid rgba(0, 210, 224, 0.3);
        border-radius: 12px;
    }

    .diff-card h4 {
        font-size: 1.08rem;
        margin-bottom: 0.2rem;
    }

    .diff-card p {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    /* CONTACT CTA BOX */
    .cta-box {
        padding: 2.2rem 1.15rem !important;
        border-radius: 18px;
    }

    .cta-box .section-title {
        font-size: 1.55rem;
    }

    .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-box .btn-primary {
        width: 100%;
        padding: 0.85rem 1.2rem;
        font-size: 0.9rem;
    }

    /* FOOTER MÓVIL */
    .main-footer {
        padding-top: 3.5rem;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand img {
        height: 32px;
    }

    .footer-brand p,
    .footer-links a,
    .contact-list li {
        font-size: 0.9rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.2rem 1rem;
    }
}

/* ==========================================================================
   FORMULARIO DE COTIZACIONES - CORPORATE PREMIUM DESIGN
   ========================================================================== */
.contacto {
    padding: 4rem 0 6rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-box {
    background: rgba(13, 17, 24, 0.85);
    border: 1px solid rgba(0, 210, 224, 0.2);
    border-radius: 18px;
    padding: 2rem 2.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D2E0, #0066FF, #00D2E0);
    background-size: 200% 100%;
    animation: gradientMove 4s ease infinite;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 210, 224, 0.12);
    color: #00D2E0;
    border: 1px solid rgba(0, 210, 224, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.form-group {
    margin-bottom: 0.85rem;
    position: relative;
}

.form-group label {
    display: block;
    color: #CBD5E1;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.form-group label span.required {
    color: #00D2E0;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input-icon {
    position: absolute;
    left: 0.9rem;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input-icon svg {
    width: 17px;
    height: 17px;
}

.form-control {
    width: 100%;
    background: rgba(8, 11, 16, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.75rem 0.95rem 0.75rem 2.5rem;
    color: #FFFFFF;
    font-size: 0.88rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.form-control.no-icon {
    padding-left: 0.95rem;
}

.form-control::placeholder {
    color: #475569;
}

.form-control:focus {
    background: rgba(13, 17, 24, 0.95);
    border-color: #00D2E0;
    box-shadow: 0 0 18px rgba(0, 210, 224, 0.25);
}

.form-group:focus-within label {
    color: #00D2E0;
}

.form-group:focus-within .form-input-icon {
    color: #00D2E0;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C00D2E0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    background-size: 0.9rem;
    cursor: pointer;
}

select.form-control option {
    background: #0D1118;
    color: #FFFFFF;
    padding: 0.8rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 85px;
    line-height: 1.45;
}

.btn-submit-quote {
    width: 100%;
    padding: 0.95rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #00D2E0 0%, #0066FF 100%);
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 210, 224, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-submit-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 210, 224, 0.45);
    background: linear-gradient(135deg, #00E5F5 0%, #1A75FF 100%);
}

.btn-submit-quote:active {
    transform: translateY(-1px);
}

/* CARDS DE CONTACTO LADO DERECHO */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(13, 17, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.4rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(0, 210, 224, 0.4);
    transform: translateX(6px);
    background: rgba(13, 17, 24, 0.9);
}

.info-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 210, 224, 0.1);
    border: 1px solid rgba(0, 210, 224, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #00D2E0;
    flex-shrink: 0;
}

.info-content h4 {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: #94A3B8;
    font-size: 0.88rem;
    line-height: 1.45;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-box {
        padding: 1.6rem 1.25rem;
    }
}

/* --- Experiencia Page Enhancements --- */
.prod-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.prod-image-wrap img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-image-wrap img {
    transform: scale(1.06);
}

.prod-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(8, 11, 16, 0.85);
    backdrop-filter: blur(8px);
    color: #00D2E0;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 210, 224, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stats-counter-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 3.5rem 0;
}

.stat-box {
    background: rgba(18, 24, 34, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 210, 224, 0.15);
    border-radius: 16px;
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(0, 210, 224, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 210, 224, 0.15);
}

.stat-box .number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #00D2E0;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 0 20px rgba(0, 210, 224, 0.3);
}

.stat-box .label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: rgba(13, 17, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: rgba(0, 210, 224, 0.4);
    transform: translateY(-5px);
    background: rgba(18, 24, 35, 0.85);
}

.tech-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 210, 224, 0.1);
    border: 1px solid rgba(0, 210, 224, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D2E0;
    margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
    .stats-counter-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .stats-counter-strip {
        grid-template-columns: 1fr;
    }
}

/* --- Global Alignment & Spacing Standardization --- */
.prod-card,
.service-card,
.diff-card,
.tech-card,
.info-card,
.mv-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    padding: 2rem 1.75rem;
    box-sizing: border-box;
    border-radius: 16px;
}

.prod-card h4,
.service-card h3,
.diff-card h3,
.tech-card h3,
.info-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: #FFFFFF;
}

.prod-card p,
.service-card p,
.diff-card p,
.tech-card p,
.info-card p {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.prod-card .mt-15,
.service-card .mt-15 {
    margin-top: auto;
    padding-top: 0.5rem;
    display: flex;
    justify-content: center;
}

/* Button Alignment & Flexible Spacing */
.btn-primary,
.btn-secondary,
.btn-primary-sm,
.btn-nav-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    box-sizing: border-box;
}

.btn-primary-sm {
    background: linear-gradient(135deg, #00D2E0 0%, #0099B8 100%);
    color: #05080C;
    font-weight: 700;
    border-radius: 30px;
    padding: 0.55rem 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 210, 224, 0.25);
    border: none;
}

.btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 224, 0.45);
    color: #000000;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-box {
    padding: 3.5rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-box .section-title {
    margin-bottom: 0.2rem;
}

.section-spacer,
.mt-60 {
    margin-top: 5.5rem !important;
    padding-top: 3.5rem !important;
    border-top: 1px solid rgba(0, 210, 224, 0.12);
}

.section-header {
    margin-bottom: 3rem;
}

/* --- Additional Mobile Optimization & Responsiveness --- */
@media (max-width: 768px) {
    .master-wrapper {
        overflow-x: hidden;
    }

    .diff-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .diff-card-rich {
        padding: 1.4rem 1.25rem;
    }

    .diff-card-header {
        gap: 0.75rem;
    }

    .diff-icon-box {
        width: 42px;
        height: 42px;
    }

    .diff-workflow-banner {
        padding: 1.6rem 1.2rem;
    }

    .workflow-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .workflow-step {
        padding: 1.2rem 0.8rem;
    }

    .step-num {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-cta a {
        width: 100%;
        text-align: center;
    }

    .cta-box {
        padding: 2.5rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .workflow-steps-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .diff-features-list li {
        font-size: 0.8rem;
    }
}