/* =============================================
   CHILE HOME — Premium Architecture Design
   IMPROVED VERSION - Enhanced Readability, Colors & UX
============================================= */

:root {
    /* PRIMARY TEXT COLORS - Better Contrast */
    --text-primary: #2c2c2c;
    --text-body: #4a4a4a;
    --text-secondary: #6b6b6b;
    --text-muted: #8a8a8a;

    /* BACKGROUNDS - Warmer, More Inviting */
    --bg-canvas: #fafaf8;
    --bg-surface: #ffffff;
    --bg-overlay: #f5f4f1;
    --bg-elevated: #fcfcfb;

    /* BRAND COLORS - Chile Home Official */
    --brand-blue: #003660;
    --brand-gold: #e0b784;
    --brand-gold-dark: #d7ad78;

    /* ACCENT COLORS - Using Brand Gold */
    --accent-primary: #e0b784;
    --accent-hover: #d7ad78;
    --accent-light: #e8c9a0;
    --accent-subtle: #f5e6d3;
    --accent-glow: rgba(224, 183, 132, 0.15);

    /* BORDERS & DIVIDERS */
    --border-subtle: #ebe9e5;
    --border-medium: #dbd8d2;
    --border-strong: #c5c2bb;

    /* DARK SHADES */
    --dark-900: #1a1a1a;
    --dark-800: #2c2c2c;
    --dark-700: #3d3d3d;

    /* SEMANTIC COLORS */
    --success: #2d8659;
    --error: #d14343;

    /* Typography */
    --font-display: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Mobile-First Spacing */
    --space-mobile-xs: 0.375rem;
    --space-mobile-sm: 0.75rem;
    --space-mobile-md: 1rem;
    --space-mobile-lg: 1.5rem;
    --space-mobile-xl: 2rem;

    /* Breakpoints (for reference in comments) */
    --breakpoint-tablet: 768px;
    --breakpoint-desktop: 1024px;

    /* Minimum Touch Targets */
    --touch-target-min: 44px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-base: 0.4s var(--ease-out);
    --transition-slow: 0.8s var(--ease-out);
}

/* =============================================
   RESET & BASE STYLES
============================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-canvas);
    color: var(--text-body);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    padding-top: 70px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Optimización de carga */
    content-visibility: auto;
    background-color: #f0f0f0;
}

/* Excluir imágenes de Google Maps del background */
.gm-style img,
[class*="gm-"] img,
div[style*="maps.gstatic"] img {
    background-color: transparent !important;
    content-visibility: visible !important;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* Sections con content-visibility para mejor performance */
section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Dark mode image placeholder */
[data-theme="dark"] img {
    background-color: #1a1a1a;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Skip to Content for Keyboard Navigation */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--accent-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 20px;
}

/* Skip Link Alternative */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--brand-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
    outline: 3px solid var(--brand-gold);
    outline-offset: 2px;
}

/* =============================================
   CUSTOM CURSOR
============================================= */

.cursor, .cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .cursor {
        display: block;
        position: fixed;
        width: 8px;
        height: 8px;
        background: var(--dark-900);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s, opacity 0.3s;
        opacity: 0;
    }

    .cursor-follower {
        display: block;
        position: fixed;
        width: 40px;
        height: 40px;
        border: 1px solid var(--dark-900);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: transform 0.3s var(--ease-out), width 0.3s, height 0.3s, opacity 0.3s;
        opacity: 0;
    }

    body:hover .cursor {
        opacity: 1;
    }

    body:hover .cursor-follower {
        opacity: 0.3;
    }
}

/* =============================================
   LOADER
============================================= */

.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    position: relative;
}

.loader-percentage {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
    opacity: 0.95;
}

.loader-percentage::after {
    content: '%';
    font-size: 0.4em;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 0.1em;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    position: relative;
}

.loader-isotipo {
    width: 100%;
    height: 100%;
}

.loader-path-blue {
    fill: rgba(255, 255, 255, 0.2);
}

.loader-path-gold {
    fill: var(--brand-gold);
    animation: pulseGold 1.5s ease-in-out infinite;
}

@keyframes pulseGold {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-lg);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--brand-gold);
    border-radius: 2px;
    transition: width 0.1s ease-out;
}

/* =============================================
   TOP BAR
============================================= */

.top-bar {
    background: var(--dark-900);
    padding: 0.6rem var(--space-xl);
    text-align: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    color: var(--accent-primary);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
}

.shipping-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.shipping-text i {
    color: var(--accent-primary);
    font-size: 0.75rem;
}

/* =============================================
   HEADER
============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem var(--space-xl);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: transform 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header.scrolled {
    padding: var(--space-sm) var(--space-xl);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo-img {
    height: 50px;
    width: auto;
    background: transparent !important;
    background-color: transparent !important;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.logo-text:hover {
    opacity: 0.7;
}

.nav-list {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link-highlight {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link-highlight:hover {
    background: linear-gradient(135deg, var(--brand-gold-dark) 0%, var(--brand-gold) 100%);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(224, 183, 132, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-header-outline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    padding: 0.75rem 1.5rem; /* Optimized for 44px touch target */
    min-height: var(--touch-target-min);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-header-outline:hover {
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.btn-header-filled {
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    background: #1a1a1a;
    padding: 0.75rem 1.5rem; /* Optimized for 44px touch target */
    min-height: var(--touch-target-min);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-header-filled:hover {
    background: #2c2c2c;
    transform: translateY(-1px);
}

/* Botón AI en Header - Solo icono circular */
.btn-header-ai {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.5);
    box-shadow: 0 4px 12px rgba(0, 54, 96, 0.3);
}

.btn-header-ai.visible {
    display: flex;
    opacity: 1;
    transform: scale(1);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.btn-header-ai:hover {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(215, 173, 120, 0.5);
}

.ai-sparkles-header {
    width: 18px;
    height: 18px;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    cursor: pointer;
    z-index: 1002;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span {
    background: white;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translateY(7.5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translateY(-7.5px);
}

/* =============================================
   HERO SECTION
============================================= */

.hero {
    background: var(--bg-canvas);
    padding: var(--space-lg) var(--space-xl);
    position: relative;
    overflow: visible;
}

.hero-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: visible;
    border-radius: 24px;
    aspect-ratio: 16/9;
    max-height: 75vh;
    min-height: 450px;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.5) 0%,
        rgba(26, 26, 26, 0.25) 40%,
        rgba(26, 26, 26, 0.1) 70%,
        rgba(26, 26, 26, 0) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-lg);
}

/* Hero Preview Wrapper - Mobile-First */
.hero-preview-wrapper {
    max-width: 1300px;
    margin: -3rem auto 0;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 10;
}

/* Hero Preview - Mobile: centered below, Desktop: floating right */
.hero-preview {
    /* Mobile-first: centered in normal flow */
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatPreview 4s ease-in-out infinite;
    cursor: pointer;
}

@keyframes floatPreview {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-preview:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.25);
    animation: none;
}

.hero-preview:hover .preview-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero-preview:hover .preview-image img {
    transform: scale(1.1);
}

.hero-preview:active {
    transform: translateY(-5px) scale(1.02);
}

.preview-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-preview:hover .preview-image img {
    transform: scale(1.08);
}

.preview-label {
    padding: 0.875rem 1rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.preview-size {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.preview-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.preview-cta i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.hero-preview:hover .preview-cta i {
    transform: translateX(3px);
}

.preview-style {
    font-size: 0.7rem;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Desktop: Hero Preview floats on the right over the video */
@media (min-width: 768px) {
    .hero-preview-wrapper {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        margin: 0;
        padding: 0;
        z-index: 15;
    }

    .hero-preview {
        position: relative;
        width: 160px;
        max-width: none;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .hero-preview-wrapper {
        top: 2rem;
        right: 2rem;
    }

    .hero-preview {
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .hero-preview-wrapper {
        right: 2.5rem;
    }

    .hero-preview {
        width: 200px;
    }
}

/* Modern Elegant CTA Buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 1.15rem 2.25rem; /* Optimized for 44px+ touch target */
    min-height: var(--touch-target-min);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-hero::after {
    display: none;
}

.btn-hero span {
    position: relative;
    z-index: 1;
}

.btn-hero:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.btn-hero:hover::before {
    left: 100%;
}

.btn-hero:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* =============================================
   INTRO SECTION
============================================= */

.intro-section {
    padding: clamp(2rem, 4vw, 3rem) var(--space-xl);
    text-align: center;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 147, 95, 0.04), transparent), var(--bg-canvas);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-body);
    max-width: 70ch;
    margin: 0 auto;
}

/* =============================================
   SECTION HEADERS
============================================= */

.section-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.section-num {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* =============================================
   MODELS FEATURED
============================================= */

.models-featured {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: var(--bg-canvas);
}

.featured-card {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.02);
    position: relative;
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 147, 95, 0.08) 0%, transparent 50%);
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-content {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.025em;
}

.featured-title span {
    color: var(--accent-primary);
}

.featured-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-body);
    margin-bottom: var(--space-xl);
    max-width: 70ch;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    padding: 0.9rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    background: transparent;
    border: 1.5px solid var(--text-primary);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-outline::after {
    content: '\2192';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    color: white;
}

.btn-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline:hover::after {
    transform: translateX(4px);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Featured Slideshow */
.featured-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide.prev {
    opacity: 0;
    transform: translateX(-30px);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slide-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 300;
    color: white;
    letter-spacing: -0.02em;
}

.slide-style {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.slideshow-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slideshow-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.slideshow-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* =============================================
   MODELS GRID
============================================= */

.models-grid-section {
    padding: clamp(3rem, 6vw, 4.5rem) var(--space-xl);
    background: linear-gradient(180deg, var(--bg-canvas) 0%, rgba(245, 244, 241, 0.6) 50%, var(--bg-canvas) 100%);
    position: relative;
}

.models-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(212, 168, 85, 0.12), transparent);
    pointer-events: none;
}

.models-grid-section.models-classic {
    padding-top: clamp(2rem, 4vw, 3rem);
}

.models-grid-section.models-classic::before {
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(184, 147, 95, 0.08), transparent);
}

.models-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.models-title span {
    color: #d4a855;
    font-weight: 700;
    background: linear-gradient(135deg, #f5d998 0%, #d4a855 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 168, 85, 0.3);
}

.models-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-body);
    max-width: 1200px;
    margin: 0 auto var(--space-2xl);
    letter-spacing: 0.02em;
}

.models-carousel {
    display: flex;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: var(--space-lg);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.models-carousel::-webkit-scrollbar {
    display: none;
}

.model-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    display: block;
    transition: all var(--transition-base);
    position: relative;
    cursor: pointer;
}

.model-card::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle at 50% 50%, rgba(212, 168, 85, 0.25), transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

.model-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.model-card:hover::after {
    opacity: 1;
}

.model-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.model-card:hover .model-image {
    box-shadow: 0 12px 40px rgba(212, 168, 85, 0.2), 0 4px 20px rgba(0, 0, 0, 0.12);
}

.model-card:hover .model-image img {
    transform: scale(1.08);
}

.model-arrow {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5d998 0%, #d4a855 100%);
    border-radius: 50%;
    font-size: 0.875rem;
    color: #1a1a1a;
    opacity: 0;
    transform: translateX(-10px) scale(0.8);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(212, 168, 85, 0.4);
}

.model-card:hover .model-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.model-info {
    padding: 0 var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.model-name {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.125rem;
    transition: color var(--transition-fast);
}

.model-card:hover .model-name {
    color: #d4a855;
}

.model-tag {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

/* Offer Tag - Left aligned with title */
.offer-tag {
    display: inline-block !important;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    color: #ffffff !important;
    padding: 0.4rem 1rem !important;
    border-radius: 4px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 0.5rem !important;
}

/* Big Countdown Timer Container - Professional & Elegant */
section.models-grid-section .offer-countdown-big,
.models-grid-section .offer-countdown-big,
.offer-countdown-big {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 3rem auto !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 152, 0, 0.15) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset,
                0 20px 60px rgba(255, 152, 0, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
}

section.models-grid-section .offer-countdown-big::before,
.models-grid-section .offer-countdown-big::before,
.offer-countdown-big::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.05), transparent) !important;
    animation: shimmer 3s infinite !important;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

section.models-grid-section .countdown-title,
.models-grid-section .countdown-title,
.offer-countdown-big .countdown-title {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #ff9800 !important;
    margin-bottom: 2rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    position: relative !important;
}

section.models-grid-section .countdown-title::after,
.models-grid-section .countdown-title::after,
.offer-countdown-big .countdown-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: -0.75rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ff9800, transparent) !important;
}

section.models-grid-section .countdown-timer-big,
.models-grid-section .countdown-timer-big,
.offer-countdown-big .countdown-timer-big {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
}

section.models-grid-section .countdown-item-big,
.models-grid-section .countdown-item-big,
.offer-countdown-big .countdown-item-big {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 1.25rem 1.5rem !important;
    border-radius: 12px !important;
    min-width: 90px !important;
    border: 1px solid rgba(255, 152, 0, 0.12) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.03) inset !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

section.models-grid-section .countdown-item-big::before,
.models-grid-section .countdown-item-big::before,
.offer-countdown-big .countdown-item-big::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, #ff9800, #ffb74d, #ff9800) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

section.models-grid-section .countdown-item-big:hover,
.models-grid-section .countdown-item-big:hover,
.offer-countdown-big .countdown-item-big:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(255, 152, 0, 0.25) !important;
}

section.models-grid-section .countdown-item-big:hover::before,
.models-grid-section .countdown-item-big:hover::before,
.offer-countdown-big .countdown-item-big:hover::before {
    opacity: 1 !important;
}

section.models-grid-section .countdown-number-big,
.models-grid-section .countdown-number-big,
.offer-countdown-big .countdown-number-big {
    font-family: var(--font-display) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    text-shadow: 0 2px 8px rgba(255, 152, 0, 0.2) !important;
    position: relative !important;
    display: inline-block !important;
}

section.models-grid-section .countdown-unit-big,
.models-grid-section .countdown-unit-big,
.offer-countdown-big .countdown-unit-big {
    font-size: 0.65rem !important;
    color: rgba(255, 152, 0, 0.7) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    margin-top: 0.6rem !important;
    font-weight: 600 !important;
}

section.models-grid-section .countdown-separator-big,
.models-grid-section .countdown-separator-big,
.offer-countdown-big .countdown-separator-big {
    font-size: 2rem !important;
    font-weight: 300 !important;
    color: rgba(255, 152, 0, 0.3) !important;
    margin: 0 0.15rem !important;
    opacity: 0.5 !important;
}

section.models-grid-section .countdown-urgency,
.models-grid-section .countdown-urgency,
.offer-countdown-big .countdown-urgency {
    display: block !important;
    margin-top: 2rem !important;
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
}

/* Small Countdown Timer (inline) */
.offer-countdown {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
}

.countdown-label {
    font-size: 0.7rem !important;
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
}

.countdown-timer {
    display: flex !important;
    align-items: center !important;
    gap: 0.2rem !important;
}

.countdown-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    padding: 0.35rem 0.45rem !important;
    border-radius: 5px !important;
    min-width: 38px !important;
}

.countdown-number {
    font-family: var(--font-display) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ff9800 !important;
    line-height: 1 !important;
}

.countdown-unit {
    font-size: 0.5rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    margin-top: 1px !important;
}

.countdown-separator {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: var(--text-muted) !important;
    margin: 0 0.1rem !important;
}

.countdown-expired {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #ff9800 !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 152, 0, 0.1) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 152, 0, 0.3) !important;
}

/* Offer Badge on Cards - Orange Style */
.model-card .offer-badge-pro,
.model-card-offer .offer-badge-pro {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%) !important;
    color: #ffffff !important;
    padding: 0.35rem 0.7rem !important;
    border-radius: 4px !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    z-index: 10 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4) !important;
}

/* Model Price with CLP */
.model-price {
    font-family: var(--font-display) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #ff9800 !important;
    margin: 0.3rem 0 !important;
    letter-spacing: -0.02em !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.3rem !important;
}

.price-currency {
    font-size: 0.65rem !important;
    font-weight: 500 !important;
    color: var(--text-secondary) !important;
}

/* Offer Card Highlight */
.model-card-offer {
    border: 1px solid rgba(255, 152, 0, 0.25) !important;
    position: relative !important;
}

.model-card-offer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff9800, #f57c00) !important;
    border-radius: 8px 8px 0 0 !important;
    z-index: 5 !important;
}

.model-card-offer:hover {
    border-color: rgba(255, 152, 0, 0.4) !important;
}

/* Responsive Countdown */
@media (max-width: 600px) {
    .offer-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem !important;
    }

    .countdown-item {
        min-width: 32px !important;
        padding: 0.3rem 0.35rem !important;
    }

    .countdown-number {
        font-size: 0.85rem !important;
    }

    .countdown-unit {
        font-size: 0.45rem !important;
    }

    /* Big Countdown Responsive */
    section.models-grid-section .offer-countdown-big,
    .offer-countdown-big {
        padding: 2rem 1.25rem !important;
        margin: 2rem auto !important;
        max-width: 95% !important;
    }

    section.models-grid-section .countdown-item-big,
    .offer-countdown-big .countdown-item-big {
        min-width: 70px !important;
        padding: 1rem 1.15rem !important;
    }

    section.models-grid-section .countdown-number-big,
    .offer-countdown-big .countdown-number-big {
        font-size: 2rem !important;
    }

    section.models-grid-section .countdown-unit-big,
    .offer-countdown-big .countdown-unit-big {
        font-size: 0.55rem !important;
    }

    section.models-grid-section .countdown-separator-big,
    .offer-countdown-big .countdown-separator-big {
        font-size: 1.5rem !important;
        margin: 0 0.1rem !important;
    }

    section.models-grid-section .countdown-title,
    .offer-countdown-big .countdown-title {
        font-size: 0.7rem !important;
        letter-spacing: 0.2em !important;
    }

    section.models-grid-section .countdown-urgency,
    .offer-countdown-big .countdown-urgency {
        font-size: 0.65rem !important;
        margin-top: 1.5rem !important;
    }
}

.model-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5d998 0%, #d4a855 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(212, 168, 85, 0.3);
    letter-spacing: 0.025em;
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    overflow: hidden;
}

.model-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffe4a8 0%, #e0b560 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-cta-btn span {
    position: relative;
    z-index: 1;
}

.model-card:hover .model-cta-btn {
    opacity: 1;
    transform: translateY(0);
}

.model-cta-btn:hover {
    box-shadow: 0 4px 16px rgba(212, 168, 85, 0.45);
    transform: translateY(-2px) scale(1.05);
}

.model-cta-btn:hover::before {
    opacity: 1;
}

/* Expanded Model Cards with Info Sheets */
.model-card-expanded {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.model-card-expanded:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 168, 85, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
}

.model-image-large {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.model-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card-expanded:hover .model-image-large img {
    transform: scale(1.05);
}

.model-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #f5d998 0%, #d4a855 100%);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(212, 168, 85, 0.3);
}

.model-details {
    padding: 1.5rem;
}

.model-name-large {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.model-style {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--bg-overlay);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-body);
}

.spec-item i {
    color: #d4a855;
    font-size: 0.9rem;
    width: 18px;
}

.model-quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5d998 0%, #d4a855 100%);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 168, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.model-quote-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffe4a8 0%, #e0b560 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.model-quote-btn span,
.model-quote-btn i {
    position: relative;
    z-index: 1;
}

.model-quote-btn i {
    transition: transform 0.3s ease;
}

.model-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 85, 0.45);
}

.model-quote-btn:hover::before {
    opacity: 1;
}

.model-quote-btn:hover i {
    transform: translateX(4px);
}

.models-progress {
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    height: 3px;
    background: var(--border-medium);
    border-radius: 2px;
    position: relative;
}

.progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--text-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* CTA Between Model Sections */
.models-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 168, 85, 0.08) 0%, rgba(245, 217, 152, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(212, 168, 85, 0.15);
    position: relative;
    overflow: hidden;
}

.models-cta::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: radial-gradient(circle, rgba(212, 168, 85, 0.1) 0%, transparent 70%);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.models-cta-content {
    position: relative;
    z-index: 1;
}

.models-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.models-cta p {
    font-size: 1.0625rem;
    color: var(--text-body);
    margin-bottom: var(--space-xl);
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.models-cta .btn-outline {
    margin: 0 auto;
}

/* =============================================
   BROCHURE SECTION
============================================= */

.brochure-section {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: radial-gradient(circle at 30% 50%, rgba(232, 220, 200, 0.15), transparent 60%), var(--bg-canvas);
}

.brochure-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
}

.brochure-image,
.brochure-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brochure-image img,
.brochure-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.brochure-content {
    padding: var(--space-xl) 0;
}

.brochure-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.025em;
}

.brochure-title span {
    color: var(--accent-primary);
    font-weight: 400;
}

.brochure-form input[type="text"],
.brochure-form input[type="email"],
.brochure-form input[type="tel"] {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-medium);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.brochure-form-row input {
    margin-bottom: 0;
}

.brochure-form > input[type="tel"] {
    margin-bottom: var(--space-md);
}

.brochure-form input:hover {
    border-color: var(--border-strong);
}

.brochure-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(184, 147, 95, 0.02);
}

.brochure-form input::placeholder {
    color: var(--text-muted);
}

.brochure-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-primary);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--accent-primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--accent-hover);
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-brochure::after {
    content: '\2192';
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-brochure:hover {
    background: linear-gradient(135deg, #3d3d3d 0%, #2c2c2c 100%);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-brochure:hover::before {
    left: 100%;
}

.btn-brochure:hover::after {
    transform: translateX(4px);
}

/* =============================================
   REVIEWS SECTION - Customer Testimonials
   HIGH SPECIFICITY FOR PRODUCTION
============================================= */

section#reviews.reviews-section {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl) !important;
    background: linear-gradient(180deg, #f8f8f6 0%, #ffffff 100%) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

section#reviews.reviews-section .reviews-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

section#reviews.reviews-section .section-header-center {
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
}

section#reviews.reviews-section .section-header-center .section-num {
    color: #c9a86c !important;
    font-size: 1.5rem !important;
}

section#reviews.reviews-section .section-header-center .section-title {
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

section#reviews.reviews-section .reviews-subtitle {
    text-align: center !important;
    font-size: 1.1rem !important;
    color: #666666 !important;
    margin-bottom: 3rem !important;
    font-weight: 400 !important;
}

section#reviews.reviews-section .reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    width: 100% !important;
}

section#reviews.reviews-section .review-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 1.75rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e5e5e5 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

section#reviews.reviews-section .review-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

section#reviews.reviews-section .review-stars {
    display: flex !important;
    gap: 0.25rem !important;
    margin-bottom: 1rem !important;
}

section#reviews.reviews-section .review-stars i {
    color: #FFB800 !important;
    font-size: 0.9rem !important;
}

section#reviews.reviews-section .review-text {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: #555555 !important;
    margin-bottom: 1.25rem !important;
    font-style: italic !important;
}

section#reviews.reviews-section .review-author {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: auto !important;
}

section#reviews.reviews-section .review-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #c9a86c 0%, #b8956a 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

section#reviews.reviews-section .review-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

section#reviews.reviews-section .review-info strong {
    font-size: 0.9rem !important;
    color: #1a1a1a !important;
    font-weight: 600 !important;
}

section#reviews.reviews-section .review-info span {
    font-size: 0.8rem !important;
    color: #888888 !important;
}

/* Reviews Stats */
section#reviews.reviews-section .reviews-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 4rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid #e5e5e5 !important;
}

section#reviews.reviews-section .stat-item {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

section#reviews.reviews-section .stat-number {
    display: block !important;
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #c9a86c !important;
    line-height: 1.2 !important;
}

section#reviews.reviews-section .stat-label {
    font-size: 0.85rem !important;
    color: #666666 !important;
}

/* Reviews Responsive */
@media (max-width: 992px) {
    section#reviews.reviews-section .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    section#reviews.reviews-section {
        padding: clamp(3rem, 6vw, 4rem) var(--space-lg) !important;
    }

    section#reviews.reviews-section .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    section#reviews.reviews-section .review-card {
        padding: 1.5rem !important;
    }

    section#reviews.reviews-section .reviews-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }

    section#reviews.reviews-section .stat-number {
        font-size: 2rem !important;
    }
}

/* Dark Mode Reviews - High Specificity */
[data-theme="dark"] section#reviews.reviews-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%) !important;
}

[data-theme="dark"] section#reviews.reviews-section .section-header-center .section-title {
    color: #ffffff !important;
}

[data-theme="dark"] section#reviews.reviews-section .reviews-subtitle {
    color: #e0e0e0 !important;
}

[data-theme="dark"] section#reviews.reviews-section .review-card {
    background: var(--gradient-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] section#reviews.reviews-section .review-text {
    color: #e0e0e0 !important;
}

[data-theme="dark"] section#reviews.reviews-section .review-info strong {
    color: #ffffff !important;
}

[data-theme="dark"] section#reviews.reviews-section .review-info span {
    color: #b0b0b0 !important;
}

[data-theme="dark"] section#reviews.reviews-section .reviews-stats {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] section#reviews.reviews-section .stat-label {
    color: #b0b0b0 !important;
}

/* =============================================
   ABOUT SECTION - Modern Elegant Design
============================================= */

.about {
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8rem) var(--space-xl);
    background: linear-gradient(180deg, #fafaf8 0%, #f5f4f1 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(184, 147, 95, 0.08), transparent 60%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 3%) rotate(3deg); }
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.about-heading em {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #d4a574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 600;
}

.about-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
    max-width: 55ch;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 147, 95, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-light) 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.feature:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(184, 147, 95, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: rgba(184, 147, 95, 0.2);
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 147, 95, 0.1) 0%, rgba(184, 147, 95, 0.05) 100%);
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    color: white;
    transform: scale(1.05);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-visual {
    position: relative;
    z-index: 1;
    margin-right: 0;
}

.visual-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    box-shadow:
        -10px 25px 80px rgba(0, 0, 0, 0.15),
        -5px 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.visual-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.visual-main img,
.visual-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-accent {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--accent-primary) 0%, #9f7a4a 100%);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: 16px;
    box-shadow:
        0 15px 40px rgba(184, 147, 95, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.accent-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.accent-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    display: block;
}

/* =============================================
   COMPANY VIDEO SECTION - Nueva Sucursal
============================================= */

.company-video-section {
    padding: clamp(5rem, 10vw, 8rem) var(--space-xl);
    background: linear-gradient(135deg, var(--brand-blue) 0%, #001a30 100%);
    position: relative;
    overflow: hidden;
}

.company-video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 183, 132, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.company-video-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 183, 132, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.company-video-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-video-content {
    color: #fff;
}

.company-video-content .section-header {
    margin-bottom: var(--space-md);
}

.company-video-content .section-num {
    color: var(--brand-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.company-video-content .section-title {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.company-video-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.company-video-heading em {
    color: var(--brand-gold);
    font-style: italic;
    position: relative;
}

.company-video-heading em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-gold);
    opacity: 0.4;
    border-radius: 2px;
}

.company-video-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    max-width: 450px;
}

.company-video-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.cv-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.cv-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(224, 183, 132, 0.3);
    transform: translateY(-2px);
}

.cv-feature i {
    color: var(--brand-gold);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 183, 132, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.cv-feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.company-video-player {
    position: relative;
    min-width: 500px;
}

.company-video-player::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(135deg, rgba(224, 183, 132, 0.2), rgba(224, 183, 132, 0.05));
    border-radius: 24px;
    z-index: -1;
    filter: blur(20px);
}

.company-video-player .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    background: #000;
}

.company-video-player .video-container::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark), var(--brand-gold));
    border-radius: 19px;
    z-index: -1;
}

.company-video-player .video-container iframe,
.company-video-player .video-container > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive para Company Video */
@media (max-width: 1100px) {
    .company-video-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .company-video-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .company-video-desc {
        max-width: 100%;
    }

    .company-video-features {
        max-width: 450px;
        margin: 0 auto;
    }

    .company-video-player::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .company-video-section {
        padding: var(--space-2xl) var(--space-md);
    }

    .company-video-features {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .company-video-heading {
        font-size: 1.6rem;
    }

    .company-video-desc {
        font-size: 1rem;
    }

    .company-video-player .video-container {
        border-radius: 12px;
    }

    .cv-feature {
        padding: 0.75rem;
    }
}

/* =============================================
   PROCESS SECTION
============================================= */

.process {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: linear-gradient(180deg, rgba(250, 250, 248, 0.5) 0%, #ffffff 10%);
}

.process-intro {
    max-width: 600px;
    margin-bottom: var(--space-3xl);
}

.process-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.process-intro em {
    color: var(--accent-primary);
    font-style: italic;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.step {
    padding: var(--space-xl);
    background: var(--bg-overlay);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.step:hover {
    background: var(--bg-surface);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.step-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* =============================================
   CONTACT SECTION
============================================= */

.contact {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: linear-gradient(180deg, var(--bg-canvas) 0%, rgba(245, 244, 241, 0.8) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2xl);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.contact-heading em {
    color: var(--accent-primary);
    font-style: italic;
}

.contact-details {
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: block;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-medium);
    transition: all var(--transition-base);
}

.contact-item:hover {
    padding-left: var(--space-md);
    border-color: var(--accent-primary);
}

.contact-item-location {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-location-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    min-height: 44px;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-google-maps {
    background: #4285F4;
    color: white;
    border-color: #4285F4;
}

.btn-google-maps:hover {
    background: #357ae8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-waze {
    background: #33CCFF;
    color: white;
    border-color: #33CCFF;
}

.btn-waze:hover {
    background: #1fb5e6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(51, 204, 255, 0.3);
}

.btn-location-action i {
    font-size: 1rem;
}

.contact-item-location .item-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.contact-item-location:hover .item-action {
    text-decoration: underline;
}

.item-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.item-value {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-surface);
    padding: var(--space-2xl);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-medium);
    transition: all var(--transition-base);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-bottom-color: var(--border-strong);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--accent-primary);
    background: rgba(184, 147, 95, 0.02);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-bottom-color: var(--error);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-bottom-color: var(--success);
}

.form-group label {
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all var(--transition-base);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -0.5rem;
    left: 0;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b6b6b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 20px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem var(--space-xl);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit span {
    position: relative;
    z-index: 1;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #3d3d3d 0%, #2c2c2c 100%);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--text-muted);
    box-shadow: none;
}

.btn-submit i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* =============================================
   FOOTER
============================================= */

.footer {
    position: relative;
    padding: var(--space-3xl) var(--space-xl);
    padding-bottom: 120px; /* Space for WhatsApp button */
    background: #FAF8F5;
    overflow: hidden;
}

/* Decorative curved lines */
.footer-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    color: #C9A227;
    opacity: 0.25;
}

.footer-line-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -300px;
}

.footer-line-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -200px;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Brand Column */
.footer-brand {
    padding-right: var(--space-xl);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    margin-bottom: var(--space-md);
}

.footer-logo-text .logo-chile {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: #003660;
    letter-spacing: -0.02em;
}

.footer-logo-text .logo-home {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: #e0b784;
    letter-spacing: 0.05em;
    margin-left: 0.15em;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.footer-column a,
.footer-column span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column a:hover {
    color: var(--accent-primary);
}

.footer-column i {
    font-size: 0.8rem;
    color: var(--accent-primary);
    width: 16px;
}

/* Sucursales */
.footer-sucursales {
    padding: var(--space-xl) 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-sucursales h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.sucursales-list {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.sucursales-list span {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 25px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all var(--transition-fast);
}

.sucursales-list span:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
}

.footer-bottom-left p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-right {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-right a {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-right a:hover {
    color: var(--accent-primary);
}

/* =============================================
   MODEL DETAIL MODAL
============================================= */

.model-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.model-modal.active {
    opacity: 1;
    visibility: visible;
}

.model-modal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(30, 25, 20, 0.95) 100%);
    backdrop-filter: blur(12px);
}

.model-modal-content {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #faf9f7 100%);
    /* Mobile-first: Full screen */
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: grid;
    grid-template-columns: 1fr;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.model-modal.active .model-modal-content {
    transform: translateY(0);
}

/* Desktop: Windowed modal */
@media (min-width: 768px) {
    .model-modal-content {
        width: 90%;
        max-width: 950px;
        height: auto;
        max-height: 90vh;
        border-radius: 20px;
        grid-template-columns: 1.2fr 1fr;
        transform: scale(0.9) translateY(30px);
        box-shadow:
            0 30px 100px rgba(0, 0, 0, 0.4),
            0 10px 40px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .model-modal.active .model-modal-content {
        transform: scale(1) translateY(0);
    }
}

@media (min-width: 1024px) {
    .model-modal-content {
        max-width: 1200px;
        border-radius: 32px;
        grid-template-columns: 1.1fr 1fr;
    }

    .modal-details {
        padding: 2rem 2.5rem;
        overflow-y: visible;
    }
}

@media (min-width: 1280px) {
    .model-modal-content {
        max-width: 1350px;
        grid-template-columns: 1fr 1fr;
    }

    .modal-image {
        min-height: 500px;
    }
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: white;
    color: var(--text-primary);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Drag handle para cerrar - oculto en desktop */
.modal-drag-handle {
    display: none;
}

.modal-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f4f1 0%, #e8e6e1 100%);
}

.modal-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none;
}

.modal-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.modal-details {
    padding: 2.5rem 2.75rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    max-width: 100%;
}

.modal-details::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent-primary) 0%, var(--accent-light) 100%);
    border-radius: 0 4px 4px 0;
}

/* Modal Image Overlay for Badge */
.modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 54, 96, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--brand-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.modal-title-group {
    flex: 1;
}

.modal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.modal-style {
    font-size: 0.95rem;
    color: var(--accent-primary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.modal-area-badge {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 54, 96, 0.3);
}

.modal-area-badge .area-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.modal-area-badge .area-unit {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Specs Grid */
.modal-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    overflow: hidden;
}

.modal-spec {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--bg-overlay);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.modal-spec:hover {
    background: var(--bg-surface);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.spec-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 10px;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.1rem;
    color: #fff;
}

.spec-info {
    display: flex;
    flex-direction: column;
}

.modal-spec .spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.modal-spec .spec-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}

/* Features Section */
.modal-features {
    background: linear-gradient(135deg, rgba(0, 54, 96, 0.05) 0%, rgba(0, 54, 96, 0.02) 100%);
    border: 1px solid rgba(0, 54, 96, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.features-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 54, 96, 0.1);
}

.features-title i {
    color: var(--brand-gold);
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.4;
}

.features-list li i {
    color: var(--brand-gold);
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 100%;
}

.modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.875rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-cta.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    box-shadow: 0 4px 16px rgba(0, 54, 96, 0.3);
}

.modal-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 54, 96, 0.4);
}

.modal-cta.secondary {
    color: #fff;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.modal-cta.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.modal-cta.pdf-download {
    color: #fff;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.3);
    border: none;
    width: 100%;
}

.modal-cta.pdf-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
}

.modal-cta i {
    font-size: 1rem;
}

/* Modal Related Models Section */
.modal-related {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Escritorio: Reducir espaciado para evitar scroll */
@media (min-width: 1024px) {
    .modal-related {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .modal-features {
        margin-bottom: 0.75rem;
    }

    .modal-actions {
        gap: 0.5rem;
    }

    .modal-specs-grid {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
}

.related-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-title i {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.related-models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.related-model-card {
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-model-card:hover {
    background: #fff;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-model-image {
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.related-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-model-card:hover .related-model-image img {
    transform: scale(1.05);
}

.related-model-info {
    padding: 0.5rem;
    text-align: center;
}

.related-model-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
}

.related-model-style {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

@media (max-width: 900px) {
    .model-modal-content {
        grid-template-columns: 1fr;
        max-height: 95vh;
        max-width: 500px;
    }

    .modal-image {
        aspect-ratio: 16/10;
    }

    .modal-details {
        padding: 1.5rem;
    }

    .modal-details::before {
        display: none;
    }

    .modal-header {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-area-badge {
        align-self: flex-start;
        padding: 0.75rem 1rem;
    }

    .modal-area-badge .area-value {
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .modal-specs-grid {
        gap: 0.75rem;
    }

    .modal-spec {
        padding: 0.875rem;
    }

    .spec-icon {
        width: 38px;
        height: 38px;
    }

    .modal-features {
        padding: 1rem;
    }

    .features-list li {
        font-size: 0.85rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .modal-specs-grid {
        grid-template-columns: 1fr;
    }

    .modal-cta {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}

/* =============================================
   WHATSAPP BUTTON
============================================= */

.whatsapp-wrapper {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    transition: all 0.4s ease;
}

.whatsapp-wrapper.scrolling {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.whatsapp-label {
    background: white;
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

.whatsapp-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

/* =============================================
   RESPONSIVE DESIGN
============================================= */

/* Tablet Large */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        padding: 0.5rem var(--space-lg);
    }

    .featured-card {
        grid-template-columns: 1fr 1fr;
    }

    .brochure-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

/* Tablet */
@media (max-width: 992px) {
    /* Top Bar */
    .top-bar {
        padding: 0.5rem var(--space-lg);
    }

    .review-text {
        font-size: 0.75rem;
    }

    .top-bar-divider,
    .shipping-text {
        display: none;
    }

    /* Header & Navigation */
    .header {
        padding: 0.4rem var(--space-lg);
    }

    .logo-img {
        height: 45px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--dark-900);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-base);
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }

    .nav-link {
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        color: var(--text-muted);
    }

    .nav-link:hover,
    .nav-link.active {
        color: white;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .btn-header-outline,
    .btn-header-filled,
    .btn-header-ai {
        display: none !important;
    }

    .search-toggle {
        width: 36px;
        height: 36px;
    }

    .theme-btn {
        width: 36px;
        height: 36px;
    }

    /* Hero */
    .hero {
        padding: var(--space-sm) var(--space-lg) var(--space-lg);
    }

    .hero-container {
        aspect-ratio: 4/3;
        max-height: 65vh;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .hero-preview {
        width: 140px;
    }

    /* Intro */
    .intro-section {
        padding: clamp(2rem, 4vw, 3rem) var(--space-lg);
    }

    /* Featured Section */
    .models-featured {
        padding: clamp(3rem, 6vw, 4rem) var(--space-lg);
    }

    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-content {
        order: 2;
        padding: var(--space-xl);
    }

    .featured-slideshow {
        order: 1;
        border-radius: 20px 20px 0 0;
    }

    .slideshow-container {
        min-height: 350px;
    }

    .slide img {
        min-height: 350px;
    }

    /* Models Grid */
    .models-grid-section {
        padding: clamp(2.5rem, 5vw, 4rem) var(--space-lg);
    }

    .models-carousel {
        gap: var(--space-sm);
        padding-left: var(--space-sm);
        margin-left: calc(-1 * var(--space-lg));
        margin-right: calc(-1 * var(--space-lg));
        padding-right: var(--space-lg);
    }

    .model-card {
        flex: 0 0 220px;
    }

    /* About Section */
    .about {
        padding: clamp(3rem, 6vw, 5rem) var(--space-lg);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding-left: 0;
    }

    .about-visual {
        order: -1;
    }

    .visual-main {
        border-radius: 16px;
        aspect-ratio: 16/10;
    }

    .visual-accent {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }

    .accent-num {
        font-size: 2rem;
    }

    .feature {
        padding: var(--space-md) var(--space-lg);
    }

    /* Brochure Section */
    .brochure-section {
        padding: clamp(3rem, 6vw, 4rem) var(--space-lg);
    }

    .brochure-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .brochure-video {
        order: -1;
    }

    .brochure-title {
        font-size: clamp(1.75rem, 4vw, 2.2rem);
    }

    /* Process */
    .process {
        padding: clamp(3rem, 6vw, 4rem) var(--space-lg);
    }

    /* Contact */
    .contact {
        padding: clamp(3rem, 6vw, 4rem) var(--space-lg);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        display: flex;
        flex-direction: column;
    }

    /* Formulario primero en móvil */
    .contact-form-wrapper {
        padding: var(--space-xl);
        order: -1;
    }

    /* WhatsApp */
    .whatsapp-wrapper {
        right: var(--space-lg);
        bottom: var(--space-lg);
    }

    .whatsapp-label {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2.5rem;
        --space-3xl: 4rem;
    }

    body {
        font-size: 16px;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 0.4rem var(--space-md);
    }

    .stars {
        font-size: 0.65rem;
    }

    .review-text {
        font-size: 0.7rem;
    }

    /* Header Mobile */
    .header {
        padding: 0.3rem var(--space-md);
    }

    .logo-img {
        height: 65px;
        margin: -0.5rem 0;
    }

    .menu-toggle span {
        width: 24px;
    }

    /* Hero Mobile */
    .hero {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }

    .hero-container {
        aspect-ratio: 3/4;
        max-height: 70vh;
        border-radius: 16px;
    }

    .hero-content {
        bottom: var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
    }

    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--space-md);
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.7) 100%);
    }

    .hero-preview {
        width: 100px;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 8px;
    }

    .preview-image {
        aspect-ratio: 3/2;
    }

    .preview-label {
        padding: 0.4rem 0.6rem;
    }

    .preview-size {
        font-size: 0.85rem;
    }

    .preview-style {
        font-size: 0.5rem;
    }

    .btn-hero {
        padding: 0.875rem 1.75rem; /* Maintain 44px touch target on tablet */
        font-size: 0.8rem;
    }

    /* Intro Mobile */
    .intro-section {
        padding: var(--space-xl) var(--space-md);
    }

    .intro-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Featured Section Mobile */
    .models-featured {
        padding: var(--space-xl) var(--space-md);
    }

    .featured-content {
        padding: var(--space-lg);
    }

    .featured-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .featured-desc {
        font-size: 0.95rem;
    }

    .slideshow-container {
        min-height: 280px;
    }

    .slide img {
        min-height: 280px;
    }

    .slide-label {
        padding: 1.5rem 1.25rem 1rem;
    }

    .slide-name {
        font-size: 1.25rem;
    }

    .slide-style {
        font-size: 0.75rem;
    }

    .slideshow-controls {
        bottom: 1rem;
        right: 1rem;
        gap: 1rem;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
    }

    /* Models Grid Mobile */
    .models-grid-section {
        padding: var(--space-xl) var(--space-md);
    }

    .models-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: var(--space-sm);
    }

    .models-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .models-carousel {
        gap: var(--space-sm);
        padding-left: var(--space-md);
        margin-left: calc(-1 * var(--space-md));
        margin-right: calc(-1 * var(--space-md));
        padding-right: var(--space-md);
    }

    .model-card {
        flex: 0 0 200px;
    }

    .model-image {
        border-radius: 12px;
        margin-bottom: var(--space-sm);
    }

    .model-arrow {
        width: 32px;
        height: 32px;
        top: var(--space-sm);
        right: var(--space-sm);
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    .model-name {
        font-size: 1.1rem;
    }

    .model-tag {
        font-size: 0.8rem;
    }

    .model-cta-btn {
        opacity: 1;
        transform: translateY(0);
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .model-card-expanded {
        flex: 0 0 260px;
    }

    .model-details {
        padding: 1rem;
    }

    .model-name-large {
        font-size: 1.15rem;
    }

    .model-specs {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .spec-item {
        font-size: 0.8rem;
    }

    /* Models CTA Mobile */
    .models-cta {
        padding: var(--space-lg);
    }

    .models-cta h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .models-cta p {
        font-size: 0.95rem;
    }

    /* Brochure Mobile */
    .brochure-section {
        padding: var(--space-xl) var(--space-md);
    }

    .brochure-content {
        padding: var(--space-lg) 0;
    }

    .brochure-title {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        margin-bottom: var(--space-lg);
    }

    /* Touch Targets: Inputs más grandes */
    .brochure-form input[type="text"],
    .brochure-form input[type="email"],
    .brochure-form input[type="tel"] {
        padding: 16px 14px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 10px;
    }

    .brochure-form select {
        padding: 16px 14px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 10px;
    }

    .brochure-footer {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    /* Touch Target: Checkbox con área aumentada */
    .checkbox-label {
        font-size: 0.85rem;
        padding: 12px 8px;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    /* Touch Target: Submit button */
    .btn-brochure {
        width: 100%;
        justify-content: center;
        padding: 16px 1.5rem;
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Touch Target: Botón geolocalización en brochure */
    .btn-geolocation-brochure {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        font-size: 1.1rem;
    }

    /* About Mobile */
    .about {
        padding: var(--space-xl) var(--space-md);
    }

    .about-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-features {
        gap: var(--space-sm);
    }

    .feature {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .visual-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-md);
        text-align: center;
        padding: var(--space-lg) var(--space-xl);
    }

    .accent-num {
        font-size: 2.5rem;
    }

    /* Process Mobile */
    .process {
        padding: var(--space-xl) var(--space-md);
    }

    .process-intro {
        margin-bottom: var(--space-xl);
    }

    .process-intro h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .step {
        padding: var(--space-lg);
    }

    .step-num {
        font-size: 2.5rem;
        margin-bottom: var(--space-md);
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.875rem;
    }

    /* Contact Mobile */
    .contact {
        padding: var(--space-xl) var(--space-md);
    }

    /* CRITICAL UX: Formulario primero en móvil */
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: var(--space-xl);
    }

    .contact-form-wrapper {
        order: -1;
    }

    .contact-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin-bottom: var(--space-lg);
    }

    .contact-item {
        padding: var(--space-md) 0;
        min-height: 56px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .item-value {
        font-size: 1rem;
    }

    /* Touch Targets: Botones de navegación */
    .location-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 12px;
    }

    .btn-location-action {
        width: 100%;
        min-height: 48px;
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .social-links {
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }

    .social-links a {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
        background: var(--bg-elevated);
        border-radius: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Touch Targets: Inputs más grandes */
    .form-group {
        margin-bottom: 24px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px 14px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    /* Touch Target: Botón geolocalización */
    .btn-geolocation {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        font-size: 1.1rem;
    }

    /* Touch Target: Botón submit */
    .btn-submit {
        padding: 16px var(--space-lg);
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
    }

    /* Footer Mobile */
    .footer {
        padding: var(--space-xl) var(--space-md);
        padding-bottom: 100px;
    }

    .footer-line-1,
    .footer-line-2 {
        opacity: 0.15;
    }

    .footer-line-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        left: -120px;
    }

    .footer-line-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        right: -80px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
        padding-bottom: var(--space-md);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        margin-bottom: var(--space-sm);
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 0.85rem;
    }

    .footer-logo-text {
        display: flex;
        justify-content: center;
        gap: 0.25rem;
    }

    .footer-logo-text .logo-chile,
    .footer-logo-text .logo-home {
        font-size: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h4 {
        font-size: 0.7rem;
        margin-bottom: var(--space-xs);
    }

    .footer-column a,
    .footer-column span {
        font-size: 0.8rem;
    }

    .footer-sucursales {
        padding: var(--space-md) 0;
    }

    .footer-sucursales h4 {
        font-size: 0.65rem;
    }

    .sucursales-list {
        gap: 0.35rem;
    }

    .sucursales-list span {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-bottom-left p,
    .footer-bottom-right a {
        font-size: 0.75rem;
    }

    .footer-bottom-right {
        flex-direction: row;
        gap: var(--space-md);
    }

    /* WhatsApp Mobile */
    .whatsapp-wrapper {
        right: var(--space-md);
        bottom: var(--space-md);
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    /* Touch targets */
    .nav-link,
    .btn-header-outline,
    .btn-header-filled,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Modal Mobile */
    .model-modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-details {
        padding: 1.25rem;
    }

    .modal-details::before {
        top: 1.25rem;
        height: 40px;
    }

    .modal-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-style {
        font-size: 0.9rem;
    }

    .modal-spec {
        padding: 0.75rem 0;
    }

    .modal-spec:nth-child(odd) {
        padding-right: 1rem;
    }

    .modal-spec:nth-child(even) {
        padding-left: 1rem;
    }

    .modal-spec i {
        width: 32px;
        height: 32px;
    }

    .modal-spec .spec-value {
        font-size: 1rem;
    }

    .modal-description {
        font-size: 0.9rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --space-md: 1rem;
        --space-lg: 1.25rem;
    }

    /* Top Bar Small */
    .top-bar {
        padding: 0.35rem var(--space-sm);
    }

    .top-bar-content {
        gap: 0.35rem;
    }

    .stars {
        font-size: 0.6rem;
    }

    .review-text {
        font-size: 0.65rem;
    }

    /* Header Small */
    .header {
        padding: 0.25rem var(--space-sm);
    }

    .logo-img {
        height: 38px;
    }

    /* Hero Small */
    .hero {
        padding: var(--space-xs) var(--space-sm) var(--space-sm);
    }

    .hero-container {
        aspect-ratio: 9/14;
        max-height: 75vh;
        border-radius: 12px;
    }

    .hero-content {
        bottom: var(--space-sm);
        left: var(--space-sm);
        right: var(--space-sm);
    }

    .hero-title {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
        margin-bottom: var(--space-sm);
    }

    .hero-preview {
        width: 85px;
        top: 0.5rem;
        right: 0.5rem;
    }

    .preview-label {
        padding: 0.35rem 0.5rem;
    }

    .preview-size {
        font-size: 0.75rem;
    }

    .preview-style {
        font-size: 0.45rem;
    }

    .btn-hero {
        padding: 0.875rem 1.5rem; /* Maintain 44px minimum touch target */
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    /* Intro Small */
    .intro-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .intro-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: var(--space-md);
    }

    .intro-text {
        font-size: 0.9rem;
    }

    /* Featured Small */
    .models-featured {
        padding: var(--space-lg) var(--space-sm);
    }

    .featured-content {
        padding: var(--space-md);
    }

    .featured-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: var(--space-md);
    }

    .featured-desc {
        font-size: 0.9rem;
        margin-bottom: var(--space-lg);
    }

    .btn-outline {
        padding: 0.75rem 1.25rem;
        font-size: 0.7rem;
    }

    .slideshow-container {
        min-height: 240px;
    }

    .slide img {
        min-height: 240px;
    }

    /* Models Grid Small */
    .models-grid-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .models-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .models-subtitle {
        font-size: 0.9rem;
    }

    .models-carousel {
        padding-left: var(--space-sm);
        margin-left: calc(-1 * var(--space-sm));
        margin-right: calc(-1 * var(--space-sm));
        padding-right: var(--space-sm);
    }

    .model-card {
        flex: 0 0 170px;
    }

    .model-image {
        border-radius: 10px;
    }

    .model-arrow {
        width: 28px;
        height: 28px;
    }

    .model-name {
        font-size: 1rem;
    }

    .model-tag {
        font-size: 0.75rem;
    }

    /* CTA Small */
    .models-cta {
        padding: var(--space-md);
    }

    .models-cta h3 {
        font-size: 1.1rem;
    }

    .models-cta p {
        font-size: 0.85rem;
    }

    /* Brochure Small */
    .brochure-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .brochure-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }

    .brochure-form input[type="text"],
    .brochure-form input[type="email"],
    .brochure-form input[type="tel"] {
        padding: 0.75rem;
    }

    /* About Small */
    .about {
        padding: var(--space-lg) var(--space-sm);
    }

    .section-header {
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .about-heading {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .feature {
        padding: var(--space-sm);
        gap: var(--space-sm);
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .feature-text h4 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.75rem;
    }

    .visual-accent {
        padding: var(--space-md) var(--space-lg);
    }

    .accent-num {
        font-size: 2rem;
    }

    .accent-text {
        font-size: 0.6rem;
    }

    /* Process Small */
    .process {
        padding: var(--space-lg) var(--space-sm);
    }

    .process-intro h3 {
        font-size: 1.1rem;
    }

    .step {
        padding: var(--space-md);
    }

    .step-num {
        font-size: 2rem;
    }

    .step-content h4 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    /* Contact Small */
    .contact {
        padding: var(--space-lg) var(--space-sm);
    }

    .contact-heading {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.75rem 0.5rem;
    }

    .btn-submit {
        font-size: 0.8rem;
    }

    /* Footer Small */
    .footer {
        padding: var(--space-lg) var(--space-sm);
        padding-bottom: 90px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-logo-text .logo-chile,
    .footer-logo-text .logo-home {
        font-size: 1.35rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .footer-column a,
    .footer-column span {
        justify-content: center;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .sucursales-list span {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
    }

    .footer-bottom-left p,
    .footer-bottom-right a {
        font-size: 0.65rem;
    }

    /* WhatsApp Small */
    .whatsapp-wrapper {
        right: var(--space-sm);
        bottom: var(--space-sm);
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Modal Small */
    .model-modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
    }

    .modal-image {
        aspect-ratio: 16/9;
    }

    .modal-details {
        padding: 1rem;
    }

    .modal-details::before {
        display: none;
    }

    .modal-badge {
        padding: 5px 10px;
        font-size: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .modal-title {
        font-size: 1.25rem;
    }

    .modal-style {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .modal-specs {
        margin-bottom: 1rem;
    }

    .modal-spec i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .modal-spec .spec-value {
        font-size: 0.9rem;
    }

    .modal-spec .spec-label {
        font-size: 0.65rem;
    }

    .modal-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .modal-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }
}

/* =============================================
   ANIMATIONS
============================================= */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Shimmer loading effect for images */
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* =============================================
   YOUTUBE VIDEO HERO STYLES
============================================= */

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background: transparent;
    border-radius: 24px;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 178vh;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

/* Fallback para cuando YouTube no carga */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: -1;
}

/* Mejora de calidad visual */
.hero-container {
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero UI Improvements */
.hero-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: auto;
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: white;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .hero-badge {
        top: 2rem;
        left: var(--space-xl);
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Brochure form improvements */
.brochure-desc {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.brochure-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.brochure-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-surface);
    margin-bottom: var(--space-md);
    border: 1.5px solid var(--border-medium);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
}

.brochure-form select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(255, 255, 255, 0.15);
}

.brochure-form select option {
    background: var(--bg-surface);
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .brochure-form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-secondary {
        justify-content: center;
    }
}

/* =============================================
   ASISTENTE VIRTUAL - COMPACT FLOATING DESIGN
============================================= */

/* Barra flotante compacta estilo ChatGPT */
.chat-float {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: floatIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.chat-float-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-float-bar:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.chat-float-bar:active {
    transform: translateY(-1px) scale(0.98);
}

.chat-float-ai {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 54, 96, 0.3);
}

.ai-sparkles {
    width: 18px;
    height: 18px;
    animation: sparkleFloat 2s ease-in-out infinite;
}

@keyframes sparkleFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.ai-sparkles path:nth-child(1) {
    animation: sparklePulse 1.5s ease-in-out infinite;
}

.ai-sparkles path:nth-child(2) {
    animation: sparklePulse 1.5s ease-in-out 0.3s infinite;
}

.ai-sparkles path:nth-child(3) {
    animation: sparklePulse 1.5s ease-in-out 0.6s infinite;
}

@keyframes sparklePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-float-bar:hover .chat-float-ai {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(215, 173, 120, 0.4);
}

.chat-float-bar:hover .ai-sparkles {
    animation: sparkleGlow 0.5s ease infinite;
}

@keyframes sparkleGlow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(255,255,255,0.6)); }
    50% { transform: scale(1.2); filter: drop-shadow(0 0 8px rgba(255,255,255,1)); }
}

.chat-float-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0 8px;
    white-space: nowrap;
    user-select: none;
}

.chat-float-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-float-send:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

/* Estado cuando el panel está abierto */
.chat-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

/* Estado minimizado - al hacer scroll, vuela hacia el header */
.chat-float.minimized {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-100vh) scale(0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode para chat-float */
[data-theme="dark"] .chat-float-bar {
    background: rgba(30, 30, 35, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .chat-float-bar:hover {
    background: rgba(40, 40, 45, 0.95);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .chat-float-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 480px) {
    .chat-float {
        bottom: 90px;
        left: 50%;
        right: auto;
        width: auto;
        max-width: calc(100vw - 40px);
    }

    .chat-float-bar {
        padding: 6px 6px 6px 10px;
        gap: 8px;
    }

    .chat-float-plus,
    .chat-float-send {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .chat-float-text {
        font-size: 0.85rem;
        padding: 0 4px;
    }
}

/* =============================================
   PANEL LATERAL DEL ASISTENTE
============================================= */

.assistant-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(450px, 100vw);
    height: 100vh;
    background: var(--bg-surface);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-panel.active {
    transform: translateX(0);
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.assistant-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    color: white;
}

.assistant-panel-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.assistant-panel-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.assistant-panel-title h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.panel-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.panel-status .status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.assistant-panel-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.assistant-panel-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

/* Mensajes del panel */
.assistant-panel-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: var(--bg-surface);
}

.chat-message {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    animation: messageSlide 0.3s ease-out;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
    align-items: flex-start;
}

.chat-message.user {
    align-items: flex-end;
}

.chat-message .bubble {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.chat-message.bot .bubble {
    background: var(--bg-overlay);
    color: var(--text-primary);
    border-bottom-left-radius: 6px;
}

.chat-message.user .bubble {
    background: var(--brand-blue);
    color: white;
    border-bottom-right-radius: 6px;
}

/* Input del panel */
.assistant-panel-input {
    padding: 20px 24px;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.panel-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-canvas);
    border: 2px solid var(--border-medium);
    border-radius: 30px;
    padding: 6px 8px 6px 20px;
    transition: border-color 0.3s ease;
}

.panel-input-wrapper:focus-within {
    border-color: var(--accent-primary);
}

.panel-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    padding: 10px 0;
    color: var(--text-primary);
}

.panel-input-wrapper input::placeholder {
    color: var(--text-muted);
}

.panel-send-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-blue);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.panel-send-btn:disabled {
    background: var(--border-medium);
    cursor: not-allowed;
}

.panel-send-btn:not(:disabled):hover {
    background: var(--accent-primary);
    transform: scale(1.05);
}

/* Opciones rápidas del panel */
.assistant-panel-options {
    display: flex;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bg-canvas);
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.panel-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.panel-option:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.panel-option i {
    font-size: 0.9rem;
}

/* Quick actions en mensajes */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.quick-action-btn {
    padding: 8px 14px;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-action-btn:hover {
    background: var(--accent-primary);
    transform: scale(1.05);
}

/* Overlay con efecto blur fuerte */
.assistant-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 14px 18px;
    background: var(--bg-overlay);
    border-radius: 20px;
    border-bottom-left-radius: 6px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}

/* Success message */
.success-message {
    text-align: center;
    padding: 10px;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.3rem;
}

/* =============================================
   DARK MODE - ASSISTANT PANEL STYLES
============================================= */

[data-theme="dark"] .assistant-panel {
    background: var(--bg-canvas);
    box-shadow: -20px 0 80px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .assistant-panel-messages {
    background: var(--bg-surface);
}

[data-theme="dark"] .chat-message.bot .bubble {
    background: var(--bg-overlay);
    color: var(--text-primary);
}

[data-theme="dark"] .assistant-panel-input {
    background: var(--bg-surface);
}

[data-theme="dark"] .panel-input-wrapper {
    background: var(--bg-overlay);
}

[data-theme="dark"] .assistant-panel-options {
    background: var(--bg-canvas);
}

/* =============================================
   RESPONSIVE DESIGN - ASSISTANT PANEL
============================================= */

@media (max-width: 768px) {
    .assistant-panel {
        width: 100vw;
    }

    .assistant-panel-options {
        justify-content: center;
    }
}

/* Theme Button - Simple & Clean */
.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-overlay);
}

.theme-btn i {
    position: absolute;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-btn .fa-sun {
    color: #f59e0b;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-btn .fa-moon {
    color: #6366f1;
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

[data-theme="dark"] .theme-btn .fa-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="dark"] .theme-btn .fa-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

[data-theme="dark"] .theme-btn {
    border-color: var(--border-medium);
}

[data-theme="dark"] .theme-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-overlay);
}

/* =============================================
   DARK MODE THEME - Base Overrides
============================================= */

/* Note: Main dark mode variables are defined below in "DARK MODE ENHANCED" section */

[data-theme="dark"] .header {
    background: rgba(10, 10, 10, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .top-bar {
    background: #000;
}

/* Logo switching para dark/light mode */
.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

[data-theme="dark"] .logo-light {
    display: none !important;
}

[data-theme="dark"] .logo-dark {
    display: block !important;
}

/* Fallback filter si solo hay un logo */
[data-theme="dark"] .logo-img:only-child {
    filter: brightness(0) invert(1) brightness(1.2);
}

/* Drop-shadow dorado para mejor visibilidad */
[data-theme="dark"] .logo {
    filter: drop-shadow(0 0 3px rgba(212, 165, 116, 0.2));
}

[data-theme="dark"] .nav-link {
    color: var(--text-secondary);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--text-primary);
}

[data-theme="dark"] .btn-header-outline {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

[data-theme="dark"] .btn-header-filled {
    background: var(--accent-primary);
    color: #1a1a1a;
}

[data-theme="dark"] .btn-outline {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

[data-theme="dark"] .btn-outline::before {
    background: var(--accent-primary);
}

[data-theme="dark"] .btn-outline:hover {
    color: #1a1a1a;
    border-color: var(--accent-primary);
}

[data-theme="dark"] .intro-section,
[data-theme="dark"] .models-featured,
[data-theme="dark"] .models-grid-section,
[data-theme="dark"] .about,
[data-theme="dark"] .process,
[data-theme="dark"] .contact {
    background: var(--bg-canvas);
}

[data-theme="dark"] .company-video-section {
    background: linear-gradient(135deg, #001a30 0%, #002845 100%);
}

[data-theme="dark"] .featured-card,
[data-theme="dark"] .contact-form-wrapper {
    background: var(--bg-surface);
}

[data-theme="dark"] .model-card .model-image {
    background: var(--bg-overlay);
}

[data-theme="dark"] .step,
[data-theme="dark"] .feature {
    background: var(--bg-overlay);
}

[data-theme="dark"] .step:hover,
[data-theme="dark"] .feature:hover {
    background: var(--bg-surface);
}

[data-theme="dark"] .brochure-section {
    background: var(--bg-surface);
}

[data-theme="dark"] .brochure-form select {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .brochure-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    color: var(--text-primary);
    border-bottom-color: var(--border-medium);
}

[data-theme="dark"] .form-group select {
    background: var(--bg-overlay);
    color: #ffffff;
}

[data-theme="dark"] .form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .chat-message.bot .message-content {
    background: var(--bg-overlay);
    color: var(--text-primary);
}

[data-theme="dark"] .chatbot-window {
    background: var(--bg-surface);
}

[data-theme="dark"] .chatbot-messages {
    background: var(--bg-surface);
}

[data-theme="dark"] .chatbot-input {
    background: var(--bg-surface);
    border-top-color: var(--border-subtle);
}

[data-theme="dark"] .chatbot-input input {
    background: var(--bg-overlay);
    border-color: var(--border-medium);
    color: var(--text-primary);
}

/* Hero Preview Dark Mode - Premium dark style */
[data-theme="dark"] .hero-preview {
    background: linear-gradient(145deg, #1e1e1e 0%, #141414 100%);
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 0 30px rgba(212, 165, 116, 0.1);
}

[data-theme="dark"] .hero-preview:hover {
    border-color: rgba(212, 165, 116, 0.4);
    box-shadow: 0 0 50px rgba(212, 165, 116, 0.2);
}

[data-theme="dark"] .preview-label {
    background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .preview-size {
    color: #ffffff;
}

[data-theme="dark"] .preview-style {
    color: var(--brand-gold);
}

[data-theme="dark"] .model-modal-content {
    background: var(--bg-surface);
}

[data-theme="dark"] .modal-details {
    background: var(--bg-surface);
}

[data-theme="dark"] .modal-specs {
    background: var(--bg-overlay);
}

/* Dark mode - Modelos relacionados */
[data-theme="dark"] .modal-related {
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .related-title {
    color: #c0c0c0;
}

[data-theme="dark"] .related-title i {
    color: var(--brand-gold);
}

[data-theme="dark"] .related-model-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .related-model-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-gold);
}

[data-theme="dark"] .related-model-name {
    color: #ffffff;
}

[data-theme="dark"] .related-model-style {
    color: #a0a0a0;
}

/* =============================================
   DARK MODE ENHANCED - Diseño Premium
   Color Guide:
   - Primary Gold: #d4a574 (main accent)
   - Gold Hover: #c9945f (darker gold)
   - Backgrounds: #0a0a0a (darkest) → #1e1e1e (elevated)
   - Text: #ffffff (primary) → #a0a0a0 (muted)
============================================= */

/* Variables COMPLETAS para dark mode - WCAG AA Compliant */
[data-theme="dark"] {
    /* Colores de texto con contraste WCAG AA */
    --text-primary: #ffffff;      /* 21:1 ratio - headings */
    --text-body: #e8e8e8;         /* 16:1 ratio - main text */
    --text-secondary: #c0c0c0;    /* 10:1 ratio - secondary */
    --text-muted: #a0a0a0;        /* 7:1 ratio - captions (WCAG AA) */

    /* Fondos oscuros elegantes */
    --bg-canvas: #0a0a0a;
    --bg-surface: #141414;
    --bg-overlay: #1a1a1a;
    --bg-elevated: #1e1e1e;

    /* Bordes sutiles */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.18);

    /* Acento dorado estandarizado */
    --brand-gold: #d4a574;
    --brand-gold-hover: #c9945f;
    --brand-gold-subtle: rgba(212, 165, 116, 0.15);
    --accent-primary: #d4a574;
    --accent-hover: #c9945f;

    /* Gradientes consistentes */
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%);
    --gradient-surface: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
    --gradient-card: linear-gradient(145deg, #1e1e1e 0%, #161616 100%);

    /* Efectos de brillo */
    --glow-gold: 0 0 40px rgba(212, 165, 116, 0.15);
    --glow-gold-hover: 0 0 50px rgba(212, 165, 116, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.5);
}

/* Body y HTML dark mode */
[data-theme="dark"] body {
    background: #0a0a0a !important;
    background-image: radial-gradient(ellipse at top, #121212 0%, #0a0a0a 70%) !important;
    color: #e0e0e0 !important;
}

[data-theme="dark"] html {
    background: #0a0a0a !important;
}

/* FALLBACK: Todas las secciones con fondo oscuro */
[data-theme="dark"] section {
    background-color: #0a0a0a !important;
}

/* Eliminar cualquier fondo blanco residual */
[data-theme="dark"] *[style*="background: white"],
[data-theme="dark"] *[style*="background:#fff"],
[data-theme="dark"] *[style*="background: #fff"],
[data-theme="dark"] *[style*="background:#ffffff"],
[data-theme="dark"] *[style*="background: #ffffff"] {
    background: #1a1a1a !important;
}

/* Hero Section Dark */
[data-theme="dark"] .hero {
    background: var(--gradient-dark);
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(180deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.8) 100%);
}

[data-theme="dark"] .hero-title {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Section Headers Dark */
[data-theme="dark"] .section-title {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(201, 168, 108, 0.1);
}

[data-theme="dark"] .section-num {
    color: var(--brand-gold);
    opacity: 0.8;
}

/* Cards Dark Mode Premium */
[data-theme="dark"] .model-card-priority {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .model-card-priority:hover {
    border-color: rgba(201, 168, 108, 0.3);
    box-shadow: var(--glow-gold), 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

[data-theme="dark"] .model-card-priority .model-name {
    color: #ffffff;
}

[data-theme="dark"] .model-card-priority .model-price {
    color: #f5d998 !important;
    background: linear-gradient(135deg, #f5d998 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Catalog Section Dark Premium */
[data-theme="dark"] .catalog-section {
    background: var(--gradient-dark);
}

[data-theme="dark"] .catalog-tab {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

[data-theme="dark"] .catalog-tab:hover,
[data-theme="dark"] .catalog-tab.active {
    border-color: rgba(201, 168, 108, 0.4);
    box-shadow: var(--glow-gold);
}

[data-theme="dark"] .catalog-tab.active {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.15) 0%, rgba(201, 168, 108, 0.05) 100%);
}

[data-theme="dark"] .catalog-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .catalog-card:hover {
    border-color: rgba(201, 168, 108, 0.3);
    box-shadow: var(--glow-gold), 0 16px 48px rgba(0, 0, 0, 0.5);
    transform: translateY(-6px);
}

[data-theme="dark"] .catalog-card .card-title {
    color: #ffffff;
}

[data-theme="dark"] .catalog-card .card-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Line Intro Dark */
[data-theme="dark"] .line-intro {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .line-intro-clasica {
    border-left: 4px solid var(--brand-blue);
}

[data-theme="dark"] .line-intro-text h3 {
    color: #ffffff;
}

[data-theme="dark"] .line-intro-text p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .line-intro-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .line-intro-stats .stat-value {
    color: var(--brand-gold);
}

[data-theme="dark"] .line-intro-stats .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Process Section Dark */
[data-theme="dark"] .process {
    background: var(--gradient-dark);
}

[data-theme="dark"] .step {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .step:hover {
    border-color: rgba(201, 168, 108, 0.3);
    box-shadow: var(--glow-gold);
}

[data-theme="dark"] .step-icon {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    color: #0a0a0a;
}

[data-theme="dark"] .step-content h4 {
    color: #ffffff;
}

[data-theme="dark"] .step-content p {
    color: rgba(255, 255, 255, 0.85);
}

/* Contact Section Dark */
[data-theme="dark"] .contact {
    background: var(--gradient-dark);
}

[data-theme="dark"] .contact-form-wrapper {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form textarea:focus,
[data-theme="dark"] .contact-form select:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

[data-theme="dark"] .contact-form label {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .contact-heading {
    color: #ffffff;
}

[data-theme="dark"] .contact-heading em {
    color: var(--brand-gold);
}

[data-theme="dark"] .contact-item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .item-label {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .item-value {
    color: #ffffff;
}

/* Quote Section Dark */
[data-theme="dark"] .quote-section {
    background: var(--gradient-dark);
}

[data-theme="dark"] .quote-form-container {
    background: transparent;
}

[data-theme="dark"] .quote-header h2 {
    color: #ffffff;
}

[data-theme="dark"] .quote-form-group input,
[data-theme="dark"] .quote-form-group select {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

[data-theme="dark"] .quote-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .quote-form-group input:focus,
[data-theme="dark"] .quote-form-group select:focus {
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .quote-checkbox label {
    color: rgba(255, 255, 255, 0.7);
}

/* Reviews Section Dark */
[data-theme="dark"] .reviews-section {
    background: var(--gradient-dark);
}

[data-theme="dark"] .review-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .review-card:hover {
    border-color: rgba(201, 168, 108, 0.2);
}

/* Buttons Dark Enhancement */
[data-theme="dark"] .btn-submit,
[data-theme="dark"] .btn-quote-submit {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.3);
}

[data-theme="dark"] .btn-submit:hover,
[data-theme="dark"] .btn-quote-submit:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.4);
    transform: translateY(-2px);
}

/* Catalog Footer Dark */
[data-theme="dark"] .catalog-footer-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
}

/* Scrollbar Dark */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0a0a0a;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #333 0%, #222 100%);
    border-radius: 5px;
    border: 2px solid #0a0a0a;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--brand-gold) 0%, #b8945a 100%);
}

/* Selection Dark */
[data-theme="dark"] ::selection {
    background: rgba(201, 168, 108, 0.3);
    color: #ffffff;
}

/* Subtle Animations for Dark Mode */
[data-theme="dark"] .catalog-card,
[data-theme="dark"] .model-card-priority,
[data-theme="dark"] .step,
[data-theme="dark"] .review-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header & Navbar Dark */
[data-theme="dark"] .header,
[data-theme="dark"] header {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .header.scrolled,
[data-theme="dark"] header.scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .nav-link,
[data-theme="dark"] .navbar-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .navbar-link:hover {
    color: var(--brand-gold) !important;
}

[data-theme="dark"] .logo-text,
[data-theme="dark"] .brand-text {
    color: #ffffff !important;
}

/* About / Nosotros Section Dark */
[data-theme="dark"] .about,
[data-theme="dark"] .nosotros,
[data-theme="dark"] section.about {
    background: #0a0a0a !important;
}

[data-theme="dark"] .about h2,
[data-theme="dark"] .about h3,
[data-theme="dark"] .nosotros h2,
[data-theme="dark"] .nosotros h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .about p,
[data-theme="dark"] .nosotros p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Features / Benefits Section Dark */
[data-theme="dark"] .features,
[data-theme="dark"] .benefits {
    background: #0a0a0a !important;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .benefit-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-card:hover,
[data-theme="dark"] .benefit-card:hover {
    border-color: rgba(201, 168, 108, 0.3);
    box-shadow: 0 0 40px rgba(201, 168, 108, 0.1);
}

[data-theme="dark"] .feature-card h4,
[data-theme="dark"] .benefit-card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .feature-card p,
[data-theme="dark"] .benefit-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer Dark */
[data-theme="dark"] footer,
[data-theme="dark"] .footer {
    background: #050505 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .footer-content,
[data-theme="dark"] footer h4,
[data-theme="dark"] footer h5 {
    color: #ffffff !important;
}

[data-theme="dark"] footer p,
[data-theme="dark"] footer a,
[data-theme="dark"] .footer-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] footer a:hover,
[data-theme="dark"] .footer-link:hover {
    color: var(--brand-gold) !important;
}

/* Generic Section Dark */
[data-theme="dark"] section {
    background-color: #0a0a0a;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .section-header h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .section-header p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Stats & Numbers Dark */
[data-theme="dark"] .stat-number,
[data-theme="dark"] .stat-value,
[data-theme="dark"] .number {
    color: var(--brand-gold) !important;
}

[data-theme="dark"] .stat-label,
[data-theme="dark"] .stat-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Dividers & Separators Dark */
[data-theme="dark"] hr,
[data-theme="dark"] .divider {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Cards Generic Dark */
[data-theme="dark"] .card {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .card:hover {
    border-color: rgba(201, 168, 108, 0.2);
}

[data-theme="dark"] .card-title,
[data-theme="dark"] .card h3,
[data-theme="dark"] .card h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .card-text,
[data-theme="dark"] .card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Text elements Dark */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff;
}

[data-theme="dark"] p {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] a {
    color: var(--brand-gold);
}

/* =============================================
   DARK MODE - Secciones Específicas del Sitio
   Niveles de fondo: #0a0a0a (base) → #141414 (surface) → #1e1e1e (elevated) → #282828 (cards)
============================================= */

/* Models Main Section - Los Más Vendidos */
[data-theme="dark"] .models-main-section {
    background: linear-gradient(180deg, #101010 0%, #141414 100%) !important;
}

[data-theme="dark"] .section-header-main h2,
[data-theme="dark"] .section-header-main .main-section-title,
[data-theme="dark"] .models-title {
    color: #ffffff !important;
}

[data-theme="dark"] .models-title span {
    color: #d4a574 !important;
}

[data-theme="dark"] .section-header-main p,
[data-theme="dark"] .models-subtitle {
    color: #b0b0b0 !important;
}

/* Model Cards en dark mode - ELEVATED con contraste */
[data-theme="dark"] .model-card-priority {
    background: linear-gradient(145deg, #252525 0%, #1e1e1e 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .model-card-priority:hover {
    background: linear-gradient(145deg, #2a2a2a 0%, #222222 100%) !important;
    border-color: rgba(212, 165, 116, 0.4) !important;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.15), 0 20px 60px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .model-card-priority .model-image {
    background: #1a1a1a !important;
}

[data-theme="dark"] .model-info-simple {
    background: transparent !important;
}

/* PRECIO - Muy visible en dorado brillante */
[data-theme="dark"] .model-price-simple {
    color: #f5d998 !important;
    background: linear-gradient(135deg, #f5d998 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

/* PRECIO model-card-priority - Override completo del gradiente azul */
[data-theme="dark"] .model-card-priority .model-price {
    color: #f5d998 !important;
    background: linear-gradient(135deg, #f5d998 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

/* NOMBRE del modelo - Blanco visible */
[data-theme="dark"] .model-card-priority .model-name {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* NOMBRE en cards regulares */
[data-theme="dark"] .model-card .model-name {
    color: #ffffff !important;
}

/* Model info background */
[data-theme="dark"] .model-info-simple {
    background: #1e1e1e !important;
    border-top: 1px solid rgba(212, 165, 116, 0.2) !important;
}

/* Model info en cards prioritarios */
[data-theme="dark"] .model-card-priority .model-info {
    background: linear-gradient(180deg, #1e1e1e 0%, #141414 100%) !important;
}

/* Specs del modelo */
[data-theme="dark"] .model-specs {
    color: #c0c0c0 !important;
}

/* Currency del precio */
[data-theme="dark"] .model-card-priority .price-currency {
    color: #a0a0a0 !important;
}

/* Section title highlight - SIN AZUL */
[data-theme="dark"] .section-title-elegant .highlight {
    background: linear-gradient(135deg, #f5d998 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

[data-theme="dark"] .model-cta-simple {
    color: #ffffff !important;
}

/* Badges - Cambiar AZUL a CYAN en dark mode */
[data-theme="dark"] .new-badge {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.95) 0%, rgba(77, 208, 225, 0.95) 100%) !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .featured-badge {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.95) 0%, rgba(201, 168, 108, 0.95) 100%) !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .priority-badge.new {
    background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%) !important;
    color: #0a0a0a !important;
    box-shadow: 0 6px 25px rgba(0, 188, 212, 0.4) !important;
}

/* CTA WhatsApp en dark mode */
[data-theme="dark"] .models-cta-quick {
    background: linear-gradient(145deg, #1e1e1e 0%, #181818 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .models-cta-quick p {
    color: #c0c0c0 !important;
}

/* Custom Design Section (Línea 2026) - IMPORTANTE */
[data-theme="dark"] .custom-design-section {
    background: linear-gradient(180deg, #0c0c0c 0%, #101010 100%) !important;
}

[data-theme="dark"] .custom-design-title {
    color: #ffffff !important;
}

[data-theme="dark"] .custom-design-title .highlight-gold {
    color: #d4a574 !important;
}

[data-theme="dark"] .custom-design-description {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .btn-custom-design {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-custom-design:hover {
    background: #d4a574 !important;
    border-color: #d4a574 !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .showcase-card {
    background: linear-gradient(145deg, #252525 0%, #1e1e1e 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .showcase-image {
    background: #1a1a1a !important;
}

[data-theme="dark"] .showcase-badge {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .showcase-info h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .showcase-info p {
    color: #a0a0a0 !important;
}

/* Line Intro Premium (Línea 2026 cards) */
[data-theme="dark"] .line-intro-premium {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(212, 165, 116, 0.25) !important;
}

[data-theme="dark"] .line-intro-premium .line-intro-text h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .line-intro-premium .line-intro-text p {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .line-intro-premium .stat-value {
    color: #d4a574 !important;
}

[data-theme="dark"] .line-intro-premium .stat-label {
    color: #a0a0a0 !important;
}

/* Reemplazar AZUL OSCURO con CYAN/DORADO en todo dark mode */
[data-theme="dark"] [style*="color: var(--brand-blue)"],
[data-theme="dark"] [style*="color:#003660"] {
    color: #d4a574 !important;
}

/* Botones azules → Dorados en dark mode */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] [class*="btn-blue"] {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
    border: none !important;
}

/* Links azules → Cyan en dark mode */
[data-theme="dark"] a[style*="color:#003660"],
[data-theme="dark"] a[style*="color: var(--brand-blue)"] {
    color: #4dd0e1 !important;
}

/* Stat values con brand-blue → gold */
[data-theme="dark"] .stat-value,
[data-theme="dark"] .line-intro-stats .stat-value {
    color: #d4a574 !important;
}

/* Spec badges grises, no negros */
[data-theme="dark"] .spec-badge {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #e0e0e0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .spec-badge.modern {
    background: linear-gradient(135deg, #2a2a2a 0%, #222222 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Catalog Section */
[data-theme="dark"] .catalog-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 50%, #0a0a0a 100%) !important;
}

[data-theme="dark"] .catalog-tabs {
    background: rgba(20, 20, 20, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .catalog-tab {
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
}

[data-theme="dark"] .catalog-tab:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .catalog-tab.active {
    color: var(--brand-gold) !important;
    background: rgba(201, 168, 108, 0.1) !important;
    border-color: var(--brand-gold) !important;
}

[data-theme="dark"] .line-intro {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .line-intro-premium {
    background: linear-gradient(145deg, #0f0f0f 0%, #0a0a0a 100%) !important;
    border: 1px solid rgba(201, 168, 108, 0.2) !important;
}

[data-theme="dark"] .subsection-title {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .catalog-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark"] .catalog-card:hover {
    border-color: rgba(201, 168, 108, 0.3) !important;
    box-shadow: 0 0 40px rgba(201, 168, 108, 0.1), 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .catalog-card .card-title {
    color: #ffffff !important;
}

[data-theme="dark"] .catalog-card .card-subtitle {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .catalog-card .card-price {
    color: var(--brand-gold) !important;
}

/* Spec Badges - GRIS visible, no negro */
[data-theme="dark"] .spec-badge {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .spec-badge.modern,
[data-theme="dark"] .spec-badge[style*="background:#0a0a0a"],
[data-theme="dark"] .spec-badge[style*="background: #0a0a0a"] {
    background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

[data-theme="dark"] .spec-badge.clasica {
    background: rgba(212, 165, 116, 0.2) !important;
    color: #d4a574 !important;
    border: 1px solid rgba(212, 165, 116, 0.3) !important;
}

/* Line Intro Modern/New (Línea 2026) */
[data-theme="dark"] .line-intro-modern,
[data-theme="dark"] .line-intro-new {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(212, 165, 116, 0.3) !important;
}

[data-theme="dark"] .line-intro-modern h3,
[data-theme="dark"] .line-intro-new h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .line-intro-modern p,
[data-theme="dark"] .line-intro-new p {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .new-line-badge {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
}

/* Line Intro Clásica - cambiar borde azul a dorado */
[data-theme="dark"] .line-intro-clasica {
    background: linear-gradient(145deg, #1e1e1e 0%, #181818 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-left: 4px solid #d4a574 !important;
}

[data-theme="dark"] .line-intro-clasica h3 {
    color: #ffffff !important;
}

[data-theme="dark"] .line-intro-clasica p {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .line-intro-icon {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
}

/* Catalog Card Image Background */
[data-theme="dark"] .catalog-card-image {
    background: #1a1a1a !important;
}

[data-theme="dark"] .catalog-card-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
}

[data-theme="dark"] .card-cta {
    color: #ffffff !important;
}

/* Card Features text */
[data-theme="dark"] .card-features {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .card-features span {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .card-features i {
    color: #d4a574 !important;
}

/* New Tag Badge */
[data-theme="dark"] .new-tag {
    background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%) !important;
    color: #0a0a0a !important;
}

/* Catalog Card Body */
[data-theme="dark"] .catalog-card-body {
    background: transparent !important;
}

/* =============================================
   DARK MODE - Corrección de colores AZULES
   Cambiar #003660 / var(--brand-blue) a DORADO
============================================= */

/* Textos azules → Dorado/Blanco */
[data-theme="dark"] .logo-chile,
[data-theme="dark"] .footer-logo-text .logo-chile {
    color: #d4a574 !important;
}

[data-theme="dark"] .features-title {
    color: #d4a574 !important;
}

[data-theme="dark"] .spec-badge.highlight {
    color: #d4a574 !important;
    background: rgba(212, 165, 116, 0.15) !important;
    border-color: rgba(212, 165, 116, 0.3) !important;
}

/* Cualquier texto con color azul → dorado */
[data-theme="dark"] *[style*="color:#003660"],
[data-theme="dark"] *[style*="color: #003660"],
[data-theme="dark"] *[style*="color:var(--brand-blue)"],
[data-theme="dark"] *[style*="color: var(--brand-blue)"] {
    color: #d4a574 !important;
}

/* Bordes azules → Dorado */
[data-theme="dark"] *[style*="border-color:#003660"],
[data-theme="dark"] *[style*="border-color: #003660"],
[data-theme="dark"] *[style*="border-color:var(--brand-blue)"] {
    border-color: #d4a574 !important;
}

/* =============================================
   DARK MODE - WhatsApp Buttons VISIBLES
============================================= */

[data-theme="dark"] .whatsapp-btn,
[data-theme="dark"] .btn-whatsapp,
[data-theme="dark"] .btn-whatsapp-inline {
    background: #25d366 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
    border: none !important;
}

[data-theme="dark"] .whatsapp-btn:hover,
[data-theme="dark"] .btn-whatsapp:hover,
[data-theme="dark"] .btn-whatsapp-inline:hover {
    background: #20ba58 !important;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6) !important;
    transform: translateY(-2px);
}

/* WhatsApp Label - Fondo BLANCO, texto VERDE */
[data-theme="dark"] .whatsapp-label {
    background: #ffffff !important;
    color: #25d366 !important;
    border: none !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* WhatsApp Float Button */
[data-theme="dark"] .whatsapp-float,
[data-theme="dark"] .wa-float {
    background: #25d366 !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
}

/* =============================================
   DARK MODE - Chat Float AI Button
============================================= */

[data-theme="dark"] .chat-float-ai {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4) !important;
}

[data-theme="dark"] .chat-float-ai:hover {
    background: linear-gradient(135deg, #c9a86c 0%, #b8945a 100%) !important;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.6) !important;
    transform: scale(1.05);
}

[data-theme="dark"] .chat-float-bar {
    background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .chat-float-text {
    color: #ffffff !important;
}

/* =============================================
   DARK MODE - Botones con fondo AZUL → DORADO
============================================= */

[data-theme="dark"] .btn-blue,
[data-theme="dark"] [class*="btn-blue"],
[data-theme="dark"] .btn-catalog,
[data-theme="dark"] .btn-header-fill {
    background: linear-gradient(135deg, #d4a574 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
    border: none !important;
}

[data-theme="dark"] .btn-blue:hover,
[data-theme="dark"] [class*="btn-blue"]:hover,
[data-theme="dark"] .btn-catalog:hover,
[data-theme="dark"] .btn-header-fill:hover {
    background: linear-gradient(135deg, #c9a86c 0%, #b8945a 100%) !important;
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4) !important;
}

/* Header buttons */
[data-theme="dark"] .btn-header-outline {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-header-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #d4a574 !important;
    color: #d4a574 !important;
}

/* Reviews Section */
[data-theme="dark"] .reviews-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%) !important;
}

[data-theme="dark"] .review-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark"] .review-card:hover {
    border-color: rgba(201, 168, 108, 0.2) !important;
}

[data-theme="dark"] .review-text {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .review-info strong {
    color: #ffffff !important;
}

[data-theme="dark"] .review-info span {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .review-stars {
    color: var(--brand-gold) !important;
}

/* Company Video Section */
[data-theme="dark"] .company-video-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%) !important;
}

/* Process Section */
[data-theme="dark"] .process,
[data-theme="dark"] section.process {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%) !important;
}

[data-theme="dark"] .step {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark"] .step:hover {
    border-color: rgba(201, 168, 108, 0.3) !important;
    box-shadow: 0 0 30px rgba(201, 168, 108, 0.1) !important;
}

[data-theme="dark"] .step-number {
    background: var(--brand-gold) !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .step h4,
[data-theme="dark"] .step-content h4 {
    color: #ffffff !important;
}

[data-theme="dark"] .step p,
[data-theme="dark"] .step-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Quote Section */
[data-theme="dark"] .quote-section {
    background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%) !important;
}

[data-theme="dark"] .quote-form-container {
    background: transparent !important;
}

[data-theme="dark"] .quote-header h2,
[data-theme="dark"] .quote-highlight {
    color: #ffffff !important;
}

[data-theme="dark"] .quote-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .quote-form-group input,
[data-theme="dark"] .quote-form-group select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .quote-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="dark"] .quote-form-group input:focus,
[data-theme="dark"] .quote-form-group select:focus {
    border-color: var(--brand-gold) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Contact Section */
[data-theme="dark"] .contact,
[data-theme="dark"] section.contact,
[data-theme="dark"] #contacto {
    background: linear-gradient(180deg, #0a0a0a 0%, #080808 100%) !important;
}

[data-theme="dark"] .contact-form-wrapper {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .contact-heading {
    color: #ffffff !important;
}

[data-theme="dark"] .contact-heading em {
    color: var(--brand-gold) !important;
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] .contact-form select {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .contact-form input:focus,
[data-theme="dark"] .contact-form textarea:focus,
[data-theme="dark"] .contact-form select:focus {
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1) !important;
}

[data-theme="dark"] .contact-form label {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .contact-item {
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .item-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .item-value {
    color: #ffffff !important;
}

/* Buttons in Dark Mode */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-submit,
[data-theme="dark"] .btn-quote-submit {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #c9a86c 100%) !important;
    color: #0a0a0a !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.3) !important;
}

[data-theme="dark"] .btn-primary:hover,
[data-theme="dark"] .btn-submit:hover,
[data-theme="dark"] .btn-quote-submit:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.4) !important;
    transform: translateY(-2px);
}

[data-theme="dark"] .btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--brand-gold) !important;
    color: var(--brand-gold) !important;
}

/* Model Cards Priority */
[data-theme="dark"] .model-card-priority {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

[data-theme="dark"] .model-card-priority:hover {
    border-color: rgba(201, 168, 108, 0.3) !important;
    box-shadow: 0 0 40px rgba(201, 168, 108, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .model-card-priority .model-name {
    color: #ffffff !important;
}

[data-theme="dark"] .model-card-priority .model-price {
    color: #f5d998 !important;
    background: linear-gradient(135deg, #f5d998 0%, #d4a574 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

[data-theme="dark"] .model-card-priority .model-specs {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* =============================================
   QUOTE SECTION - Cotización con Video
============================================= */

.quote-section {
    padding: clamp(3rem, 8vw, 6rem) var(--space-xl);
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.quote-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quote-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
}

.quote-form-container {
    padding: 2rem;
}

.quote-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.1;
}

.quote-highlight {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--brand-gold);
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.quote-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-form-group {
    position: relative;
}

.quote-form-group input,
.quote-form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background: white;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quote-form-group input:focus,
.quote-form-group select:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.quote-form-group input::placeholder {
    color: #999;
}

.quote-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.quote-form-group select option {
    padding: 0.5rem;
}

.quote-form-group select optgroup {
    font-weight: 700;
    color: var(--brand-blue);
}

/* Location input with button */
.quote-location-input {
    display: flex;
    gap: 0.5rem;
}

.quote-location-input input {
    flex: 1;
    border-radius: 12px 0 0 12px;
}

.btn-quote-location {
    padding: 1rem 1.25rem;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quote-location:hover {
    background: var(--brand-gold);
    color: #1a1a1a;
}

/* Map container */
.quote-map-container {
    margin-top: 0.75rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

#quoteMap {
    width: 100%;
    height: 200px;
}

.quote-map-hint {
    background: #f8f8f8;
    padding: 0.5rem 1rem;
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-map-hint i {
    color: var(--brand-gold);
}

/* Checkbox */
.quote-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.quote-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-gold);
    cursor: pointer;
}

.quote-checkbox label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.quote-checkbox label a {
    color: var(--brand-gold);
    text-decoration: none;
}

.quote-checkbox label a:hover {
    text-decoration: underline;
}

/* Submit button */
.btn-quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: #1a1a1a;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-quote-submit:hover {
    background: var(--brand-gold);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.3);
}

.btn-quote-submit i {
    transition: transform 0.3s ease;
}

.btn-quote-submit:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 968px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quote-video video {
        min-height: 300px;
    }

    .quote-form-container {
        padding: 1rem 0;
    }
}

@media (max-width: 576px) {
    .quote-section {
        padding: 2rem 1rem;
    }

    .quote-form-row {
        grid-template-columns: 1fr;
    }

    .quote-header h2,
    .quote-highlight {
        font-size: 1.75rem;
    }
}

/* =============================================
   MODERN FOOTER STYLES
============================================= */

.footer-modern {
    background: linear-gradient(180deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: clamp(2.5rem, 6vw, 4rem) var(--space-xl) clamp(1.5rem, 3vw, 2rem);
    position: relative;
    color: #ffffff;
}

[data-theme="dark"] .footer-modern {
    background: linear-gradient(180deg, #1a1a1a 0%, #141414 100%);
}

.footer-modern-content {
    max-width: 1300px;
    margin: 0 auto;
}

/* Footer Brand Section */
.footer-brand {
    text-align: center;
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-brand .footer-social-modern {
    justify-content: center;
}

.footer-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Newsletter Column */
.footer-newsletter h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.newsletter-form {
    max-width: 100%;
}

.newsletter-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.newsletter-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.newsletter-input-wrapper button {
    background: var(--accent-primary);
    color: #1a1a1a;
    border: none;
    padding: 0 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-input-wrapper button:hover {
    background: var(--accent-hover);
}

/* Footer Links Columns */
.footer-links-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-column ul li a,
.footer-links-column ul li span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links-column ul li a:hover {
    color: var(--accent-primary);
}

.footer-contact-list li i {
    color: var(--accent-primary);
    width: 20px;
    font-size: 0.95rem;
}

/* Sucursales */
.footer-sucursales li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-sucursales li i {
    color: var(--accent-primary);
    margin-top: 0;
}

.footer-sucursales li div {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.footer-sucursales li strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap !important;
}

.footer-sucursales li strong::after {
    content: " -";
    font-weight: 400;
}

.footer-sucursales li span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    white-space: nowrap !important;
}

.footer-sucursales li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 8px;
}

.footer-sucursales li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-sucursales li a:hover strong {
    color: var(--accent-primary);
}

.footer-sucursales li a:hover i {
    transform: scale(1.1);
}

/* Social Modern */
.footer-social-modern {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.footer-social-modern a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social-modern a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Theme Toggle */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.theme-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

.theme-toggle {
    position: relative;
    width: 54px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle-slider {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.theme-icon-light,
.theme-icon-dark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    transition: opacity 0.3s ease;
}

.theme-icon-light {
    left: 8px;
    color: var(--accent-primary);
    opacity: 1;
}

.theme-icon-dark {
    right: 8px;
    color: var(--text-muted);
    opacity: 0.5;
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(28px);
}

[data-theme="dark"] .theme-icon-light {
    opacity: 0.5;
}

[data-theme="dark"] .theme-icon-dark {
    opacity: 1;
    color: var(--accent-primary);
}

/* Footer Bottom */
.footer-modern-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-right {
    display: flex;
    gap: 2rem;
}

.footer-bottom-right a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--accent-primary);
}

/* Footer Social Mini - Bottom right subtle icons */
.footer-social-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-mini a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-mini a:hover {
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 2rem var(--space-lg) 1.5rem;
    }

    .footer-brand {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo {
        max-width: 170px;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-modern-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-links-column h4,
    .footer-newsletter h4 {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-links-column ul {
        gap: 0.6rem;
    }

    .footer-links-column ul li a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .footer-modern {
        padding: 1.5rem var(--space-md) 1.25rem;
    }

    .footer-brand {
        padding-bottom: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-tagline {
        font-size: 0.8rem;
    }

    .footer-social-modern a {
        width: 44px;
        height: 44px;
    }

    .footer-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        text-align: center;
    }

    .footer-links-column ul {
        align-items: center;
    }

    .footer-sucursales li {
        justify-content: center;
        text-align: left;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .theme-toggle-wrapper {
        justify-content: center;
    }

    .footer-modern-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom-right a {
        font-size: 0.8rem;
    }

    .footer-social-mini {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding-left: 0;
        padding-top: 0.75rem;
        margin-top: 0.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* =============================================
   SEARCH OVERLAY STYLES
============================================= */

.search-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: var(--bg-overlay);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 700px;
    transform: translateY(-30px);
    transition: transform 0.4s ease;
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.search-container h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-primary);
}

.search-input-wrapper i {
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.search-input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: white;
    outline: none;
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.search-suggestions {
    text-align: center;
    margin-top: 2rem;
}

.suggestion-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.search-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #1a1a1a;
}

.search-results {
    margin-top: 2rem;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.search-result-item img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.search-result-info h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.search-result-info span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
}

/* =============================================
   GSAP ANIMATION HELPERS
============================================= */

/* Hero Preview GSAP Animation Override */
.hero-preview.gsap-animated {
    animation: none !important;
}

.hero-preview.gsap-animated:hover {
    animation: none !important;
}

/* Scroll Reveal Classes for GSAP */
.gsap-reveal {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}

.gsap-reveal-right {
    opacity: 0;
    transform: translateX(50px);
}

.gsap-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* Stagger children animation */
.gsap-stagger > * {
    opacity: 0;
    transform: translateY(30px);
}

/* =============================================
   MOBILE RESPONSIVE FIXES
============================================= */

@media (max-width: 768px) {
    /* Hero Preview - Ocultar en móvil */
    .hero-preview {
        display: none;
    }

    /* Hero Scroll (Descubre más) - Ocultar en móvil */
    .hero-scroll {
        display: none;
    }

    /* Hero Badge - Posicionar arriba del video */
    .hero-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        z-index: 5;
    }

    /* Hero Content - Reorganizar */
    .hero-content {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .hero-title {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
        margin-bottom: 0.5rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.8rem;
    }

    /* Chat Float - Convertir en botón pequeño en la esquina */
    .chat-float {
        bottom: 90px;
        left: auto;
        right: 16px;
        transform: none;
        width: auto;
    }

    .chat-float-bar {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 50px;
    }

    .chat-float-text {
        display: none;
    }

    .chat-float-ai {
        width: 32px;
        height: 32px;
    }

    .chat-float-send {
        display: none;
    }

    /* Company Video Section - Arreglar botones y video */
    .company-video-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }

    .company-video-player {
        min-width: unset;
        width: 100%;
    }

    .company-video-content {
        text-align: center;
    }

    .company-video-features {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .cv-feature {
        padding: 0.75rem 1rem;
        justify-content: flex-start;
    }

    .company-video-heading {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .company-video-desc {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Footer - Centrar y ordenar */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .footer-col {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Model Cards Carousel */
    .models-carousel {
        gap: var(--space-md);
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .model-card {
        flex: 0 0 calc(50% - 8px);
        min-width: 150px;
    }

    /* Menu hamburguesa mejorado */
    .menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 576px) {
    /* Modal de modelos - Rediseño compacto para móvil */
    .model-modal-content {
        grid-template-columns: 1fr;
        max-height: 85vh;
        width: 92%;
        border-radius: 20px;
        overflow: hidden;
    }

    .modal-image {
        min-height: auto;
        max-height: 35vh;
        position: relative;
        background: #1a1a1a;
    }

    .modal-image img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: auto;
        max-height: 35vh;
    }

    .modal-details {
        padding: 1.25rem;
        max-height: calc(85vh - 200px);
        overflow-y: auto;
    }

    .modal-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 1rem;
    }

    .modal-title {
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }

    .modal-style {
        font-size: 0.8rem;
    }

    .modal-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        position: absolute;
        top: 12px;
        left: 12px;
    }

    .modal-size-badge {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    /* Specs en grid 2x2 compacto */
    .modal-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 1rem;
    }

    .modal-spec {
        padding: 0.6rem 0.75rem;
        border-radius: 10px;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .modal-spec-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .modal-spec-info {
        text-align: left;
    }

    .modal-spec-value {
        font-size: 1rem;
    }

    .modal-spec-label {
        font-size: 0.65rem;
    }

    .modal-features {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .modal-features-title {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .modal-features ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem 0.5rem;
    }

    .modal-features li {
        font-size: 0.75rem;
        padding: 0.25rem 0;
    }

    .modal-features li::before {
        font-size: 0.6rem;
        margin-right: 0.3rem;
    }

    .modal-cta-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .modal-cta {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    /* Modelos relacionados en móvil */
    .modal-related {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .related-title {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .related-models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .related-model-image {
        height: 55px;
    }

    .related-model-info {
        padding: 0.4rem;
    }

    .related-model-name {
        font-size: 0.7rem;
    }

    .related-model-style {
        font-size: 0.6rem;
    }

    .modal-cta i {
        font-size: 0.8rem;
    }

    .modal-close {
        top: auto;
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        background: rgba(0,0,0,0.8);
        color: #fff;
        box-shadow: 0 2px 12px rgba(0,0,0,0.4);
        z-index: 100;
    }

    .modal-close:hover {
        background: rgba(0,0,0,0.95);
        transform: scale(1.05);
    }

    /* Drag handle para cerrar en móvil */
    .modal-drag-handle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 12px 20px 8px;
        background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
        cursor: pointer;
        position: sticky;
        top: 0;
        z-index: 50;
        border-radius: 20px 20px 0 0;
    }

    .modal-drag-handle .drag-bar {
        width: 40px;
        height: 4px;
        background: rgba(255,255,255,0.6);
        border-radius: 2px;
        margin-bottom: 6px;
    }

    .modal-drag-handle .drag-hint {
        font-size: 0.7rem;
        color: rgba(255,255,255,0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .modal-drag-handle:active {
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.75) 100%);
    }

    .modal-drag-handle:active .drag-bar {
        background: rgba(255,255,255,0.9);
    }

    /* Model Cards - Mostrar de a 2 */
    .model-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 140px;
    }

    .model-name {
        font-size: 0.85rem;
    }

    .model-tag {
        font-size: 0.7rem;
    }

    /* Footer móvil */
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }

    /* Chat float más abajo */
    .chat-float {
        bottom: 80px;
    }

    /* Company video section */
    .company-video-section {
        padding: var(--space-xl) var(--space-sm);
    }

    .cv-feature span {
        font-size: 0.85rem;
    }

    .cv-feature i {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    /* Pantallas muy pequeñas */
    .model-card {
        flex: 0 0 calc(100% - 16px);
    }

    .modal-specs {
        grid-template-columns: 1fr 1fr;
    }

    .chat-float {
        bottom: 70px;
        max-width: calc(100vw - 24px);
    }

    .chat-float-bar {
        padding: 5px 8px;
    }

    .chat-float-text {
        font-size: 0.8rem;
    }

    /* Footer extra pequeño */
    .footer-title {
        font-size: 0.9rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-contact-text {
        font-size: 0.85rem;
    }
}

/* =============================================
   QUOTE MODAL
============================================= */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.quote-modal-content {
    position: relative;
    background: var(--bg-surface);
    border-radius: 20px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px 40px;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.quote-modal.active .quote-modal-content {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-overlay);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.quote-modal-close:hover {
    background: var(--brand-gold);
    color: white;
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.quote-modal-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.quote-modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quote-form-row {
    margin-bottom: 16px;
}

.quote-form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quote-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-canvas);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.quote-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.quote-submit-btn:hover {
    background: var(--brand-gold);
    transform: translateY(-2px);
}

.quote-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Location Input with Geolocation Button */
.location-input-wrapper {
    display: flex;
    gap: 8px;
}

.location-input-wrapper input {
    flex: 1;
}

.btn-geolocation {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-medium);
    border-radius: 10px;
    background: var(--bg-canvas);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-geolocation:hover {
    background: var(--brand-gold);
    color: white;
    border-color: var(--brand-gold);
}

.btn-geolocation.loading {
    pointer-events: none;
}

.btn-geolocation.loading i {
    animation: spin 1s linear infinite;
}

.btn-geolocation.success {
    background: #2d8659;
    color: white;
    border-color: #2d8659;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Location Map Container */
.location-map-container {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease;
}

.location-map-container iframe,
.location-map-container > div:first-child {
    display: block;
}

.map-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-hint i {
    color: var(--brand-gold);
}

.map-hint-light {
    color: rgba(255, 255, 255, 0.7);
}

.map-hint-light i {
    color: var(--brand-gold);
}

/* Google Places Autocomplete Dropdown */
.pac-container {
    z-index: 100000 !important;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-light);
    font-family: inherit;
    margin-top: 4px;
}

.pac-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
}

.pac-item:hover {
    background: var(--bg-canvas);
}

.pac-item-query {
    font-weight: 600;
    color: var(--text-primary);
}

.pac-matched {
    color: var(--brand-gold);
    font-weight: 600;
}

.pac-icon {
    margin-right: 8px;
}

/* Responsive para mapas y geolocalización */
@media (max-width: 768px) {
    .location-map-container {
        margin-top: 10px;
    }

    .location-map-container > div:first-child {
        height: 180px !important;
    }

    .map-hint {
        font-size: 11px;
    }

    .btn-geolocation {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .location-input-wrapper {
        gap: 6px;
    }

    .location-input-wrapper input {
        font-size: 16px; /* Evita zoom en iOS */
    }

    /* Autocompletado en móvil - Mejorado */
    .pac-container {
        max-width: calc(100vw - 40px);
        z-index: 10001 !important;
        font-family: inherit;
        margin-top: 4px;
    }

    .pac-item {
        padding: 14px 12px;
        font-size: 15px;
        line-height: 1.5;
        min-height: 48px;
        border-bottom: 1px solid #e0e0e0;
    }

    .pac-item:last-child {
        border-bottom: none;
    }

    .pac-item-query {
        font-size: 15px;
    }

    /* Prevenir zoom automático en iOS */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important; /* Mínimo 16px previene zoom en iOS */
    }

    /* Mejorar scroll cuando teclado virtual aparece */
    .mobile-input:focus {
        scroll-margin-top: 100px;
        scroll-margin-bottom: 100px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Form Location Styles */
.form-group-location {
    position: relative;
}

.form-group-location .location-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.form-group-location .location-input-wrapper input {
    flex: 1;
}

.form-group-location .btn-geolocation {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    border-radius: 8px;
}

/* Brochure Form Location Styles */
.brochure-location-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
}

.brochure-location-wrapper input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.brochure-location-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.brochure-location-wrapper input:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.15);
}

.btn-geolocation-brochure {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-geolocation-brochure:hover {
    background: var(--brand-gold);
    color: white;
    border-color: var(--brand-gold);
}

.btn-geolocation-brochure.loading i {
    animation: spin 1s linear infinite;
}

.btn-geolocation-brochure.success {
    background: #2d8659;
    color: white;
    border-color: #2d8659;
}

@media (max-width: 576px) {
    /* Quote Modal Mobile - Bottom Sheet Style */
    .quote-modal-content {
        padding: 20px 20px 28px;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        overflow-y: auto;
    }

    .quote-modal-close {
        min-width: 44px;
        min-height: 44px;
        top: 12px;
        right: 12px;
        font-size: 1.1rem;
    }

    .quote-form-row {
        margin-bottom: 12px;
    }

    .quote-form-row.two-cols {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quote-modal-header {
        margin-bottom: 16px;
    }

    .quote-modal-header h3 {
        font-size: 1.25rem;
    }

    .quote-modal-header p {
        font-size: 0.8rem;
    }

    .quote-form-group input,
    .quote-form-group select,
    .quote-form-group textarea {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .quote-form-group label {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .quote-form-group textarea {
        min-height: 50px;
    }

    .quote-submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        margin-top: 8px;
    }

    /* Touch Targets: Inputs en Quote Modal */
    .quote-form-group input,
    .quote-form-group select,
    .quote-form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
        min-height: 46px;
        border-radius: 10px;
    }

    .quote-form-group textarea {
        min-height: 70px;
    }

    /* Touch Target: Submit button */
    .quote-submit-btn {
        padding: 14px 24px;
        min-height: 50px;
        font-size: 1rem;
        margin-top: 10px;
    }
}

/* =============================================
   MODELOS PRINCIPALES - NUEVOS ESTILOS
   ============================================= */

.models-main-section {
    padding: var(--space-xl) var(--space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-main {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.priority-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.4);
    position: relative;
}

.priority-tag-new::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    border-radius: 50px;
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.priority-tag-new i {
    font-size: 1rem;
    animation: rotate-star 3s linear infinite;
}

@keyframes rotate-star {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.priority-tag {
    display: inline-block;
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.models-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.model-card-priority {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.model-card-priority:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    border-color: #c9a86c;
}

.model-card-priority .model-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.model-card-priority .model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.model-card-priority:hover .model-image img {
    transform: scale(1.1);
}

.priority-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.98);
    color: #1a1a1a;
    padding: 0.625rem 1.375rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.priority-badge.popular {
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
    box-shadow: 0 6px 25px rgba(201, 168, 108, 0.6);
    border-color: rgba(201, 168, 108, 0.4);
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 25px rgba(201, 168, 108, 0.6); }
    50% { transform: scale(1.06); box-shadow: 0 8px 30px rgba(201, 168, 108, 0.8); }
}

.priority-badge.new {
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(33, 150, 243, 0.6);
    border-color: rgba(33, 150, 243, 0.4);
}

/* Size Overlay en la imagen */
.model-size-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.size-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -2px;
}

.size-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Badges pequeños modernos */
.featured-badge,
.new-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.featured-badge {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.95) 0%, rgba(212, 183, 125, 0.95) 100%);
    color: #1a1a1a;
}

.featured-badge i {
    animation: pulse-crown 2s ease-in-out infinite;
}

@keyframes pulse-crown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.new-badge {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.95) 0%, rgba(66, 165, 245, 0.95) 100%);
    color: white;
}

.new-badge i {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; transform: rotate(15deg); }
}

/* Botón PDF compacto */
.btn-download-pdf {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    min-height: var(--touch-target-min); /* 44px touch target */
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download-pdf:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.7);
}

.btn-download-pdf i {
    font-size: 1rem;
    animation: bounce-pdf 2s ease-in-out infinite;
}

.btn-download-pdf span {
    font-size: 0.8125rem;
}

@keyframes bounce-pdf {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Info simplificada */
.model-info-simple {
    padding: 1.5rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.model-price-simple {
    font-size: 1.875rem;
    font-weight: 800;
    background: linear-gradient(135deg, #003660 0%, #004d80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}

.model-cta-simple {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #c9a86c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.model-cta-simple i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.model-card-priority:hover .model-cta-simple i {
    transform: translateX(4px);
}

.model-card-priority .model-info {
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, white 0%, #fafafa 100%);
}

.model-card-priority .model-name {
    font-size: 1.625rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.model-specs {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-specs::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #c9a86c;
    border-radius: 50%;
}

.model-card-priority .model-price {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #003660 0%, #004d80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -1px;
}

.model-card-priority .price-currency {
    font-size: 1.125rem;
    font-weight: 600;
    color: #999;
    margin-left: 0.375rem;
}

/* CTA Rápida */
.models-cta-quick {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
}

.models-cta-quick p {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 1rem;
}

.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-inline:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* =============================================
   CATÁLOGO DE MODELOS - DISEÑO ELEGANTE
============================================= */
.catalog-section {
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
}

.catalog-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header del Catálogo */
.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.catalog-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1) 0%, rgba(201, 168, 108, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.catalog-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.catalog-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Tabs de Líneas */
.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.catalog-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.75rem;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 240px;
}

.catalog-tab:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 30px rgba(0, 54, 96, 0.12);
    transform: translateY(-2px);
}

.catalog-tab.active {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 54, 96, 0.25);
}

.catalog-tab .tab-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 54, 96, 0.08);
    border-radius: 12px;
    font-size: 1.25rem;
    color: var(--brand-blue);
    transition: all 0.3s ease;
}

.catalog-tab.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.catalog-tab .tab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.catalog-tab .tab-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.catalog-tab.active .tab-name {
    color: white;
}

.catalog-tab .tab-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.catalog-tab.active .tab-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Contenido del Catálogo */
.catalog-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.catalog-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro de Línea - Diseño Mejorado */
.line-intro {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.line-intro-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 54, 96, 0.2);
}

.line-intro-clasica .line-intro-icon {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
}

.line-intro-modern .line-intro-icon {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.25);
}

.line-intro-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(33, 150, 243, 0.1);
}

/* Línea 2026 - Nueva Línea Premium (Negro) */
.line-intro-new {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    border: 1px solid rgba(201, 168, 108, 0.3);
    overflow: hidden;
}

.line-intro-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.line-intro-new .line-intro-text h3,
.line-intro-new .line-intro-text p {
    color: white;
}

.line-intro-new .line-intro-text p {
    color: rgba(255, 255, 255, 0.75);
}

.line-intro-new .line-intro-icon {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
}

.line-intro-new .line-intro-icon i {
    color: #0a0a0a;
}

.line-intro-new .stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 108, 0.2);
}

.line-intro-new .stat-value {
    color: var(--brand-gold);
}

.line-intro-new .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.new-line-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    color: #0a0a0a;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 1;
}

.new-line-badge i {
    font-size: 0.7rem;
}

/* Tab con indicador Nuevo */
.catalog-tab.tab-new {
    position: relative;
}

.tab-new-indicator {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    color: #0a0a0a;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(201, 168, 108, 0.4);
    z-index: 2;
}

.catalog-tab.tab-new:hover .tab-new-indicator,
.catalog-tab.tab-new.active .tab-new-indicator {
    transform: scale(1.1);
}

.line-intro-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.line-intro-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.line-intro-stats {
    display: flex;
    gap: 2rem;
}

.line-intro-stats .stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: var(--bg-subtle);
    border-radius: 12px;
}

.line-intro-stats .stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-blue);
    line-height: 1;
}

.line-intro-stats .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
    display: block;
}

/* Grid del Catálogo */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Tarjetas del Catálogo */
.catalog-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.catalog-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.08);
}

.catalog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 54, 96, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.catalog-card:hover .catalog-card-overlay {
    opacity: 1;
}

.card-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.catalog-card:hover .card-cta {
    transform: translateY(0);
}

.card-cta i {
    transition: transform 0.3s ease;
}

.catalog-card:hover .card-cta i {
    transform: translateX(4px);
}

/* Etiqueta Nuevo */
.new-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--brand-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 168, 108, 0.4);
}

/* Ribbon Premium */
.premium-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #d4b77d 100%);
    color: #1a1a1a;
    padding: 0.4rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.catalog-card-premium {
    border: 2px solid rgba(201, 168, 108, 0.3);
}

.catalog-card-premium:hover {
    border-color: var(--brand-gold);
}

/* Cuerpo de la Tarjeta */
.catalog-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.card-specs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.spec-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    background: #f0f0f0;
    color: #666;
}

.spec-badge.highlight {
    background: rgba(0, 54, 96, 0.1);
    color: var(--brand-blue);
}

.spec-badge.gold {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.2) 0%, rgba(201, 168, 108, 0.1) 100%);
    color: #8b7355;
}

.spec-badge.clasica {
    background: linear-gradient(135deg, rgba(0, 54, 96, 0.15) 0%, rgba(0, 54, 96, 0.08) 100%);
    color: var(--brand-blue);
    font-weight: 700;
    border: 1px solid rgba(0, 54, 96, 0.15);
}

.spec-badge.modern,
.catalog-card .spec-badge.modern,
.card-specs .spec-badge.modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.spec-badge.highlight {
    background: linear-gradient(135deg, var(--brand-gold) 0%, #b8945a 100%);
    color: #0a0a0a;
    font-weight: 700;
}

/* Subsecciones del catálogo */
.catalog-subsection {
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.subsection-title i {
    color: var(--brand-blue);
    font-size: 1rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.card-features {
    display: flex;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-features i {
    color: var(--brand-gold);
    font-size: 0.9rem;
}

/* Footer del Catálogo */
.catalog-footer {
    margin-top: 3rem;
}

.catalog-footer-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    border-radius: 20px;
    color: white;
}

.catalog-footer-content > i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.catalog-footer .footer-text {
    flex: 1;
}

.catalog-footer .footer-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.catalog-footer .footer-text p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.85;
}

.btn-catalog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--brand-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-catalog-cta:hover {
    background: var(--brand-gold);
    color: #1a1a1a;
    transform: translateX(4px);
}

.btn-catalog-cta i {
    transition: transform 0.3s ease;
}

.btn-catalog-cta:hover i {
    transform: translateX(4px);
}

/* Formulario de contacto en catálogo */
.catalog-contact-form {
    flex-shrink: 0;
}

.catalog-contact-form .form-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.catalog-contact-form input {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 160px;
}

.catalog-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.catalog-contact-form input:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.15);
}

.catalog-contact-form button.btn-catalog-cta {
    border: none;
    cursor: pointer;
}

/* Responsive Catálogo */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-section {
        padding: var(--space-lg) var(--space-md);
    }

    .catalog-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-tab {
        min-width: auto;
        justify-content: flex-start;
    }

    .line-intro {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .line-intro-text p {
        max-width: none;
    }

    .line-intro-stats {
        width: 100%;
        justify-content: center;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .catalog-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 2rem 1.5rem;
    }

    .catalog-contact-form {
        width: 100%;
    }

    .catalog-contact-form .form-row {
        flex-direction: column;
        width: 100%;
    }

    .catalog-contact-form input {
        width: 100%;
        min-width: unset;
    }

    .btn-catalog-cta {
        width: 100%;
        justify-content: center;
    }

    .catalog-subsection {
        margin: 1.5rem 0 0.75rem 0;
    }

    .subsection-title {
        font-size: 1rem;
    }
}

/* Dark Mode Catálogo */
body.dark-mode .catalog-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 50%, #1a1a1a 100%);
}

body.dark-mode .catalog-label {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.15) 0%, rgba(201, 168, 108, 0.08) 100%);
    border-color: rgba(201, 168, 108, 0.3);
}

body.dark-mode .catalog-title {
    color: #ffffff;
}

body.dark-mode .catalog-desc {
    color: #999;
}

body.dark-mode .catalog-tab {
    background: #252525;
    border-color: #333;
}

body.dark-mode .catalog-tab:hover {
    border-color: var(--brand-blue);
}

body.dark-mode .catalog-tab .tab-icon {
    background: rgba(0, 54, 96, 0.2);
}

body.dark-mode .catalog-tab .tab-name {
    color: #fff;
}

body.dark-mode .catalog-tab .tab-desc {
    color: #888;
}

body.dark-mode .line-intro {
    background: #252525;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.dark-mode .line-intro-text h3 {
    color: #fff;
}

body.dark-mode .line-intro-text p {
    color: #999;
}

body.dark-mode .line-intro-stats .stat-item {
    background: #1a1a1a;
}

body.dark-mode .catalog-card {
    background: #252525;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.dark-mode .catalog-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

body.dark-mode .card-title {
    color: #fff;
}

body.dark-mode .card-subtitle {
    color: #888;
}

body.dark-mode .spec-badge {
    background: #1a1a1a;
    color: #888;
}

body.dark-mode .spec-badge.modern {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    color: #ffffff !important;
}

body.dark-mode .card-features {
    border-top-color: #333;
}

body.dark-mode .card-features span {
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .models-grid-main {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .models-grid-secondary {
        grid-template-columns: 1fr;
    }

    .btn-download-pdf {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .model-card-priority .model-name {
        font-size: 1.25rem;
    }

    .model-card-priority .model-price {
        font-size: 1.5rem;
    }

    .section-tag::before,
    .section-tag::after {
        width: 20px;
    }

    .section-header-elegant {
        margin-bottom: var(--space-lg);
    }

    .models-line-header {
        flex-direction: column;
        text-align: center;
        padding: var(--space-md);
    }

    .line-header-badge {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .line-title {
        font-size: 1.25rem;
    }

    .line-description {
        font-size: 0.875rem;
    }

    .models-line-header:hover {
        transform: none;
    }
}

/* MODO OSCURO */
body.dark-mode .models-main-section,
body.dark-mode .models-other-section {
    background: transparent;
}

body.dark-mode .priority-tag {
    background: linear-gradient(135deg, #d4b77d 0%, #e5c88e 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(212, 183, 125, 0.3);
}

body.dark-mode .models-title {
    color: #ffffff;
}

body.dark-mode .models-subtitle,
body.dark-mode .models-other-subtitle {
    color: #b0b0b0;
}

body.dark-mode .priority-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.dark-mode .priority-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode .priority-badge.popular {
    background: linear-gradient(135deg, #d4b77d 0%, #e5c88e 100%);
    color: #1a1a1a;
    border-color: rgba(212, 183, 125, 0.4);
    box-shadow: 0 6px 25px rgba(212, 183, 125, 0.5);
}

body.dark-mode .priority-badge.new {
    background: linear-gradient(135deg, #42a5f5 0%, #64b5f6 100%);
    color: #ffffff;
    border-color: rgba(66, 165, 245, 0.4);
    box-shadow: 0 6px 25px rgba(66, 165, 245, 0.5);
}

body.dark-mode .model-card-priority {
    background: #2a2a2a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-color: transparent;
}

body.dark-mode .model-card-priority:hover {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
    border-color: #c9a86c;
}

body.dark-mode .model-card-priority .model-name {
    color: #ffffff;
}

body.dark-mode .model-specs {
    color: #b0b0b0;
}

body.dark-mode .model-card-priority .model-price {
    color: #d4b77d;
}

body.dark-mode .model-card-priority .price-currency {
    color: #999;
}

body.dark-mode .btn-download-pdf {
    background: rgba(42, 42, 42, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .btn-download-pdf:hover {
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
    border-color: transparent;
}

/* Dark mode - Simplified model cards */
body.dark-mode .priority-tag-new {
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}

body.dark-mode .model-info-simple {
    background: #2a2a2a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .model-price-simple {
    background: linear-gradient(135deg, #42a5f5 0%, #66b3f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .model-cta-simple {
    color: #c9a86c;
}

body.dark-mode .model-cta-simple:hover {
    gap: 0.75rem;
}

body.dark-mode .size-number {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.2);
}

body.dark-mode .models-cta-quick {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .models-cta-quick p {
    color: #e0e0e0;
}

body.dark-mode .btn-expand-models {
    background: linear-gradient(135deg, #c9a86c 0%, #d4b77d 100%);
    color: #1a1a1a;
}

body.dark-mode .btn-expand-models:hover {
    box-shadow: 0 8px 20px rgba(201, 168, 108, 0.4);
}

body.dark-mode .models-other-section {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
}

body.dark-mode .section-tag {
    color: #d4b77d;
}

body.dark-mode .section-tag::before,
body.dark-mode .section-tag::after {
    background: #d4b77d;
}

body.dark-mode .section-title-elegant {
    color: #ffffff;
}

body.dark-mode .section-title-elegant .highlight {
    background: linear-gradient(135deg, #42a5f5 0%, #d4b77d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .section-subtitle-elegant {
    color: #b0b0b0;
}

body.dark-mode .models-line-header {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .models-line-header:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

body.dark-mode .line-title {
    color: #ffffff;
}

body.dark-mode .line-description {
    color: #b0b0b0;
}

body.dark-mode .model-card {
    background: #2a2a2a;
}

body.dark-mode .model-card .model-name {
    color: #ffffff;
}

body.dark-mode .model-card .model-tag {
    color: #b0b0b0;
}

body.dark-mode .models-other-footer {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.dark-mode .models-other-footer p {
    color: #e0e0e0;
}

/* ============================================
   SECCIÓN INTRODUCCIÓN / POR QUÉ ELEGIRNOS
   ============================================ */

.intro-section {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.intro-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #c9a86c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 168, 108, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(201, 168, 108, 0.3);
}

.intro-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #003660 0%, #c9a86c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.intro-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #003660 0%, #004d80 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 54, 96, 0.25);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.375rem 0;
}

.feature-content p {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.intro-visual {
    position: relative;
}

.intro-stats-card {
    background: linear-gradient(135deg, #003660 0%, #004d80 100%);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 60px rgba(0, 54, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.intro-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    display: block;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #c9a86c;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(201, 168, 108, 0.3);
}

.stat-number::after {
    content: '+';
    margin-left: 4px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Intro Section */
@media (max-width: 1024px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-visual {
        order: -1;
    }

    .intro-stats-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: clamp(3rem, 6vw, 4rem) var(--space-md);
    }

    .intro-feature {
        padding: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }

    .stat-item {
        padding: 1.25rem 0;
    }
}

/* Dark Mode - Intro Section */
body.dark-mode .intro-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

body.dark-mode .intro-section::before {
    background: radial-gradient(circle, rgba(201, 168, 108, 0.05) 0%, transparent 70%);
}

body.dark-mode .intro-tag {
    background: rgba(201, 168, 108, 0.15);
    border-color: rgba(201, 168, 108, 0.4);
}

body.dark-mode .intro-title {
    color: #ffffff;
}

body.dark-mode .intro-description {
    color: #b0b0b0;
}

body.dark-mode .intro-feature {
    background: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .intro-feature:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

body.dark-mode .feature-content h4 {
    color: #ffffff;
}

body.dark-mode .feature-content p {
    color: #b0b0b0;
}

/* ============================================
   MODAL DE DESCARGA DE PDF
   ============================================ */

.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    opacity: 1;
}

.pdf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.pdf-modal-content {
    /* Mobile-first: Bottom sheet */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    width: 100%;
    max-width: 100vw;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUpFromBottom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Desktop: Centered modal */
@media (min-width: 768px) {
    .pdf-modal-content {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 90%;
        max-width: 550px;
        border-radius: 20px;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        max-height: 90vh;
        animation: slideUpFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
}

.pdf-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.pdf-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.pdf-modal-close i {
    font-size: 1.125rem;
    color: #666;
}

.pdf-modal-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px 20px 0 0;
}

.pdf-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.pdf-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.pdf-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.pdf-modal-header p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.pdf-form {
    padding: 2rem;
}

.pdf-form-group {
    margin-bottom: 1.5rem;
}

.pdf-form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.pdf-form-group label i {
    margin-right: 0.5rem;
    color: #c9a86c;
}

.pdf-form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.pdf-form-group input:focus {
    outline: none;
    border-color: #003660;
    box-shadow: 0 0 0 3px rgba(0, 54, 96, 0.1);
}

.pdf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pdf-form-checkbox {
    margin-bottom: 1.5rem;
}

.pdf-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.pdf-form-checkbox input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.pdf-form-checkbox span {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.pdf-form-checkbox a {
    color: #003660;
    text-decoration: underline;
}

.pdf-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #003660 0%, #004d80 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 54, 96, 0.3);
}

.pdf-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 54, 96, 0.4);
}

.pdf-submit-btn:active {
    transform: translateY(0);
}

.pdf-submit-btn i {
    font-size: 1.125rem;
}

.pdf-form-note {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: #f0f7ff;
    border-radius: 8px;
    border-left: 3px solid #0066cc;
    font-size: 0.875rem;
    color: #0066cc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-form-note i {
    font-size: 1rem;
}

/* Responsive PDF Modal */
@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95%;
        max-width: none;
        border-radius: 16px;
    }

    .pdf-modal-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .pdf-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .pdf-icon-wrapper i {
        font-size: 1.75rem;
    }

    .pdf-modal-header h3 {
        font-size: 1.5rem;
    }

    .pdf-form {
        padding: 1.5rem;
    }

    .pdf-form-row {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode - PDF Modal */
body.dark-mode .pdf-modal-content {
    background: #2a2a2a;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

body.dark-mode .pdf-modal-header {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

body.dark-mode .pdf-modal-header h3 {
    color: #ffffff;
}

body.dark-mode .pdf-modal-header p {
    color: #b0b0b0;
}

body.dark-mode .pdf-modal-close {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .pdf-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .pdf-modal-close i {
    color: #ffffff;
}

body.dark-mode .pdf-form-group label {
    color: #e0e0e0;
}

body.dark-mode .pdf-form-group input {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .pdf-form-group input:focus {
    border-color: #c9a86c;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

body.dark-mode .pdf-form-checkbox span {
    color: #b0b0b0;
}

body.dark-mode .pdf-form-checkbox a {
    color: #c9a86c;
}

body.dark-mode .pdf-form-note {
    background: rgba(0, 102, 204, 0.1);
    border-left-color: #4da3ff;
    color: #4da3ff;
}

/* ============================================
   INTRO BRIEF (Después del Hero)
   ============================================ */

.intro-brief {
    padding: clamp(3rem, 6vw, 4.5rem) var(--space-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

.intro-brief-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-brief-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.highlight-gold {
    color: #c9a86c;
    position: relative;
}

.intro-brief-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: #4a5568;
    max-width: 750px;
    margin: 0 auto;
}

/* Responsive Intro Brief */
@media (max-width: 768px) {
    .intro-brief {
        padding: clamp(2.5rem, 5vw, 3.5rem) var(--space-md);
    }
}

/* Dark Mode - Intro Brief */
body.dark-mode .intro-brief,
[data-theme="dark"] .intro-brief {
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%) !important;
}

body.dark-mode .intro-brief-title,
[data-theme="dark"] .intro-brief-title {
    color: #ffffff !important;
}

body.dark-mode .intro-brief-text,
[data-theme="dark"] .intro-brief-text {
    color: #b0b0b0 !important;
}

[data-theme="dark"] .intro-brief .highlight-gold,
[data-theme="dark"] .highlight-gold {
    color: #d4a574 !important;
}

/* ============================================
   CUSTOM DESIGN SECTION (Cualquier Tamaño)
   ============================================ */

.custom-design-section {
    padding: clamp(4rem, 8vw, 6rem) var(--space-xl);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.custom-design-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.custom-design-content {
    padding-right: 2rem;
}

.custom-design-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.custom-design-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.btn-custom-design {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.25rem;
    background: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom-design:hover {
    background: #1a1a1a;
    color: white;
    transform: translateX(8px);
}

.btn-custom-design i {
    transition: transform 0.3s ease;
}

.btn-custom-design:hover i {
    transform: translateX(5px);
}

.custom-design-showcase {
    position: relative;
}

.showcase-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.showcase-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 16/10;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #2196f3 0%, #42a5f5 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.showcase-size {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
}

.showcase-roof {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    transform: translateY(-3.5rem);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.showcase-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
}

.showcase-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.showcase-nav:hover {
    background: #1a1a1a;
    color: white;
    transform: scale(1.1);
}

.showcase-nav i {
    font-size: 1rem;
}

.showcase-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: #1a1a1a;
}

/* Responsive Custom Design */
@media (max-width: 1024px) {
    .custom-design-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .custom-design-content {
        padding-right: 0;
        text-align: center;
    }

    .custom-design-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .custom-design-section {
        padding: clamp(3rem, 6vw, 4rem) var(--space-md);
    }

    .showcase-card {
        padding: 1rem;
    }

    .showcase-size {
        font-size: 2.5rem;
        bottom: 1rem;
        left: 1rem;
    }

    .showcase-roof {
        font-size: 0.75rem;
        transform: translateY(-3rem);
    }

    .showcase-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.375rem 1rem;
        font-size: 0.8125rem;
    }

    .btn-custom-design {
        width: 100%;
        justify-content: center;
    }
}

/* Dark Mode - Custom Design */
body.dark-mode .custom-design-section,
[data-theme="dark"] .custom-design-section {
    background: linear-gradient(180deg, #0c0c0c 0%, #101010 100%) !important;
}

body.dark-mode .custom-design-title,
[data-theme="dark"] .custom-design-title {
    color: #ffffff !important;
}

body.dark-mode .custom-design-description,
[data-theme="dark"] .custom-design-description {
    color: #b0b0b0 !important;
}

body.dark-mode .btn-custom-design,
[data-theme="dark"] .btn-custom-design {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

body.dark-mode .btn-custom-design:hover,
[data-theme="dark"] .btn-custom-design:hover {
    background: #d4a574 !important;
    border-color: #d4a574 !important;
    color: #0a0a0a !important;
}

body.dark-mode .showcase-card,
[data-theme="dark"] .showcase-card {
    background: linear-gradient(145deg, #252525 0%, #1e1e1e 100%) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .showcase-image,
[data-theme="dark"] .showcase-image {
    background: #1a1a1a !important;
}

body.dark-mode .showcase-nav,
[data-theme="dark"] .showcase-nav {
    background: #1f1f1f;
    color: #ffffff;
}

body.dark-mode .showcase-nav:hover,
[data-theme="dark"] .showcase-nav:hover {
    background: #d4a574;
    color: #0a0a0a;
}

body.dark-mode .dot,
[data-theme="dark"] .dot {
    background: #4a4a4a;
}

body.dark-mode .dot.active,
[data-theme="dark"] .dot.active {
    background: #d4a574;
}

/* =============================================
   MODAL INLINE FORMS - FORMULARIOS INTEGRADOS
============================================= */

/* Sistema de vistas del modal */
.modal-view {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.modal-view.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Botón Volver */
.modal-form-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.modal-form-back:hover {
    background: var(--bg-subtle);
    border-color: var(--brand-blue);
    color: var(--brand-blue);
}

.modal-form-back i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.modal-form-back:hover i {
    transform: translateX(-3px);
}

/* Header del Formulario */
.modal-form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.form-header-icon.email {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 54, 96, 0.3);
}

.form-header-icon.pdf {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.modal-form-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.modal-form-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Formulario Inline */
.modal-inline-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inline-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inline-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inline-form-group label i {
    color: var(--brand-gold);
    font-size: 0.75rem;
}

.inline-form-group input,
.inline-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-surface);
    transition: all 0.3s ease;
}

.inline-form-group input:focus,
.inline-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 54, 96, 0.1);
}

.inline-form-group input::placeholder,
.inline-form-group textarea::placeholder {
    color: var(--text-muted);
}

.inline-form-group textarea {
    resize: none;
    min-height: 80px;
}

/* Row de dos campos */
.inline-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .inline-form-row {
        grid-template-columns: 1fr;
    }
}

/* Checkbox */
.inline-form-checkbox {
    margin-top: 0.5rem;
}

.inline-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.inline-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brand-blue);
    cursor: pointer;
}

.inline-form-checkbox span {
    line-height: 1.4;
}

/* Location input wrapper dentro de formularios inline */
.modal-inline-form .location-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.modal-inline-form .location-input-wrapper input {
    flex: 1;
}

.modal-inline-form .location-input-wrapper .geo-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 2px solid var(--border-subtle);
    border-radius: 10px;
    background: var(--bg-surface);
    color: var(--brand-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-inline-form .location-input-wrapper .geo-btn:hover {
    background: var(--brand-gold);
    color: white;
    border-color: var(--brand-gold);
}

.modal-inline-form .location-input-wrapper .geo-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.modal-inline-form .location-input-wrapper .geo-btn.success {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

/* Mapa inline dentro del modal */
.modal-inline-form .map-container {
    margin-top: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-subtle);
}

.modal-inline-form .inline-map {
    width: 100%;
    height: 150px;
}

.modal-inline-form .map-hint {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 0.5rem;
    margin: 0;
    text-align: center;
}

.modal-inline-form .map-hint i {
    margin-right: 0.25rem;
}

/* Dark mode para location dentro del modal */
[data-theme="dark"] .modal-inline-form .location-input-wrapper .geo-btn {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .modal-inline-form .location-input-wrapper .geo-btn:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
}

/* Botón Submit */
.modal-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 54, 96, 0.3);
}

.modal-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 54, 96, 0.4);
}

.modal-form-submit.email {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #004d80 100%);
}

.modal-form-submit.pdf {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.modal-form-submit.pdf:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.modal-form-submit i {
    font-size: 1rem;
}

/* Nota del formulario */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-note i {
    color: var(--brand-gold);
}

/* Vista de Éxito */
.modal-view-success {
    padding: 2rem 0;
}

.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d8659 0%, #27ae60 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

.success-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.success-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

/* Dark Mode para formularios */
body.dark-mode .modal-form-back {
    border-color: #444;
    color: #999;
}

body.dark-mode .modal-form-back:hover {
    background: #333;
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

body.dark-mode .modal-form-header h3 {
    color: #fff;
}

body.dark-mode .modal-form-header p {
    color: #999;
}

body.dark-mode .inline-form-group label {
    color: #999;
}

body.dark-mode .inline-form-group input,
body.dark-mode .inline-form-group textarea {
    background: #1a1a1a;
    border-color: #444;
    color: #fff;
}

body.dark-mode .inline-form-group input:focus,
body.dark-mode .inline-form-group textarea:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

body.dark-mode .inline-form-group input::placeholder,
body.dark-mode .inline-form-group textarea::placeholder {
    color: #666;
}

body.dark-mode .inline-form-checkbox label {
    color: #999;
}

body.dark-mode .success-content h3 {
    color: #fff;
}

body.dark-mode .success-content p {
    color: #999;
}

body.dark-mode .form-note {
    color: #666;
}

/* =============================================
   RESPONSIVE GLOBAL - MOBILE FIRST FIXES
============================================= */

/* Prevent horizontal overflow globally */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Mobile Small (< 480px) */
@media (max-width: 480px) {
    /* Header Mobile */
    .header-inner {
        padding: 0 0.75rem;
    }

    .logo-img {
        height: 28px;
    }

    .btn-header-filled,
    .btn-header-outline {
        display: none;
    }

    .header-actions {
        gap: 0.5rem;
    }

    /* Hero Mobile */
    .hero {
        padding: var(--space-sm);
    }

    .hero-container {
        border-radius: 16px;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.875rem;
    }

    .hero-scroll {
        display: none;
    }

    /* Hero Preview Mobile */
    .hero-preview-wrapper {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto 0;
        padding: 0 var(--space-sm);
    }

    .hero-preview {
        width: 100%;
        max-width: 280px;
    }

    /* Intro Brief Mobile */
    .intro-brief {
        padding: var(--space-lg) var(--space-sm);
    }

    .intro-brief-title {
        font-size: 1.5rem;
    }

    .intro-brief-text {
        font-size: 0.95rem;
    }

    /* Models Main Section Mobile */
    .models-main-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .models-title {
        font-size: 1.5rem;
    }

    .model-card-priority {
        border-radius: 16px;
    }

    .model-size-overlay {
        top: 0.75rem;
        left: 0.75rem;
    }

    .size-number {
        font-size: 1.75rem;
    }

    .model-price-simple {
        font-size: 1.1rem;
    }

    /* Catalog Section Mobile */
    .catalog-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .catalog-title {
        font-size: 1.75rem;
    }

    .catalog-desc {
        font-size: 0.95rem;
    }

    .catalog-tab {
        padding: 0.875rem 1rem;
    }

    .catalog-tab .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .catalog-tab .tab-name {
        font-size: 0.9rem;
    }

    .catalog-tab .tab-desc {
        font-size: 0.7rem;
    }

    .line-intro {
        padding: 1.25rem;
        gap: 1rem;
    }

    .line-intro-text h3 {
        font-size: 1.25rem;
    }

    .line-intro-text p {
        font-size: 0.85rem;
    }

    .line-intro-stats {
        gap: 1rem;
    }

    .line-intro-stats .stat-item {
        padding: 0.75rem 1rem;
    }

    .line-intro-stats .stat-value {
        font-size: 1.5rem;
    }

    .catalog-card-body {
        padding: 1rem 1.25rem 1.25rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-subtitle {
        font-size: 0.85rem;
    }

    .catalog-footer-content {
        padding: 1.5rem 1rem;
    }

    .catalog-footer-content > i {
        font-size: 2rem;
    }

    .catalog-footer .footer-text h4 {
        font-size: 1.1rem;
    }

    .catalog-footer .footer-text p {
        font-size: 0.85rem;
    }

    .btn-catalog-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }

    /* Custom Design Section Mobile */
    .custom-design-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .custom-design-title {
        font-size: 1.75rem;
    }

    .custom-design-description {
        font-size: 0.9rem;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: var(--space-lg) var(--space-sm);
    }

    .review-card {
        padding: 1.25rem;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* About Mobile */
    .about {
        padding: var(--space-lg) var(--space-sm);
    }

    .about-heading {
        font-size: 1.5rem;
    }

    /* Process Mobile */
    .process {
        padding: var(--space-lg) var(--space-sm);
    }

    .process-intro h3 {
        font-size: 1.5rem;
    }

    .step-num {
        font-size: 2rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    /* Contact Mobile */
    .contact {
        padding: var(--space-lg) var(--space-sm);
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: var(--space-md);
    }

    /* Footer Mobile */
    .footer-modern {
        padding: var(--space-lg) var(--space-sm);
    }

    .footer-logo {
        height: 32px;
    }

    .footer-modern-grid {
        gap: var(--space-lg);
    }

    /* Modal Mobile */
    .model-modal-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-details {
        padding: 1.25rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .modal-spec {
        padding: 0.75rem;
    }

    .spec-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-cta {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-wrapper {
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-label {
        display: none;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 0.5rem var(--space-sm);
        font-size: 0.7rem;
    }

    .top-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .top-bar-divider {
        display: none;
    }
}

/* Mobile Medium (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-hero,
    .btn-hero-secondary {
        flex: 0 0 auto;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        max-height: 60vh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .models-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-card-priority:nth-child(3) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Fix overflow issues */
section,
.container,
.wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer-modern {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .whatsapp-wrapper {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
    }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
    .catalog-card-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(0, 54, 96, 0.7) 100%);
    }

    .card-cta {
        transform: translateY(0);
    }

    .model-card:hover,
    .catalog-card:hover {
        transform: none;
    }

    .btn-hero:hover,
    .btn-catalog-cta:hover {
        transform: none;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-preview {
        animation: none;
    }
}

/* Print styles */
@media print {
    .header,
    .top-bar,
    .whatsapp-wrapper,
    .hero-video-wrapper,
    .loader,
    .cursor,
    .cursor-follower {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem;
    }

    section {
        page-break-inside: avoid;
    }
}


/* =============================================
   CATÁLOGO MODO OSCURO - DISEÑO CON CONTRASTE
============================================= */

/* Tabs con mejor diferenciación */
[data-theme="dark"] .catalog-tabs {
    background: rgba(25, 25, 25, 0.9) !important;
    border: 1px solid rgba(201, 168, 108, 0.15) !important;
    border-radius: 16px !important;
    padding: 8px !important;
}

[data-theme="dark"] .catalog-tab {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease !important;
}

[data-theme="dark"] .catalog-tab:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .catalog-tab.active {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.2) 0%, rgba(201, 168, 108, 0.1) 100%) !important;
    border: 1px solid var(--brand-gold) !important;
    color: var(--brand-gold) !important;
    box-shadow: 0 0 20px rgba(201, 168, 108, 0.15) !important;
}

[data-theme="dark"] .catalog-tab .tab-icon {
    background: rgba(201, 168, 108, 0.15) !important;
    color: var(--brand-gold) !important;
    border: 1px solid rgba(201, 168, 108, 0.3) !important;
}

[data-theme="dark"] .catalog-tab.active .tab-icon {
    background: rgba(201, 168, 108, 0.25) !important;
    color: var(--brand-gold) !important;
    box-shadow: 0 0 15px rgba(201, 168, 108, 0.3) !important;
}

[data-theme="dark"] .catalog-tab .tab-name {
    color: inherit !important;
}

[data-theme="dark"] .catalog-tab .tab-desc {
    color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="dark"] .catalog-tab.active .tab-desc {
    color: rgba(201, 168, 108, 0.8) !important;
}

/* Line Intro (Línea Clásica box) - MÁS CONTRASTE */
[data-theme="dark"] .line-intro {
    background: linear-gradient(145deg, #1e1e1e 0%, #161616 100%) !important;
    border: 1px solid rgba(201, 168, 108, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

[data-theme="dark"] .line-intro-clasica {
    border-left: 4px solid var(--brand-gold) !important;
}

[data-theme="dark"] .line-intro-icon {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.25) 0%, rgba(201, 168, 108, 0.15) 100%) !important;
    color: var(--brand-gold) !important;
    border: 1px solid rgba(201, 168, 108, 0.4) !important;
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.2) !important;
}

[data-theme="dark"] .line-intro-text h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .line-intro-text p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Stats boxes (36-72 m², 5 MODELOS) - MÁS VISIBLES */
[data-theme="dark"] .line-intro-stats .stat-item {
    background: linear-gradient(145deg, #252525 0%, #1a1a1a 100%) !important;
    border: 1px solid rgba(201, 168, 108, 0.3) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .line-intro-stats .stat-value {
    color: var(--brand-gold) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 20px rgba(201, 168, 108, 0.3) !important;
}

[data-theme="dark"] .line-intro-stats .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Subsection title (Techo Dos Aguas) */
[data-theme="dark"] .subsection-title {
    color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2) !important;
    padding-bottom: 0.75rem !important;
}

[data-theme="dark"] .subsection-title i {
    color: var(--brand-gold) !important;
}

/* Cards de modelos - CON BORDE DORADO Y CONTRASTE */
[data-theme="dark"] .catalog-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%) !important;
    border: 1px solid rgba(201, 168, 108, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

[data-theme="dark"] .catalog-card:hover {
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 40px rgba(201, 168, 108, 0.2), 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    transform: translateY(-10px) !important;
}

[data-theme="dark"] .catalog-card-image {
    border-bottom: 1px solid rgba(201, 168, 108, 0.15) !important;
}

[data-theme="dark"] .catalog-card-body {
    background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 108, 0.02) 100%) !important;
    padding: 1.25rem 1.5rem 1.5rem !important;
}

/* Etiquetas TECHO 2 AGUAS - MÁS VISIBLES */
[data-theme="dark"] .spec-badge {
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(201, 168, 108, 0.4) !important;
    padding: 0.4rem 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

[data-theme="dark"] .spec-badge.clasica {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.2) 0%, rgba(201, 168, 108, 0.1) 100%) !important;
    color: var(--brand-gold) !important;
    border-color: rgba(201, 168, 108, 0.5) !important;
}

/* Títulos y subtítulos de cards */
[data-theme="dark"] .catalog-card .card-title {
    color: #ffffff !important;
    font-weight: 700 !important;
}

[data-theme="dark"] .catalog-card .card-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Features (1 Dorm, 1 Baño) - ICONOS DORADOS */
[data-theme="dark"] .card-features {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
}

[data-theme="dark"] .card-features span {
    color: rgba(255, 255, 255, 0.85) !important;
}

[data-theme="dark"] .card-features i {
    color: var(--brand-gold) !important;
}

/* Overlay hover en imágenes */
[data-theme="dark"] .catalog-card-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(201, 168, 108, 0.9) 100%) !important;
}

[data-theme="dark"] .card-cta {
    color: #0a0a0a !important;
    font-weight: 700 !important;
}

/* Tab new indicator */
[data-theme="dark"] .tab-new-indicator {
    background: var(--brand-gold) !important;
    color: #0a0a0a !important;
}


/* =============================================
   FOOTER LEGIBILITY IMPROVEMENTS
============================================= */

/* Titulos de columnas del footer */
.footer-links-column h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 1.5rem !important;
}

/* Links de navegacion del footer */
.footer-links-column ul {
    gap: 0.9rem !important;
}

.footer-links-column ul li a,
.footer-links-column ul li span {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Lista de contacto */
.footer-contact-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.85rem !important;
}

.footer-contact-list li i {
    width: 24px !important;
    font-size: 1.15rem !important;
}

.footer-contact-list li a {
    font-size: 1.05rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Sucursales - Mejoras de legibilidad */
.footer-sucursales {
    gap: 1.1rem !important;
}

.footer-sucursales li {
    gap: 0.9rem !important;
    align-items: center !important;
}

.footer-sucursales li i {
    margin-top: 0 !important;
    font-size: 1.15rem !important;
    min-width: 20px !important;
}

.footer-sucursales li div {
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
}

.footer-sucursales li strong {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
}

.footer-sucursales li strong::after {
    content: " -";
    font-weight: 400;
}

.footer-sucursales li span {
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.9rem !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
}

.footer-sucursales li a {
    gap: 0.9rem !important;
    padding: 0.7rem 0.85rem !important;
    margin: -0.7rem -0.85rem !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    align-items: center !important;
}

.footer-sucursales li a:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

.footer-sucursales li a:hover i {
    transform: scale(1.15) !important;
}

/* =============================================
   NAVBAR HIDE/SHOW ON SCROLL + LOGO LOGIC
============================================= */

/* Logo visibility logic */
/* Por defecto: ocultar todos los logos */
.logo-img {
    display: none !important;
    transition: opacity 0.3s ease !important;
}

/* MODO CLARO - Header transparente (arriba): logo de color */
.logo-img.logo-color {
    display: block !important;
}

/* MODO CLARO - Header con fondo (scrolled): logo negro */
.header.scrolled .logo-img.logo-color {
    display: none !important;
}
.header.scrolled .logo-img.logo-dark-bg {
    display: block !important;
}

/* MODO OSCURO - Siempre logo blanco (incluso con scroll) */
[data-theme="dark"] .logo-img.logo-color,
[data-theme="dark"] .logo-img.logo-dark-bg,
[data-theme="dark"] .header.scrolled .logo-img.logo-color,
[data-theme="dark"] .header.scrolled .logo-img.logo-dark-bg {
    display: none !important;
}
[data-theme="dark"] .logo-img.logo-light-bg,
[data-theme="dark"] .header.scrolled .logo-img.logo-light-bg {
    display: block !important;
}

/* Footer logos */
.footer-logo-light,
.footer-logo-dark {
    max-width: 220px;
    height: auto;
    margin-bottom: 1rem;
    background: transparent !important;
    background-color: transparent !important;
}

.footer-logo,
.footer-brand img {
    background: transparent !important;
    background-color: transparent !important;
}

/* Modo claro: logo blanco en footer (fondo oscuro) */
.footer-logo-light {
    display: block !important;
}
.footer-logo-dark {
    display: none !important;
}

/* Modo oscuro: logo blanco en footer */
[data-theme="dark"] .footer-logo-light {
    display: block !important;
}
[data-theme="dark"] .footer-logo-dark {
    display: none !important;
}

/* =============================================
   QUOTE MODAL - FIXES FINALES
============================================= */
#quoteModal .quote-modal-content {
    max-height: 90vh !important;
    overflow-y: auto !important;
    /* Ocultar scrollbar en escritorio */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

#quoteModal .quote-modal-content::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

#quoteModal .quote-form {
    width: 100% !important;
    display: block !important;
}

#quoteModal .quote-form-row {
    width: 100% !important;
    display: block !important;
}

#quoteModal .quote-form-row.two-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

#quoteModal .quote-form-group {
    width: 100% !important;
    display: block !important;
}

#quoteModal .quote-form-group input,
#quoteModal .quote-form-group select,
#quoteModal .quote-form-group textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* Location input wrapper */
#quoteModal .location-input-wrapper {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
}

#quoteModal .location-input-wrapper input {
    flex: 1 !important;
    min-width: 0 !important;
    width: auto !important;
}

#quoteModal .location-input-wrapper .btn-geolocation {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
}

#quoteModal .quote-submit-btn {
    width: 100% !important;
}

@media (max-width: 768px) {
    #quoteModal .quote-modal-content {
        max-height: 85vh !important;
        overflow-y: auto !important;
        padding: 24px 20px 30px !important;
    }

    #quoteModal .quote-modal-header {
        margin-bottom: 16px !important;
    }

    #quoteModal .quote-modal-header h3 {
        font-size: 1.25rem !important;
    }

    #quoteModal .quote-form-row {
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    #quoteModal .quote-form-row.two-cols {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    #quoteModal .quote-form-group {
        width: 100% !important;
    }

    #quoteModal .quote-form-group label {
        font-size: 0.7rem !important;
        margin-bottom: 4px !important;
    }

    #quoteModal .quote-form-group input,
    #quoteModal .quote-form-group select,
    #quoteModal .quote-form-group textarea {
        padding: 12px !important;
        font-size: 15px !important;
        min-height: 44px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    #quoteModal .quote-form-group textarea {
        min-height: 60px !important;
    }

    #quoteModal .quote-submit-btn {
        padding: 14px 20px !important;
        margin-top: 12px !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    #quoteModal .quote-modal-content {
        max-height: 80vh !important;
        padding: 20px 16px 28px !important;
    }

    #quoteModal .quote-form-row.two-cols {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* =============================================
   BOTONES DE COTIZACIÓN - CORREO Y WHATSAPP
============================================= */
.quote-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.quote-buttons .btn-quote-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-buttons .btn-quote-email {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

.quote-buttons .btn-quote-email:hover {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quote-buttons .btn-quote-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.quote-buttons .btn-quote-whatsapp:hover {
    background: linear-gradient(135deg, #2be076 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.quote-buttons .btn-quote-submit i {
    font-size: 1.1rem;
}

.quote-buttons-hint {
    text-align: center;
    margin-top: 12px;
    color: #888;
    font-size: 0.8rem;
}

.quote-buttons-hint small {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.quote-buttons-hint i {
    margin-right: 4px;
}

@media (max-width: 480px) {
    .quote-buttons {
        flex-direction: column;
    }

    .quote-buttons-hint small {
        flex-direction: column;
        gap: 4px;
    }
}

/* =============================================
   Notificaciones Toast
   ============================================= */
.notification {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body);
    font-weight: 500;
    max-width: 400px;
}

.notification.warning {
    background: #f59e0b !important;
    color: #000 !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .notification {
        right: 20px !important;
        left: 20px !important;
        max-width: none;
    }
}

/* =============================================
   Scroll Offset para Navbar Fijo
   ============================================= */
section[id] {
    scroll-margin-top: 100px;
}

#modelos-principales,
#nosotros,
#proceso,
#cotizacion,
#proyectos {
    scroll-margin-top: 120px;
}
