/* ===== Hide Dev Watermark ===== */
.dev-watermark,
#devWatermark {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== Design System Premium ===== */
:root {
    /* Core Colors - Paleta Sofisticada */
    --primary-900: #8B1538;
    --primary-800: #A91D47;
    --primary-700: #C72654;
    --primary-600: #E53E63;
    --primary-500: #FF4D6D;
    --primary-400: #FF6B87;
    --primary-300: #FF8BA1;
    --primary-200: #FFABBB;
    --primary-100: #FFCBD5;
    --primary-50: #FFEBEF;

    /* Neutral Colors - Escala de Cinzas Premium */
    --neutral-950: #0F0F0F;
    --neutral-900: #1A1A1A;
    --neutral-800: #262626;
    --neutral-700: #404040;
    --neutral-600: #525252;
    --neutral-500: #737373;
    --neutral-400: #A3A3A3;
    --neutral-300: #D4D4D4;
    --neutral-200: #E5E5E5;
    --neutral-100: #F5F5F5;
    --neutral-50: #FAFAFA;
    --neutral-0: #FFFFFF;

    /* Accent Colors */
    --accent-gold: #D4AF37;
    --accent-gold-light: #F7E98E;
    --accent-cream: #FFF8E7;
    
    /* Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    --gradient-mesh: radial-gradient(ellipse at top, var(--primary-50) 0%, transparent 70%);

    /* Shadows - Múltiplos Níveis */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-colored: 0 20px 40px -12px rgba(255, 77, 109, 0.3);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --space-px: 1px;
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Animation Curves */
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Z-Index Stack */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;

    /* Breakpoints (for JS) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

/* ===== Modern Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--neutral-900);
    background-color: var(--neutral-0);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* Selection Styles */
::selection {
    background-color: var(--primary-500);
    color: var(--neutral-0);
}

::-moz-selection {
    background-color: var(--primary-500);
    color: var(--neutral-0);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-500);
}

/* Reduced Motion */
@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;
    }
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.container-fluid {
    width: 100%;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.container-narrow {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.container-centered {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.text-primary { color: var(--primary-600); }
.text-secondary { color: var(--neutral-600); }
.text-white { color: var(--neutral-0); }
.text-dark { color: var(--neutral-900); }

/* Common Elements */
a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Dev Watermark ===== */
.dev-watermark {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    z-index: var(--z-tooltip);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-7);
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.96) 0%, 
        rgba(30, 41, 59, 0.96) 50%,
        rgba(51, 65, 85, 0.96) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 77, 109, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    cursor: pointer;
    min-width: 240px;
    max-width: 320px;
}

.dev-watermark.scrolled {
    opacity: 0.5;
}

.dev-watermark.top {
    opacity: 0.3;
}

.dev-watermark:hover {
    opacity: 1 !important;
}

.dev-watermark img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 5px;
}

.dev-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dev-text-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.dev-text {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: 0.03em;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.dev-watermark.scrolling-up {
    animation: watermarkBounce 0.6s ease-out;
}

.dev-watermark.scrolling-down {
    animation: watermarkPulse 0.6s ease-out;
}

/* Watermark Animations */
@keyframes watermarkFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-6px) rotate(0.3deg);
    }
    50% {
        transform: translateY(-3px) rotate(0deg);
    }
    75% {
        transform: translateY(-9px) rotate(-0.3deg);
    }
}

@keyframes watermarkBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.4),
            0 10px 25px rgba(0, 0, 0, 0.2),
            0 0 30px rgba(255, 77, 109, 0.15);
    }
    50% {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.5),
            0 12px 30px rgba(0, 0, 0, 0.3),
            0 0 40px rgba(255, 77, 109, 0.25);
    }
}

@keyframes watermarkPulse {
    0%, 100% {
        opacity: 0.92;
        filter: brightness(1);
    }
    50% {
        opacity: 0.98;
        filter: brightness(1.05);
    }
    100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.95);
    }
}

/* Mobile watermark adjustments */
@media (max-width: 768px) {
    .dev-watermark {
        bottom: var(--space-4);
        right: var(--space-4);
        padding: var(--space-1) var(--space-3);
        gap: var(--space-1);
    }
    
    .dev-watermark img {
        width: 20px;
        height: 20px;
    }
    
    .dev-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .dev-watermark {
        bottom: var(--space-3);
        right: var(--space-3);
    }
    
    .dev-text {
        display: none;
    }
    
    .dev-watermark img {
        width: 32px;
        height: 32px;
    }
}

/* ===== Modern Splash Screen ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-toast);
    transition: all 800ms var(--ease-out);
    overflow: hidden;
}

.splash-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    background: transparent;
}

/* Ensure video starts immediately without poster conflicts */
.splash-video::-webkit-media-controls {
    display: none !important;
}

.splash-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.splash-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.4) 0%, 
        rgba(255, 20, 147, 0.4) 50%,
        rgba(255, 77, 109, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.splash-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.2;
    z-index: 3;
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 4;
    transform: translateY(0);
    animation: splashFadeIn 1.8s var(--ease-out) forwards;
}

.splash-logo {
    margin-bottom: var(--space-12);
    transform: scale(0.8);
    animation: splashScale 1.2s var(--ease-bounce) 0.3s forwards;
}

.splash-logo img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 77, 109, 0.3));
    }
    to {
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 40px rgba(255, 77, 109, 0.6));
    }
}

.splash-text {
    display: none;
}

.splash-subtitle {
    display: none;
}

.splash-progress {
    position: absolute;
    bottom: var(--space-16);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    z-index: 4;
}

.splash-progress-bar {
    height: 100%;
    background: var(--neutral-0);
    border-radius: var(--radius-full);
    width: 0;
    animation: splashProgress 2.5s var(--ease-out) forwards;
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashScale {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

@keyframes splashTextSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* ===== ULTRA MODERN PREMIUM HEADER ===== */
.header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-image: linear-gradient(90deg, 
        rgba(255, 77, 109, 0.3), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 77, 109, 0.3)) 1;
    padding: 0;
    z-index: 9999 !important;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    display: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 0px rgba(255, 255, 255, 0.15) inset,
        0 -1px 0px rgba(0, 0, 0, 0.05) inset;
}

/* HEADER CARREGADO - ANIMAÇÃO ÉPICA */
body.loaded .header {
    display: block !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: headerEpicEntry 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    position: fixed !important;
    top: 0 !important;
}

/* ESTADOS FORÇADOS PARA MÁXIMA GARANTIA */
.header,
body.loaded .header,
.header.scrolled,
.header.hidden {
    position: fixed !important;
    top: 0 !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ANIMAÇÃO DE ENTRADA ÉPICA */
@keyframes headerEpicEntry {
    0% {
        transform: translateY(-120px) scale(0.95);
        opacity: 0;
        filter: blur(10px);
    }
    40% {
        transform: translateY(8px) scale(1.01);
        opacity: 0.8;
        filter: blur(2px);
    }
    70% {
        transform: translateY(-2px) scale(1.005);
        opacity: 0.95;
        filter: blur(0px);
    }
    100% {
        transform: translateY(0) scale(1) !important;
        opacity: 1;
        filter: blur(0px);
    }
}

/* HEADER EM SCROLL - EFEITO PREMIUM */
.header.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 50%,
        rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(35px) saturate(200%);
    -webkit-backdrop-filter: blur(35px) saturate(200%);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.12),
        0 1px 0px rgba(255, 255, 255, 0.25) inset,
        0 -1px 0px rgba(0, 0, 0, 0.08) inset,
        0 0 0 1px rgba(255, 77, 109, 0.1);
    border-bottom: 1px solid rgba(255, 77, 109, 0.15);
}

/* CONTAINER MODERNO */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2.5rem;
    height: auto;
    position: relative;
}

/* LOGO ULTRA MODERNO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, 
        rgba(255, 77, 109, 0.1),
        rgba(255, 159, 28, 0.1),
        rgba(255, 77, 109, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.logo:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.logo-image {
    height: 48px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.logo:hover .logo-image {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(255, 77, 109, 0.3));
}

/* NAVEGAÇÃO PREMIUM */
.nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

/* LINKS DE NAVEGAÇÃO ULTRA MODERNOS */
.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.08),
        rgba(255, 159, 28, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d6d, #ff9f1c);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: #ff4d6d;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 77, 109, 0.2);
}

.nav-link.active {
    color: #ff4d6d;
    font-weight: 600;
}

/* BOTÃO CTA ULTRA PREMIUM */
.btn.btn-primary {
    background: linear-gradient(135deg, #ff4d6d 0%, #ff6b85 50%, #ff4d6d 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255, 77, 109, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn.btn-primary::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.6s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(255, 77, 109, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, #ff3355 0%, #ff5577 50%, #ff3355 100%);
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn.btn-primary:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* TOGGLE MOBILE ULTRA MODERNO */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 9999999 !important;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.1),
        rgba(255, 159, 28, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-toggle:hover::before {
    opacity: 1;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #ff4d6d, #ff9f1c);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.2);
}

/* EFEITO DE PARTÍCULAS NO BACKGROUND */
.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 77, 109, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 159, 28, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* RESPONSIVIDADE PREMIUM */
@media (max-width: 768px) {
    .header-container {
        padding: 1.25rem 1.5rem;
    }
    
    .logo-image {
        height: 42px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

.logo {
    display: flex;
    align-items: center;
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    transition: all var(--transition-base);
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 90px;
    width: auto;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.header.scrolled .logo-image {
    height: 70px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-8);
    margin: 0;
    padding: 0;
}

/* Responsive navigation safety rules */
@media (max-width: 1024px) {
    .nav-menu {
        display: none !important;
    }
    
    .nav .btn-primary {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
}

.nav-link {
    position: relative;
    font-weight: var(--font-medium);
    color: var(--neutral-700);
    transition: all var(--transition-base);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
    background: var(--primary-50);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* CTA Button in Header */
.nav .btn-primary {
    margin-left: var(--space-4);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--neutral-0);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    border: none;
    text-decoration: none;
}

.nav .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.nav .btn-primary:active {
    transform: translateY(0);
}

.nav .btn-primary i {
    font-size: var(--text-base);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: calc(var(--z-modal) + 1);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: var(--radius-full);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    background: var(--primary-600) !important;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
    background: var(--primary-600) !important;
}

/* Garantir que o botão toggle mantenha o estado ativo */
.mobile-menu.active ~ header .mobile-menu-toggle.active span:nth-child(1),
.mobile-menu.active + * .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px) !important;
    background: var(--primary-600) !important;
}

.mobile-menu.active ~ header .mobile-menu-toggle.active span:nth-child(2),
.mobile-menu.active + * .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.mobile-menu.active ~ header .mobile-menu-toggle.active span:nth-child(3),
.mobile-menu.active + * .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px) !important;
    background: var(--primary-600) !important;
}

/* Garantir que o toggle fique sempre no topo quando o menu está ativo */
.mobile-menu.active ~ header .mobile-menu-toggle,
.mobile-menu.active + * .mobile-menu-toggle {
    z-index: 9999999 !important;
    position: relative !important;
}

/* CSS adicional para forçar o toggle na frente */
.header .mobile-menu-toggle.active {
    z-index: 9999999 !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 2px solid rgba(255, 77, 109, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Mobile Menu */
/* ===== MENU MOBILE ULTRA MODERNO ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    z-index: 999999;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 77, 109, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 159, 28, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 77, 109, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* HEADER DO MENU MOBILE */
.mobile-menu-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0 2rem 0;
    border-bottom: 1px solid rgba(255, 77, 109, 0.1);
    margin-bottom: 2rem;
    position: relative;
}

.mobile-menu-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff4d6d, #ff9f1c);
    transform: translateX(-50%);
    border-radius: 2px;
}

.mobile-menu-logo {
    position: relative;
}

.mobile-logo-image {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 6px 20px rgba(255, 77, 109, 0.2));
    transition: all 0.3s ease;
}

/* NAVEGAÇÃO MOBILE */
.mobile-nav-menu {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-menu li {
    margin: 0;
}

/* LINKS MOBILE ULTRA MODERNOS */
.mobile-nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin: 0.25rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.08),
        rgba(255, 159, 28, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4d6d, #ff9f1c);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 3px;
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
    opacity: 1;
}

.mobile-nav-link:hover::after,
.mobile-nav-link:active::after {
    width: 100%;
}

.mobile-nav-link:hover {
    color: #ff4d6d;
    transform: translateX(8px) scale(1.02);
    text-shadow: 0 2px 10px rgba(255, 77, 109, 0.3);
}

/* BOTÃO CTA MOBILE */
.mobile-nav-menu .btn.btn-primary.btn-lg {
    background: linear-gradient(135deg, #ff4d6d 0%, #ff6b85 50%, #ff4d6d 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 
        0 12px 30px rgba(255, 77, 109, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.mobile-nav-menu .btn.btn-primary.btn-lg::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.6s ease;
}

.mobile-nav-menu .btn.btn-primary.btn-lg:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 77, 109, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.3) inset;
    background: linear-gradient(135deg, #ff3355 0%, #ff5577 50%, #ff3355 100%);
}

.mobile-nav-menu .btn.btn-primary.btn-lg:hover::before {
    left: 100%;
}

/* RESPONSIVIDADE TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-menu {
        padding: 2.5rem 2rem;
    }
    
    .mobile-nav-link {
        font-size: 1.25rem;
        padding: 1.25rem 1.75rem;
    }
    
    .mobile-menu-header {
        padding: 2rem 0 2.5rem 0;
        margin-bottom: 2.5rem;
    }
    
    .mobile-logo-image {
        height: 56px;
    }
}

.mobile-menu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== Modern Button System ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    line-height: var(--leading-tight);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    user-select: none;
    white-space: nowrap;
}

.btn::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: all var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

/* Button Variants */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--neutral-0);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--neutral-900);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-600);
    color: var(--neutral-0);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--neutral-0);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-minimal {
    background: transparent;
    color: var(--neutral-700);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
}

.btn-minimal:hover {
    background: var(--neutral-100);
    color: var(--primary-600);
}

/* Button Sizes */
.btn-xs {
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    gap: var(--space-1);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    gap: var(--space-1);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    gap: var(--space-3);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
    gap: var(--space-3);
}

/* Button States */
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn:disabled:hover,
.btn.disabled:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

/* Loading State */
.btn.loading {
    color: transparent;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: btnSpin 1s linear infinite;
    color: var(--neutral-0);
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Icon Button */
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-icon.btn-lg {
    width: 48px;
    height: 48px;
}

.btn-icon.btn-xl {
    width: 56px;
    height: 56px;
}

/* Button Group */
.btn-group {
    display: inline-flex;
    gap: var(--space-2);
    align-items: center;
}

.btn-group.vertical {
    flex-direction: column;
}

.btn-group .btn {
    flex-shrink: 0;
}

/* ===== Modern Hero Section ===== */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--neutral-0);
    overflow: hidden;
    background: var(--gradient-primary);
    margin-top: 0;
    padding-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.7;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.8) 0%, 
        rgba(255, 77, 109, 0.6) 50%, 
        rgba(255, 77, 109, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
    position: relative;
    padding: 0 var(--space-6);
    opacity: 0;
    transform: translateY(40px);
    animation: heroContentFadeIn 1.5s ease-out 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-title .text-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    margin-bottom: var(--space-16);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-8);
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: heroStatFadeIn 0.8s ease-out forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1.2s; }
.hero-stat:nth-child(2) { animation-delay: 1.4s; }
.hero-stat:nth-child(3) { animation-delay: 1.6s; }

.hero-stat-icon {
    font-size: var(--text-3xl);
    color: var(--accent-gold);
    margin-bottom: var(--space-3);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    display: block;
    margin-bottom: var(--space-1);
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Elements */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: particleFloat 20s infinite linear;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: var(--text-2xl);
    animation: floatingElementFloat 25s infinite ease-in-out;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: scrollIndicatorFadeIn 1s ease-out 2s forwards;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--neutral-0);
    border-radius: var(--radius-full);
    position: relative;
    opacity: 0.7;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--neutral-0);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

/* Animations */
@keyframes heroContentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroStatFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollIndicatorFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollDot {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes floatingElementFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* ===== Modern About Section ===== */
.about {
    padding: var(--space-24) 0;
    background-color: var(--neutral-0);
}

.section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: var(--primary-600);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.about-text-content {
    flex: 1;
    min-width: 320px;
}

.about-text {
    font-size: var(--text-lg);
    color: var(--neutral-700);
    margin-bottom: var(--space-8);
    line-height: var(--leading-relaxed);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.about-feature {
    text-align: center;
    padding: var(--space-6);
    background-color: var(--neutral-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.about-feature-icon {
    font-size: var(--text-4xl);
    color: var(--primary-500);
    margin-bottom: var(--space-4);
    display: block;
}

.about-feature-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
}

.about-feature-content p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
}

.about-image {
    flex: 1;
    min-width: 320px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ===== Modern Products Section ===== */
.products {
    padding: var(--space-24) 0;
    background-color: var(--neutral-50);
}

.products-filters-container {
    margin-bottom: var(--space-12);
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-6);
}

.products-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.filter-btn {
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--neutral-0);
    color: var(--neutral-700);
    border: 2px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    border-color: var(--primary-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn i {
    font-size: var(--text-sm);
}

.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--neutral-0);
    border-color: var(--primary-500);
    box-shadow: var(--shadow-colored);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.product-card {
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid var(--neutral-200);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gradient-primary);
    color: var(--neutral-0);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 77, 109, 0.9) 0%, 
        rgba(255, 77, 109, 0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition-base);
    z-index: 1;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: var(--space-6);
}

.product-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-3);
    line-height: var(--leading-tight);
}

.product-description {
    color: var(--neutral-600);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-4);
}

.product-price {
    font-weight: var(--font-bold);
    color: var(--primary-600);
    font-size: var(--text-lg);
}

.text-gray {
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

/* ===== Modern Gallery Section ===== */
.gallery {
    padding: var(--space-24) 0;
    background-color: var(--neutral-0);
}

.gallery-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.gallery-slider {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--neutral-0);
    padding: var(--space-8) var(--space-6) var(--space-6);
}

.gallery-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.gallery-content p {
    opacity: 0.9;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ===== Modern Testimonials Section ===== */
.testimonials {
    padding: var(--space-24) 0;
    background-color: var(--neutral-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.testimonial-card {
    background: var(--neutral-0);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-size: 4rem;
    color: var(--primary-200);
    font-family: var(--font-display);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
    display: flex;
    gap: var(--space-1);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: var(--space-6);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
    color: var(--neutral-700);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-100);
}

.testimonial-info h4 {
    font-weight: var(--font-semibold);
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
    font-size: var(--text-base);
}

.testimonial-info p {
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

/* ===== Modern Contact Section ===== */
.contact {
    padding: var(--space-24) 0;
    background-color: var(--neutral-0);
}

.contact-content {
    display: flex;
    gap: var(--space-12);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

.contact-item {
    margin-bottom: var(--space-8);
}

.contact-icon {
    font-size: var(--text-xl);
    color: var(--primary-500);
    margin-bottom: var(--space-3);
    display: block;
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
    color: var(--primary-600);
}

.contact-details p {
    margin-bottom: var(--space-2);
    color: var(--neutral-700);
    line-height: var(--leading-relaxed);
}

.contact-details a {
    color: var(--neutral-700);
    transition: color var(--transition-base);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-600);
}

.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-50);
    color: var(--primary-600);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-500);
    color: var(--neutral-0);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    flex: 1;
    min-width: 320px;
    background-color: var(--neutral-50);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-medium);
    color: var(--neutral-800);
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background-color: var(--neutral-0);
    color: var(--neutral-900);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-500);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.1);
}

.form-textarea {
    height: 120px;
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
}

/* ===== Modern Footer ===== */
.footer {
    background: var(--gradient-primary);
    color: var(--neutral-0);
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-10);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-5);
    color: var(--neutral-0);
}

.footer-section p {
    margin-bottom: var(--space-5);
    line-height: var(--leading-relaxed);
    opacity: 0.9;
    color: var(--neutral-0);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--neutral-0);
    transition: all var(--transition-base);
    opacity: 0.9;
    text-decoration: none;
    padding: var(--space-1) 0;
}

.footer-links a:hover {
    color: var(--accent-gold);
    opacity: 1;
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--text-sm);
    opacity: 0.8;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
    position: relative;
    z-index: 1;
}

/* ===== Enhanced Responsive Design ===== */

/* Container adjustments */
@media (max-width: 1199px) {
    .container,
    .container-narrow {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container,
    .container-narrow {
        max-width: 720px;
    }
}

/* Large screens (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: var(--text-7xl);
    }
    
    .hero-stats {
        max-width: 700px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens (tablets, 768px to 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .hero-buttons {
        gap: var(--space-4);
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--space-4);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .gallery-slider {
        height: 350px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
    
    .section {
        padding: var(--space-20) 0;
    }
}

/* Large tablets and small desktops (1200px and down) */
@media (max-width: 1200px) {
    .nav-menu {
        gap: var(--space-3);
    }
    
    .nav-link {
        font-size: var(--text-sm);
    }
    
    .btn {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-sm);
    }
}

/* Tablet and medium screens (1024px and down) */
@media (max-width: 1024px) {
    /* Show mobile menu for tablets too */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 9999999 !important;
        position: relative !important;
    }
    
    /* Garantir que o ícone X apareça em tablet */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
        background: #ff4d6d !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
        visibility: hidden !important;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
        background: #ff4d6d !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav .btn-primary {
        display: none;
    }
    
    /* Hero tablet adjustments */
    .hero {
        padding-top: 130px;
    }
    
    /* Ensure logo is visible and properly sized */
    .header-container {
        padding: 0 var(--space-3);
    }
    
    .logo-image {
        height: 80px;
    }
    
    .header.scrolled .logo-image {
        height: 65px;
    }
}

/* Compact tablets (991px and down) */
@media (max-width: 991px) {
    .header-container {
        padding: 0 var(--space-2);
    }
    
    .logo-image {
        height: 75px;
    }
    
    .header.scrolled .logo-image {
        height: 60px;
    }
}

/* Small tablets and large phones (900px and down) */
@media (max-width: 900px) {
    /* Force mobile menu even earlier to preserve logo visibility */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav .btn-primary {
        display: none !important;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .header.scrolled .logo-image {
        height: 55px;
    }
}

/* Small screens (mobile, 768px and down) */
@media (max-width: 768px) {
    /* Hide desktop nav, show mobile */
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 9999999 !important;
        position: relative !important;
    }
    
    /* Garantir que o ícone X apareça em mobile */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
        background: #ff4d6d !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
        transform: scaleX(0) !important;
        visibility: hidden !important;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
        background: #ff4d6d !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav .btn-primary {
        display: none;
    }
    
    /* Adjust header */
    .header {
        padding: var(--space-1) 0;
    }
    
    .header.scrolled {
        padding: var(--space-05) 0;
    }
    
    .header-container {
        height: 50px;
        padding: 0 var(--space-3);
    }
    
    .logo-image {
        height: 75px;
    }
    
    .header.scrolled .logo-image {
        height: 60px;
    }
    
    /* Splash screen adjustments */
    .splash-logo img {
        width: 180px;
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 100vh;
        padding-top: 180px;
    }
    
    .hero-content {
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: var(--space-4);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-6);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: var(--space-4);
        margin-top: var(--space-8);
    }
    
    .hero-stat-number {
        font-size: var(--text-2xl);
    }
    
    /* Content spacing */
    .section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: var(--space-3);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
    }
    
    .section-header {
        margin-bottom: var(--space-10);
    }
    
    /* About section */
    .about-features {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .about-feature {
        padding: var(--space-4);
    }
    
    /* Product grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .products-filters {
        flex-wrap: wrap;
        gap: var(--space-2);
        justify-content: center;
    }
    
    .filter-btn {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
        gap: var(--space-1);
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-content {
        padding: var(--space-4);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .testimonial-card {
        padding: var(--space-5);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    /* Gallery */
    .gallery-slider {
        height: 280px;
    }
    
    /* Form */
    .contact-form {
        padding: var(--space-6);
    }
    
    .form-input,
    .form-textarea {
        padding: var(--space-3);
    }
    
    /* Buttons */
    .btn-xl {
        padding: var(--space-3) var(--space-5);
        font-size: var(--text-base);
    }
    
    .btn-lg {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
    }
    
    /* Social links */
    .social-link {
        width: 44px;
        height: 44px;
    }
}

/* Extra small screens (320px to 575px) */
@media (max-width: 575px) {
    .container,
    .container-narrow {
        padding-left: var(--space-3);
        padding-right: var(--space-3);
    }
    
    /* Splash screen adjustments */
    .splash-logo img {
        width: 160px;
    }
    
    /* Hero adjustments mobile */
    .hero {
        padding-top: 160px;
    }
    
    .hero-content {
        padding: 0 var(--space-3);
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-subtitle {
        font-size: var(--text-sm);
    }
    
    .gallery-slider {
        height: 220px;
    }
    
    .hero-stats {
        padding: var(--space-3);
        gap: var(--space-3);
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .products-filters-container,
    .about-content,
    .contact-content,
    .testimonials-grid,
    .gallery-slider-container {
        padding: 0 var(--space-3);
    }
    
    .product-card,
    .testimonial-card,
    .about-feature {
        margin: 0 var(--space-1);
    }
    
    .footer-content {
        padding: 0 var(--space-3);
    }
    
    .footer-bottom {
        padding-left: var(--space-3);
        padding-right: var(--space-3);
    }
}

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    .hero {
        padding-top: 140px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .btn-xl {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 130px 0 var(--space-12);
    }
    
    .hero-content {
        padding: var(--space-8) var(--space-4);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support (future-proofing) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: var(--neutral-900);
        --bg-secondary: var(--neutral-800);
        --bg-tertiary: var(--neutral-700);
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .splash-screen,
    .hero-particles,
    .hero-floating-elements,
    .dev-watermark {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        page-break-after: always;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ===== Dev Watermark Responsive ===== */
@media (max-width: 768px) {
    .dev-watermark {
        bottom: var(--space-6);
        right: var(--space-6);
        padding: var(--space-4) var(--space-6);
        min-width: 200px;
        gap: var(--space-3);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
    }
    
    .dev-watermark img {
        width: 50px;
        height: 50px;
        padding: 4px;
    }
    
    .dev-text-label {
        font-size: 11px;
    }
    
    .dev-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .dev-watermark {
        bottom: var(--space-4);
        right: var(--space-4);
        padding: var(--space-3) var(--space-5);
        min-width: 180px;
        backdrop-filter: blur(12px) saturate(160%);
        -webkit-backdrop-filter: blur(12px) saturate(160%);
    }
    
    .dev-watermark img {
        width: 44px;
        height: 44px;
        padding: 3px;
    }
    
    .dev-text-label {
        font-size: 10px;
        letter-spacing: 0.01em;
    }
    
    .dev-text {
        font-size: 15px;
        letter-spacing: 0.02em;
    }
}

/* ===== Advanced Watermark Animations ===== */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes notificationShow {
    0% {
        transform: translate(-50%, -50%) scale(0) rotate(180deg);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes notificationHide {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(-180deg);
        opacity: 0;
    }
}

.dev-watermark.animate-in {
    animation: watermarkFloat 8s ease-in-out infinite, watermarkPulse 4s ease-in-out infinite, 
               slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.92;
    }
}

/* ===== Production Section ===== */
.production {
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    position: relative;
    overflow: hidden;
}

.production::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="40" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="80" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.production-content {
    max-width: 1000px;
    margin: 0 auto;
}

.production-video-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--neutral-200);
}

.video-thumbnail {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-thumbnail:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-base);
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.video-info p {
    font-size: var(--text-base);
    color: var(--neutral-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: black;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all var(--transition-base);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

#productionVideo {
    width: 100%;
    height: auto;
    max-width: 1200px;
    max-height: 80vh;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Production Responsive ===== */
@media (max-width: 768px) {
    .production-video-preview {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-6);
    }
    
    .video-info {
        text-align: center;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .video-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .video-modal-close {
        top: -40px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
}
