/* =====================================================
   PREMIUM LAND — RODRIGO BAEZA
   Dark Luxury Real Estate Landing Page
   Color System: Navy Blue (#1B3B6F) + Gold (#D4AF37)
   ===================================================== */

/* ---- CSS VARIABLES ---- */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Backgrounds */
    --bg-primary: #000000;
    --bg-secondary: #050810;
    --bg-tertiary: #0d1220;
    --bg-card: #0f1629;

    /* Navy Blue Palette */
    --primary-50: #e8edf5;
    --primary-100: #c5d1e6;
    --primary-200: #9eb2d4;
    --primary-300: #7090bf;
    --primary-400: #3a6aad;
    --primary-500: #1B3B6F;
    --primary-600: #163260;
    --primary-700: #112850;
    --primary-800: #0c1e3e;
    --primary-900: #060f1f;

    /* Gold Palette */
    --gold-50: #fdf9ec;
    --gold-100: #f9edbe;
    --gold-200: #f4de8c;
    --gold-300: #edca55;
    --gold-400: #e6bc2a;
    --gold-500: #D4AF37;
    --gold-600: #b8962c;
    --gold-700: #9b7c22;
    --gold-800: #7d6218;
    --gold-900: #5e480f;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    /* Semantic Colors */
    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;

    /* RGB Values for rgba() usage */
    --primary-rgb: 27, 59, 111;
    --gold-rgb: 212, 175, 55;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ---- CONTAINER ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* =====================================================
   PARTICLES
   ===================================================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(var(--gold-rgb), 0.6);
    animation: float-particle 20s infinite ease-in-out;
    will-change: transform, opacity;
}

.particle:nth-child(3n) {
    background: rgba(var(--primary-rgb), 0.5);
    width: 2px;
    height: 2px;
}

.particle:nth-child(5n) {
    background: rgba(var(--gold-rgb), 0.3);
    width: 4px;
    height: 4px;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: translate(80px, -120px);
        opacity: 0.7;
    }

    50% {
        transform: translate(-60px, -200px);
        opacity: 0.5;
    }

    75% {
        transform: translate(-100px, -80px);
        opacity: 0.8;
    }
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    height: 70px;
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.12);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    height: 60px;
}

.nav-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    width: 420px;
    /* Space for the massive logo */
    height: 60px;
    z-index: 1001;
}

.logo-img {
    height: 140px !important;
    width: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    position: absolute !important;
    top: -20px !important;
    left: 0 !important;
    z-index: 2000 !important;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6)) !important;
    transition: all var(--transition-base) !important;
}

.navbar.scrolled .logo-img {
    height: 100px !important;
    top: -10px !important;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 16px rgba(var(--gold-rgb), 0.5)) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta-link {
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500), var(--gold-400));
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #000 !important;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.nav-cta-link::after {
    display: none;
}

.nav-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    display: block;
    padding: 8px 24px;
}

.mobile-nav-link:hover {
    color: var(--gold-500);
}

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

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(var(--gold-rgb), 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 30%, rgba(var(--primary-rgb), 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(var(--primary-rgb), 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.12), rgba(var(--gold-rgb), 0.06));
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    width: fit-content;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.4);
    }
}

/* Hero Title */
.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 50%, var(--gold-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--gold-400);
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 40%, var(--gold-400) 70%, var(--gold-500) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    box-shadow:
        0 0 0 1px rgba(var(--gold-rgb), 0.4),
        0 4px 24px rgba(var(--gold-rgb), 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 0 2px rgba(var(--gold-rgb), 0.7),
        0 8px 40px rgba(var(--gold-rgb), 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary svg {
    flex-shrink: 0;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--gold-rgb), 0.3);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.btn-xl {
    font-size: 17px;
    padding: 20px 40px;
    border-radius: var(--radius-lg);
}

.pulse-glow {
    animation: pulse-glow-anim 3s ease-in-out infinite, gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-glow-anim {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(var(--gold-rgb), 0.5),
            0 4px 24px rgba(var(--gold-rgb), 0.4),
            0 0 60px rgba(var(--gold-rgb), 0.2);
    }

    50% {
        box-shadow:
            0 0 0 3px rgba(var(--gold-rgb), 0.8),
            0 8px 40px rgba(var(--gold-rgb), 0.6),
            0 0 80px rgba(var(--gold-rgb), 0.4);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-500);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-400);
}

.stat-label {
    font-size: 12px;
    color: var(--text-quaternary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
}

/* Neon backdrop behind the image */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -60px -70px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(0, 220, 255, 0.75) 0%,
            rgba(0, 180, 255, 0.45) 30%,
            rgba(80, 0, 255, 0.20) 58%,
            transparent 72%);
    filter: blur(18px);
    pointer-events: none;
    animation: neonBackdropPulse 4s ease-in-out infinite;
    z-index: 0;
}

/* Bottom neon floor reflection */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: -5%;
    right: -5%;
    height: 90px;
    background: radial-gradient(ellipse at center,
            rgba(0, 220, 255, 0.80) 0%,
            rgba(0, 160, 255, 0.45) 45%,
            transparent 75%);
    filter: blur(14px);
    pointer-events: none;
    animation: neonFloorPulse 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes neonBackdropPulse {

    0%,
    100% {
        opacity: 0.80;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.10);
    }
}

@keyframes neonFloorPulse {

    0%,
    100% {
        opacity: 0.75;
        transform: scaleX(0.92);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.08);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.45;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}

.hero-glow-ring {
    position: absolute;
    inset: -70px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
            rgba(0, 220, 255, 0.40) 0%,
            rgba(0, 160, 255, 0.20) 35%,
            rgba(var(--gold-rgb), 0.10) 55%,
            transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
}

.hero-image.impact-img {
    box-shadow:
        0 0 0 2px rgba(0, 220, 255, 0.55),
        0 40px 100px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(0, 220, 255, 0.50),
        0 0 100px rgba(0, 180, 255, 0.30),
        0 0 140px rgba(var(--gold-rgb), 0.12);
    filter: brightness(1.05) contrast(1.05);
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow:
        0 0 0 1px rgba(0, 200, 255, 0.20),
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 180, 255, 0.12),
        0 0 80px rgba(var(--gold-rgb), 0.08);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-14px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-8px) rotate(-0.5deg);
    }

    75% {
        transform: translateY(-20px) rotate(0.3deg);
    }
}

/* Floating Badges */
.hero-badge-floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 100px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: float-badge 4s ease-in-out infinite;
    z-index: 2;
}

.hero-badge-floating svg {
    color: var(--gold-500);
}

.top-badge {
    top: 12%;
    right: -5%;
    animation-delay: 0s;
}

.bottom-badge {
    bottom: 12%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    Animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(var(--gold-rgb), 0.5);
    border-bottom: 2px solid rgba(var(--gold-rgb), 0.5);
    transform: rotate(45deg);
    animation: bounce-scroll 2s ease-in-out infinite;
}

@keyframes bounce-scroll {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: rotate(45deg) translateY(6px);
        opacity: 1;
    }
}

/* Hero Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-rotate {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.25s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.65s;
}

.animate-in {
    animation: fade-in-up var(--transition-slow) forwards;
}

.animate-in-right {
    animation: fade-in-right var(--transition-slow) forwards;
}

/* Error Animations */
@keyframes errorPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); border-color: rgba(239, 68, 68, 0.5); }
    100% { transform: scale(1); }
}

.error-pulse {
    animation: errorPulse 0.4s ease-in-out;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.05);
}

/* Privacy Group Fixes */
.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.3s ease;
}

.privacy-group .field-error {
    margin-left: 36px;
    margin-top: 4px;
}

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

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

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(var(--primary-rgb), 0.04);
    position: relative;
    z-index: 1;
}

.trust-label {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all var(--transition-base);
    cursor: default;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.trust-logo-item:hover {
    opacity: 1;
    filter: none;
    color: var(--gold-500);
}

.trust-logo-item svg {
    color: currentColor;
}

/* =====================================================
   SECTION SHARED STYLES
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.05));
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-tertiary);
    max-width: 560px;
    line-height: 1.7;
}

/* Reveal Animations */
.reveal-element,
.reveal-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed,
.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   GLASS CARD
   ===================================================== */
.glass-card {
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.08) 0%,
            rgba(var(--primary-rgb), 0.04) 50%,
            rgba(var(--primary-rgb), 0.08) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--gold-rgb), 0.12);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(var(--gold-rgb), 0.25);
    box-shadow:
        0 25px 50px -12px rgba(var(--primary-rgb), 0.3),
        0 0 0 1px rgba(var(--gold-rgb), 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

/* =====================================================
   SERVICES SECTION — FLIP CARDS
   ===================================================== */
.services-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

/* Flip Card Container */
.service-card-flip {
    perspective: 1200px;
    height: 380px;
    cursor: pointer;
    position: relative;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
}

@media (hover: hover) {
    /* Expande el área invisible sólo en computadoras para evitar solapamiento en celulares */
    .service-card-flip::after {
        content: '';
        position: absolute;
        inset: -40px;
        z-index: -1;
    }

    .service-card-flip:hover .service-card-inner {
        transform: rotateY(180deg);
    }
}

.service-card-flip.flipped .service-card-inner {
    transform: rotateY(180deg);
}

/* Front Face */
.service-card-front {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(var(--gold-rgb), 0.12);
    transform: translateZ(1px);
    -webkit-transform: translateZ(1px);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-flip:hover .service-image {
    transform: scale(1.05);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-bg-4 {
    background: linear-gradient(135deg, #1a0a2e 0%, var(--bg-tertiary) 40%, rgba(var(--gold-rgb), 0.08) 100%);
}

.service-bg-5 {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, #0a1a0a 40%, rgba(27, 111, 59, 0.15) 100%);
}

.service-bg-6 {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, #0a0a2e 40%, rgba(var(--primary-rgb), 0.2) 100%);
}

.placeholder-icon {
    font-size: 80px;
    opacity: 0.4;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    gap: 12px;
    min-height: 40%;
}

.service-icon-sm {
    font-size: 22px;
    flex-shrink: 0;
}

.service-title-front {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

/* Back Face */
.service-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg) translateZ(1px);
    -webkit-transform: rotateY(180deg) translateZ(1px);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    border: 1px solid rgba(var(--gold-rgb), 0.2) !important;
    background: linear-gradient(135deg,
            rgba(var(--primary-rgb), 0.15),
            rgba(0, 0, 0, 0.95)) !important;
}

.service-back-icon {
    font-size: 40px;
    display: block;
}

.service-title-back {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-400);
    background: rgba(var(--gold-rgb), 0.1);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 100px;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   SHOWCASE SECTION
   ===================================================== */
.showcase-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.showcase-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(var(--gold-rgb), 0.15);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    display: inline-block;
    max-width: 100%;
}

.showcase-main-img {
    height: auto;
    max-height: 900px;
    width: 100%;
    max-width: 100%;
    display: block;
}

.showcase-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--gold-rgb), 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
}

/* Video Overlay & Modal Styles */
.showcase-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.showcase-image-wrapper:hover .showcase-play-overlay {
    opacity: 1;
}

.btn-play-video {
    background: var(--gold-500);
    color: #000;
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-video:hover {
    transform: scale(1.05);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    display: flex;
    justify-content: center;
}

#modalVideoPlayer {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    background: #000;
}

.video-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(var(--primary-rgb), 0.8);
    transform: scale(1.1);
}

.showcase-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
}

.stat-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.stat-big {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--gold-500);
    line-height: 1;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-quaternary);
    font-weight: 500;
    margin-top: 4px;
}

.showcase-amenities {
    padding: 24px;
    border-radius: var(--radius-md);
}

.showcase-amenities h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.amenity-check {
    color: var(--gold-500);
    font-weight: 700;
    font-size: 15px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    border-radius: var(--radius-lg);
}

.stars {
    color: var(--gold-500);
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.1);
    padding-top: 20px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    border: 2px solid rgba(var(--gold-rgb), 0.3);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* ---- Press Articles ---- */
.press-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.press-article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    border-radius: var(--radius-lg);
    background: rgba(var(--bg-card), 0.5);
}

.press-article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--gold-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(var(--bg-card), 0.8);
}

.press-image-wrapper {
    position: relative;
    aspect-ratio: 85/100;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
}

.press-article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-universal {
    object-fit: contain;
    background-color: #fcfcfc;
}

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

.press-article-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-article-overlay span {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.press-article-overlay svg {
    color: var(--gold-400);
}

.press-article-card:hover .press-article-overlay {
    opacity: 1;
}

.press-article-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.press-logo {
    width: auto;
    max-width: 140px;
    display: block;
    margin-bottom: 4px;
    opacity: 0.8;
}

.press-article-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}


/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-video-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 0 !important;
}

.about-video-wrapper iframe {
    display: block;
    border-radius: calc(var(--radius-md) - 1px);
}

.about-logo-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-glow-ring {
    position: absolute;
    inset: -35px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(var(--gold-rgb), 0.15) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.about-logo-img {
    height: 400px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(var(--gold-rgb), 0.25));
}

.about-cert-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    width: 100%;
}

.cert-icon {
    font-size: 28px;
}

.about-cert-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-400);
    margin-bottom: 2px;
}

.about-cert-badge span {
    font-size: 11px;
    color: var(--text-quaternary);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 8px 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(var(--gold-rgb), 0.04);
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.value-item:hover {
    background: rgba(var(--gold-rgb), 0.08);
    border-color: rgba(var(--gold-rgb), 0.2);
    transform: translateX(4px);
}

.value-icon {
    font-size: 24px;
}

.value-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(var(--gold-rgb), 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    padding: 6px 18px;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cta-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-tertiary);
    max-width: 560px;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
    margin: 8px 0;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 28px 20px;
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 4px;
}

.contact-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 13px;
    color: var(--text-quaternary);
    line-height: 1.5;
}

.contact-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-400);
    transition: color var(--transition-fast);
    margin-top: 4px;
}

.contact-link:hover {
    color: var(--gold-300);
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #20c55a;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-urgency {
    font-size: 13px;
    color: var(--text-quaternary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.08);
    position: relative;
    z-index: 1;
    background: rgba(var(--primary-rgb), 0.04);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(var(--gold-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-quaternary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-quaternary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(var(--gold-rgb), 0.1);
    border-color: rgba(var(--gold-rgb), 0.3);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.footer-links-col h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col ul li a,
.footer-links-col ul li span {
    font-size: 14px;
    color: var(--text-quaternary);
    transition: color var(--transition-fast);
}

.footer-links-col ul li a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-quaternary);
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-quaternary);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold-400);
}

/* =====================================================
   FLOATING WHATSAPP FAB
   ===================================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: fab-bounce 3s ease-in-out 2s infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
    background: #20c55a;
}

@keyframes fab-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}

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

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

    .about-visual {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

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

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        max-width: 420px;
    }

    .top-badge {
        top: 5%;
        right: 0;
    }

    .bottom-badge {
        bottom: 5%;
        left: 0;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    .press-articles-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        gap: 24px;
    }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .nav-links {
        display: none;
    }

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

    .nav-logo {
        width: 180px; /* Reduced to fit mobile screens */
        height: 50px;
    }

    .logo-img {
        height: 80px !important;
        position: absolute !important;
        top: -15px !important;
        left: 0 !important;
    }

    .hero-container {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-badge-floating {
        display: none;
    }

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

    .service-card-flip {
        height: 480px;
        z-index: 1;
    }

    .service-card-flip.flipped {
        z-index: 10;
    }
    
    .services-grid {
        gap: 32px;
    }

    /* On mobile, flip on click */
    .service-card-flip:hover .service-card-inner {
        transform: none;
    }

    .service-card-flip.flipped .service-card-inner {
        transform: rotateY(180deg);
    }

    .showcase-main-img {
        height: auto;
        max-height: 75vh;
    }

    .about-logo-wrapper {
        width: 380px;
        height: 380px;
    }

    .about-logo-img {
        width: 320px;
        height: 320px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .trust-logos {
        gap: 24px;
    }

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

    .footer-logo {
        height: 70px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cta-title {
        font-size: 32px;
    }

    .btn-xl {
        font-size: 15px;
        padding: 18px 28px;
    }

    .particle:nth-child(n+20) {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 85px !important;
        width: auto !important;
        position: absolute !important;
        top: -5px !important;
        left: 0 !important;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stat-divider {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .showcase-stat-card {
        flex-direction: column;
        text-align: center;
    }
}

/* =====================================================
   PHOTO GALLERY STRIP — Fotos Reales Ciudad Maderas
   ===================================================== */
.photo-gallery-strip {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.gallery-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    text-align: center;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(var(--gold-rgb), 0.1);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    border-color: rgba(var(--gold-rgb), 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(var(--gold-rgb), 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transform: translateY(4px);
    opacity: 0.85;
    transition: all var(--transition-fast);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold-300);
}

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

@media (max-width: 480px) {
    .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-caption {
        font-size: 11px;
    }
}

/* =====================================================
   FORMULARIO DE CAPTACIÓN
   ===================================================== */
.form-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(var(--gold-rgb), 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
}

/* ---- Left Copy ---- */
.form-copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-title {
    text-align: left !important;
}

.form-subtitle {
    font-size: 16px;
    color: var(--text-tertiary);
    line-height: 1.75;
}

.form-subtitle strong {
    color: var(--gold-400);
    font-weight: 600;
}

.form-trust-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-point-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--gold-rgb), 0.08);
    border: 1px solid rgba(var(--gold-rgb), 0.15);
    border-radius: 10px;
}

/* ---- Form Card ---- */
.form-card {
    padding: 40px !important;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-700), var(--gold-500), var(--gold-400), var(--gold-500));
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
}

.form-card-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.15), rgba(var(--gold-rgb), 0.05));
    border: 1px solid rgba(var(--gold-rgb), 0.2);
    border-radius: 16px;
    flex-shrink: 0;
}

.form-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.form-card-sub {
    font-size: 13px;
    color: var(--text-quaternary);
    margin-top: 3px;
}

/* ---- Form Elements ---- */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.01em;
}

.form-label svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-400);
    pointer-events: none;
    z-index: 1;
    border-right: 1px solid rgba(var(--gold-rgb), 0.2);
    padding-right: 10px;
    height: 20px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    outline: none;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form-input.has-prefix {
    padding-left: 62px;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    border-color: rgba(var(--gold-rgb), 0.5);
    background: rgba(var(--gold-rgb), 0.04);
    box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.1);
}

.form-input:focus+.input-focus-ring {
    opacity: 1;
}

.form-input.is-valid {
    border-color: rgba(34, 197, 94, 0.5);
}

.form-input.is-invalid {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.04);
}

/* Select */
.select-wrapper {
    position: relative;
}

.form-select {
    cursor: pointer;
    padding-right: 42px;
    color: var(--text-primary);
}

.form-select option {
    background: #0d1220;
    color: var(--text-primary);
    padding: 8px;
}

.select-chevron {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: var(--gold-400);
    transition: transform var(--transition-fast);
}

.select-wrapper:focus-within .select-chevron {
    transform: rotate(180deg);
}

/* Field Error */
.field-error {
    font-size: 12px;
    color: #f87171;
    display: none;
    align-items: center;
    gap: 5px;
    animation: shake 0.3s ease;
}

.field-error.show {
    display: flex;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* ---- Tiempo Options (Pill Selectors) ---- */
.tiempo-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 4px;
}

.tiempo-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.tiempo-btn:hover {
    background: rgba(var(--gold-rgb), 0.06);
    border-color: rgba(var(--gold-rgb), 0.25);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.tiempo-btn.selected {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.15), rgba(var(--gold-rgb), 0.08));
    border-color: rgba(var(--gold-rgb), 0.5);
    color: var(--gold-400);
    box-shadow: 0 0 0 1px rgba(var(--gold-rgb), 0.2), 0 4px 16px rgba(var(--gold-rgb), 0.15);
}

.tiempo-btn.selected .tiempo-emoji {
    transform: scale(1.2);
}

.tiempo-emoji {
    font-size: 20px;
    transition: transform var(--transition-fast);
    display: block;
}

/* ---- Submit Button ---- */
.btn-form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 40%, var(--gold-400) 70%, var(--gold-500) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    margin-top: 8px;
    box-shadow:
        0 0 0 1px rgba(var(--gold-rgb), 0.4),
        0 4px 24px rgba(var(--gold-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-form-submit:hover::before {
    left: 100%;
}

.btn-form-submit:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 0 0 2px rgba(var(--gold-rgb), 0.7),
        0 8px 40px rgba(var(--gold-rgb), 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-form-submit:active {
    transform: translateY(0) scale(0.98);
}

.btn-submit-icon {
    flex-shrink: 0;
}

/* Loader */
.loader-ring {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---- Microcopy ---- */
.form-micro-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-quaternary);
    text-align: center;
    margin-top: 4px;
    line-height: 1.5;
}

.form-micro-copy svg {
    color: var(--gold-600);
    flex-shrink: 0;
}

/* ---- Privacy Checkbox ---- */
.privacy-group {
    margin-top: 4px;
    margin-bottom: 0;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.privacy-checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Ocultar el checkbox nativo */
.privacy-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

/* Checkbox visual personalizado */
.privacy-custom-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1.5px solid rgba(var(--gold-rgb), 0.35);
    background: rgba(var(--primary-rgb), 0.15);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.privacy-custom-check svg {
    stroke: var(--gold-400);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Estado checked */
.privacy-checkbox-wrapper input[type="checkbox"]:checked+.privacy-custom-check {
    background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.25), rgba(var(--gold-rgb), 0.10));
    border-color: rgba(var(--gold-rgb), 0.70);
    box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.25);
}

.privacy-checkbox-wrapper input[type="checkbox"]:checked+.privacy-custom-check svg {
    opacity: 1;
    transform: scale(1);
}

/* Focus accesible */
.privacy-checkbox-wrapper input[type="checkbox"]:focus-visible+.privacy-custom-check {
    outline: 2px solid rgba(var(--gold-rgb), 0.6);
    outline-offset: 2px;
}

.privacy-text {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.55;
    padding-top: 1px;
}

.privacy-link {
    color: var(--gold-400);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(var(--gold-rgb), 0.4);
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.privacy-link:hover {
    color: var(--gold-300);
    text-decoration-color: rgba(var(--gold-rgb), 0.8);
}

/* ---- Success State ---- */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
    min-height: 300px;
    animation: fade-in-up 0.5s ease forwards;
}

.success-icon {
    font-size: 56px;
    animation: pop-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes pop-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-400);
}

.success-text {
    font-size: 15px;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 360px;
}

.success-text strong {
    color: var(--text-primary);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-copy {
        text-align: center;
        align-items: center;
    }

    .form-title {
        text-align: center !important;
    }

    .form-trust-points {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .trust-point {
        background: rgba(var(--gold-rgb), 0.04);
        border: 1px solid rgba(var(--gold-rgb), 0.1);
        border-radius: 12px;
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .form-card {
        padding: 28px 20px !important;
    }

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

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

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

    .btn-form-submit {
        font-size: 14px;
        padding: 16px 20px;
    }
}