/* ============================================
   DESIGN SYSTEM - VARIABLES & RESET
   ============================================ */
:root {
    /* Colors - Primary */
    --color-primary: #FF6B35;
    --color-primary-dark: #E55A2B;
    --color-primary-light: #FF8C5A;
    --color-primary-hover: #FF7A4A;
    
    /* Colors - Neutral */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-900: #1A1A1A;
    --color-gray-800: #2D2D2D;
    --color-gray-700: #404040;
    --color-gray-600: #666666;
    --color-gray-500: #808080;
    --color-gray-400: #999999;
    --color-gray-300: #CCCCCC;
    --color-gray-200: #E5E5E5;
    --color-gray-100: #F5F5F5;
    --color-gray-50: #FAFAFA;
    
    /* Colors - Semantic */
    --color-text-primary: #1A1A1A;
    --color-text-secondary: #666666;
    --color-text-tertiary: #999999;
    --color-text-inverse: #FFFFFF;
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F5F5F5;
    --color-bg-dark: #1A1A1A;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Font Sizes - Scale */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    --line-height-loose: 2;
    
    /* Spacing - 8px Grid System */
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;      /* 16px */
    --spacing-5: 1.25rem;   /* 20px */
    --spacing-6: 1.5rem;    /* 24px */
    --spacing-8: 2rem;      /* 32px */
    --spacing-10: 2.5rem;   /* 40px */
    --spacing-12: 3rem;     /* 48px */
    --spacing-16: 4rem;     /* 64px */
    --spacing-20: 5rem;     /* 80px */
    --spacing-24: 6rem;     /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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-primary: 0 4px 15px rgba(255, 107, 53, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-inverse);
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Suporte para prefer-reduced-motion (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Garantir que todas as imagens sejam responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Garantir que vídeos sejam responsivos */
video {
    max-width: 100%;
    height: auto;
}

/* ============================================
   VÍDEO LOGO ANIMADA
   ============================================ */
.video-wrapper-simple {
    width: 100%;
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
}

@media (max-width: 640px) {
    .video-wrapper-simple {
        padding: 2rem 1rem;
    }
}

.video-container-simple {
    width: 100%;
    max-width: 1200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
}

.video-player-simple {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    object-fit: contain;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: auto;
}

.video-watermark-cover {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 40px;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.85) 0%,
        rgba(255, 165, 0, 0.8) 30%,
        rgba(255, 107, 53, 0.75) 60%,
        rgba(255, 107, 53, 0.6) 80%,
        transparent 100%
    );
    border-radius: 8px 0 0 0;
    z-index: 3;
    pointer-events: none;
    animation: watermarkPulse 2s ease-in-out infinite;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

@keyframes watermarkPulse {
    0%, 100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.01);
    }
}

.video-watermark-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 165, 0, 0.15) 50%,
        transparent 100%
    );
    border-radius: 8px 0 0 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-5);
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-4);
    }
}

.page-placeholder {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-20) var(--spacing-4);
    color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    margin: var(--spacing-12) auto;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
}

.page-placeholder h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    color: var(--color-white);
}

.page-placeholder p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-8);
}

.page-cta {
    margin-top: var(--spacing-8);
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-4) 0;
    min-height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.logo:hover::before {
    opacity: 1;
    width: 80px;
    height: 80px;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
            drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
    position: relative;
    z-index: 1;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 2px 12px rgba(184, 134, 11, 0.5)) 
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    }
}

.logo:hover .logo-image,
.logo a:hover .logo-image {
    transform: scale(1.08) translateY(-2px) rotateY(5deg);
    filter: drop-shadow(0 4px 20px rgba(184, 134, 11, 0.6)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    animation: none;
}

.logo-text-wrapper {
    display: none;
}

.logo-text {
    color: var(--color-white);
    font-size: 1.3rem;
}

.logo-accent {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text-inverse);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    position: relative;
    transition: var(--transition-base);
    padding: var(--spacing-2) var(--spacing-3);
    border-radius: var(--radius-md);
}

.nav-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: var(--spacing-1);
    left: var(--spacing-3);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 1.5rem);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-text-inverse);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.menu-toggle:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2) var(--spacing-6);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    min-height: 44px;
    position: relative;
    overflow: visible;
    z-index: 1;
    animation: buttonOpacity 5s ease-in-out infinite;
}

@media (max-width: 480px) {
    .btn-primary {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        white-space: normal;
        word-break: break-word;
    }
}

.nav-cta-btn > * {
    position: relative;
    z-index: 2;
}

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

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

.nav-cta-btn::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -250px;
    width: 180px;
    height: 100px;
    background: 
        radial-gradient(ellipse 180px 100px at 50% 30%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 65%),
        radial-gradient(ellipse 120px 60px at 30% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 120px 60px at 70% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    animation: eagleShadow 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(2px);
    will-change: transform, left, top, opacity;
}

@keyframes eagleShadow {
    0% {
        left: -250px;
        top: -60px;
        opacity: 0;
        transform: scale(0.8);
    }
    15% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        left: calc(100% + 70px);
        top: -40px;
        opacity: 0.9;
        transform: scale(1.1);
    }
    85% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        left: calc(100% + 300px);
        top: -60px;
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes buttonOpacity {
    0% {
        opacity: 1;
    }
    15% {
        opacity: 0.75;
    }
    50% {
        opacity: 0.65;
    }
    85% {
        opacity: 0.75;
    }
    100% {
        opacity: 1;
    }
}

.nav-cta-mobile {
    display: none;
}

.nav-cta-btn:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.4);
}

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

.nav-cta-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    color: var(--color-text-inverse);
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(40, 40, 40, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%),
        url('images/hero-elegante.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(75deg, rgba(80, 80, 80, 0.16) 0%, transparent 50%),
        linear-gradient(-75deg, rgba(50, 50, 50, 0.12) 10%, transparent 60%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-logo-mark {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
    padding: 15px;
}

.hero-logo-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(150, 150, 150, 0.65);
    box-shadow: 0 0 30px rgba(150, 150, 150, 0.5);
    animation: logoRingSpin 12s linear infinite;
}

.hero-logo-image {
    width: 95%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
    animation: floatCard 6s infinite ease-in-out;
}

@keyframes logoRingSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* ============================================
   FUTURE CTA SECTION
   ============================================ */
.future-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.future-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.future-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.future-cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: gradientShift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

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

.future-cta-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.future-cta-button {
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    min-height: 44px;
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
}

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

.future-cta-button:hover::before {
    left: 100%;
}

.future-cta-button:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.4);
}

.future-cta-button:active {
    transform: translateY(0) scale(0.98);
}

.future-cta-button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.future-cta-button span {
    transition: transform 0.3s ease;
}



.services-marquee {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-4) 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(32, 24, 17, 0.85) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.services-marquee::before,
.services-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.services-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent);
}

.services-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(0, 0, 0, 0.85), transparent);
}

.marquee-wrapper {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: var(--spacing-10);
    animation: marqueeFlow 28s linear infinite;
    width: max-content;
}

.marquee-item {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    position: relative;
    padding-left: var(--spacing-6);
}

.marquee-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

@keyframes marqueeFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   SEÇÃO DE IMPACTO
   ============================================ */
.impact-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.95) 50%, rgba(0, 0, 0, 1) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(60, 60, 60, 0.15) 0%, transparent 55%),
        linear-gradient(75deg, rgba(80, 80, 80, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.impact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.impact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.8s ease-out forwards;
}

.impact-description {
    font-size: 1.2rem;
    color: rgba(220, 220, 220, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.impact-content .btn {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 22s;
        gap: var(--spacing-6);
    }
    
    .marquee-item {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }
    
    .impact-section {
        padding: 4rem 0;
    }
    
    .impact-description {
        font-size: 1rem;
    }
}

@keyframes logoPulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-panel {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.24) 0%, rgba(0, 0, 0, 0.64) 50%, rgba(30, 30, 30, 0.32) 100%);
    border: 1px solid rgba(100, 100, 100, 0.16);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-12);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-panel {
        padding: var(--spacing-8);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ============================================
   ROCKETS ANIMATION
   ============================================ */
.rockets-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.rocket {
    position: absolute;
    width: 40px;
    height: 60px;
    animation: rocketLaunch 15s infinite linear;
}

.rocket-1 {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.rocket-2 {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.rocket-3 {
    left: 80%;
    animation-delay: 8s;
    animation-duration: 16s;
}

.rocket-body {
    width: 20px;
    height: 40px;
    background: linear-gradient(180deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.rocket-body::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #FF6B35;
}

.rocket-flame {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 30px;
    background: linear-gradient(180deg, #FF8C5A 0%, #FF6B35 50%, #FFD700 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flameFlicker 0.3s infinite alternate;
    filter: blur(2px);
}

.rocket-trail {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 107, 53, 0) 100%);
    animation: trailExtend 0.5s infinite;
}

@keyframes rocketLaunch {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) rotate(-5deg);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateX(30px) rotate(5deg);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(-20px) rotate(-3deg);
    }
}

@keyframes flameFlicker {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(-50%) scaleY(1.2) scaleX(1.1);
        opacity: 1;
    }
}

@keyframes trailExtend {
    0% {
        height: 80px;
        opacity: 0.6;
    }
    100% {
        height: 120px;
        opacity: 0.3;
    }
}

/* ============================================
   PARTICLES ANIMATION
   ============================================ */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(255, 107, 53, 0.8);
}

.particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.particle:nth-child(2) {
    left: 35%;
    animation-delay: 1s;
    animation-duration: 12s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    left: 15%;
    animation-delay: 5s;
    animation-duration: 10s;
}

.particle:nth-child(7) {
    left: 40%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.particle:nth-child(8) {
    left: 70%;
    animation-delay: 7s;
    animation-duration: 9s;
}

.particle:nth-child(9) {
    left: 25%;
    animation-delay: 8s;
    animation-duration: 11s;
}

.particle:nth-child(10) {
    left: 90%;
    animation-delay: 9s;
    animation-duration: 12s;
}

@keyframes particleFloat {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateX(10px) scale(1);
    }
    50% {
        transform: translateX(-15px) scale(1.2);
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(20px) scale(0);
    }
}

/* ============================================
   STARS ANIMATION
   ============================================ */
.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    background: #e8e8e8;
    border-radius: 50%;
    animation: starTwinkle 3s infinite ease-in-out;
    box-shadow: 0 0 6px rgba(232, 232, 232, 0.9);
}

/* Estrelas pequenas (maioria) */
.star:nth-child(1), .star:nth-child(2), .star:nth-child(3), .star:nth-child(4),
.star:nth-child(5), .star:nth-child(6), .star:nth-child(7), .star:nth-child(8),
.star:nth-child(9), .star:nth-child(10), .star:nth-child(11), .star:nth-child(12),
.star:nth-child(13), .star:nth-child(14), .star:nth-child(15), .star:nth-child(16),
.star:nth-child(17), .star:nth-child(18), .star:nth-child(19), .star:nth-child(20),
.star:nth-child(21), .star:nth-child(22), .star:nth-child(23), .star:nth-child(24) {
    width: 2px;
    height: 2px;
}

/* Estrelas médias */
.star:nth-child(25), .star:nth-child(26), .star:nth-child(27) {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 8px rgba(232, 232, 232, 1);
}

/* Estrelas grandes (brilhantes) */
.star:nth-child(28), .star:nth-child(29), .star:nth-child(30) {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 10px rgba(232, 232, 232, 1), 0 0 20px rgba(232, 232, 232, 0.5);
}

/* Distribuição aleatória das estrelas */
.star:nth-child(1) { top: 8%; left: 5%; animation-delay: 0s; }
.star:nth-child(2) { top: 12%; left: 18%; animation-delay: 0.2s; }
.star:nth-child(3) { top: 6%; left: 32%; animation-delay: 0.4s; }
.star:nth-child(4) { top: 15%; left: 48%; animation-delay: 0.6s; }
.star:nth-child(5) { top: 10%; left: 62%; animation-delay: 0.8s; }
.star:nth-child(6) { top: 18%; left: 75%; animation-delay: 1s; }
.star:nth-child(7) { top: 22%; left: 88%; animation-delay: 1.2s; }
.star:nth-child(8) { top: 28%; left: 12%; animation-delay: 1.4s; }
.star:nth-child(9) { top: 32%; left: 28%; animation-delay: 1.6s; }
.star:nth-child(10) { top: 26%; left: 42%; animation-delay: 1.8s; }
.star:nth-child(11) { top: 35%; left: 58%; animation-delay: 2s; }
.star:nth-child(12) { top: 38%; left: 72%; animation-delay: 2.2s; }
.star:nth-child(13) { top: 42%; left: 85%; animation-delay: 2.4s; }
.star:nth-child(14) { top: 48%; left: 8%; animation-delay: 2.6s; }
.star:nth-child(15) { top: 52%; left: 22%; animation-delay: 2.8s; }
.star:nth-child(16) { top: 46%; left: 38%; animation-delay: 3s; }
.star:nth-child(17) { top: 55%; left: 52%; animation-delay: 3.2s; }
.star:nth-child(18) { top: 58%; left: 68%; animation-delay: 3.4s; }
.star:nth-child(19) { top: 62%; left: 82%; animation-delay: 3.6s; }
.star:nth-child(20) { top: 68%; left: 15%; animation-delay: 3.8s; }
.star:nth-child(21) { top: 72%; left: 35%; animation-delay: 4s; }
.star:nth-child(22) { top: 66%; left: 48%; animation-delay: 4.2s; }
.star:nth-child(23) { top: 75%; left: 65%; animation-delay: 4.4s; }
.star:nth-child(24) { top: 78%; left: 78%; animation-delay: 4.6s; }
.star:nth-child(25) { top: 82%; left: 25%; animation-delay: 4.8s; }
.star:nth-child(26) { top: 85%; left: 45%; animation-delay: 5s; }
.star:nth-child(27) { top: 88%; left: 62%; animation-delay: 5.2s; }
.star:nth-child(28) { top: 92%; left: 78%; animation-delay: 5.4s; }
.star:nth-child(29) { top: 80%; left: 12%; animation-delay: 5.6s; }
.star:nth-child(30) { top: 70%; left: 55%; animation-delay: 5.8s; }

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* ============================================
   GROWTH FLOATING - Animações Flutuantes
   ============================================ */
.growth-floating {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 6s infinite ease-in-out;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
    filter: blur(8px);
    animation: glowPulse 3s infinite ease-in-out;
    z-index: -1;
}

.icon-symbol {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)) 
            drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
    animation: iconFloat 4s infinite ease-in-out;
}

.icon-1 {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.icon-1 .icon-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 107, 53, 0.3) 50%, transparent 100%);
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    right: 0;
    animation-delay: 2s;
}

.icon-2 .icon-glow {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.5) 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    animation-delay: 1s;
}

.icon-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.icon-3 .icon-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 107, 53, 0.25) 50%, transparent 100%);
    animation-delay: 2s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(3deg);
    }
    50% {
        transform: translateY(-25px) translateX(-5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-15px) translateX(3px) rotate(2deg);
    }
}

.icon-3 {
    animation-name: floatIconCenter;
}

@keyframes floatIconCenter {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) translateY(-15px) rotate(3deg);
    }
    50% {
        transform: translateX(-50%) translateY(-25px) rotate(-2deg);
    }
    75% {
        transform: translateX(-50%) translateY(-15px) rotate(2deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.9;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--color-primary-light);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--color-gray);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    margin-bottom: 0.3rem;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    color: #ffffff;
    font-weight: 600;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    color: #e0e0e0;
    font-weight: 500;
}

.title-line.highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

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

.hero-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(100, 100, 100, 0.3);
    color: rgba(220, 220, 220, 0.95);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.hero-tag:hover {
    background: rgba(120, 120, 120, 0.4);
    border-color: rgba(180, 180, 180, 0.5);
    color: rgba(255, 255, 255, 1);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(220, 220, 220, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    font-weight: 400;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.btn {
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    transition: var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-primary);
    min-height: 44px; /* Touch target size */
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: visible;
}

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

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

.btn-primary:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: #e0e0e0;
    border-color: #e0e0e0;
}

.btn-secondary:hover {
    background: #e0e0e0;
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(180, 180, 180, 0.8);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.4s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: var(--color-white);
    padding: 1.65rem;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    animation: floatCard 6s infinite ease-in-out;
    backdrop-filter: blur(10px);
    width: fit-content;
    min-width: 132px;
    max-width: 132px;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.card-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 61.6px;
    height: 61.6px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5)) 
            drop-shadow(0 4px 12px rgba(255, 140, 0, 0.4));
    transition: var(--transition-base);
}

.card-1 .card-icon svg,
.card-2 .card-icon svg {
    animation: iconPulse 3s ease-in-out infinite;
}

.card-3 .card-icon svg {
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
            drop-shadow(0 0 15px rgba(255, 215, 0, 0.3))
            drop-shadow(0 8px 25px rgba(255, 107, 53, 0.5));
    animation: rocketIconGlow 3s ease-in-out infinite;
}

@keyframes rocketIconGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.3))
                drop-shadow(0 8px 25px rgba(255, 107, 53, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(184, 134, 11, 0.6)) 
                drop-shadow(0 0 25px rgba(255, 215, 0, 0.5))
                drop-shadow(0 12px 35px rgba(255, 107, 53, 0.7));
        transform: scale(1.05);
    }
}

@keyframes iconPulse {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.5)) 
                drop-shadow(0 4px 12px rgba(255, 140, 0, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.7)) 
                drop-shadow(0 6px 18px rgba(255, 140, 0, 0.6));
        transform: scale(1.05);
    }
}

.floating-card:hover .card-icon svg {
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.8)) 
            drop-shadow(0 6px 20px rgba(255, 140, 0, 0.7));
    transform: scale(1.1);
}

.floating-card:hover .card-3 .card-icon svg {
    filter: drop-shadow(0 4px 15px rgba(184, 134, 11, 0.6)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5))
            drop-shadow(0 12px 35px rgba(255, 107, 53, 0.7));
}

.card-text {
    font-weight: 600;
    color: var(--color-black);
    font-size: 0.9rem;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 4s infinite ease-in-out;
}

@media (max-width: 768px) {
    .hero-shape {
        width: 300px;
        height: 300px;
        max-width: 80vw;
        max-height: 80vw;
    }
}

@media (max-width: 480px) {
    .hero-shape {
        width: 250px;
        height: 250px;
        max-width: 70vw;
        max-height: 70vw;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.2;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #d0d0d0;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #d0d0d0;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ============================================
   SECTIONS COMMON STYLES
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre {
    background: var(--color-white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

@media (max-width: 968px) {
    .sobre-content {
        gap: var(--spacing-12);
    }
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-10);
}

.sobre-item {
    display: flex;
    gap: var(--spacing-6);
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-slow);
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
}

.sobre-item:hover {
    background: rgba(255, 107, 53, 0.03);
}

.sobre-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.sobre-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.sobre-item h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-2);
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
}

.sobre-item p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-base);
}

.sobre-visual {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.placeholder-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */
.servicos {
    background: var(--color-gray-lighter);
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
}

.servico-card {
    background: var(--color-white);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    transition: var(--transition-base);
    border: 1px solid var(--color-gray-200);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-sm);
}

.servico-card:focus-within {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.servico-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.servico-card:hover .servico-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-4);
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
}

.servico-card p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
}

.servico-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.servico-features li {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    position: relative;
    padding-left: var(--spacing-6);
    line-height: var(--line-height-relaxed);
}

.servico-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background: var(--color-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: var(--transition-slow);
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    color: var(--color-white);
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    color: var(--color-gray-light);
}

.portfolio-link {
    padding: 0.8rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--color-primary-dark);
    transform: scale(1.05);
}

.portfolio-info {
    padding: var(--spacing-6);
    background: var(--color-white);
}

.portfolio-category {
    display: inline-block;
    padding: var(--spacing-1) var(--spacing-4);
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-2);
}

.portfolio-info h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    line-height: var(--line-height-tight);
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */
.depoimentos {
    background: var(--color-gray-100);
}

.depoimentos-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.depoimento-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
    pointer-events: none;
}

.depoimento-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.depoimento-content {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-family: Georgia, serif;
}

.depoimento-text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-8);
    position: relative;
    z-index: 1;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    flex-shrink: 0;
}

.author-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-1);
    line-height: var(--line-height-tight);
}

.author-info p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-8);
    margin-top: var(--spacing-8);
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px; /* Touch target */
}

.slider-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition-base);
    min-width: 12px;
    min-height: 12px;
}

.dot:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.dot:hover {
    background: var(--color-gray-400);
    transform: scale(1.1);
}

.dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato {
    background: var(--color-white);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: start;
}

@media (max-width: 968px) {
    .contato-wrapper {
        gap: var(--spacing-12);
    }
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
    margin-top: var(--spacing-8);
}

.contato-item {
    display: flex;
    gap: var(--spacing-6);
    align-items: start;
    padding: var(--spacing-4);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contato-item:hover {
    background: rgba(255, 107, 53, 0.03);
}

.contato-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: var(--transition-base);
}

.contato-item:hover .contato-icon {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

.contato-item h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-1);
    color: var(--color-text-primary);
}

.contato-item p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    transition: var(--transition-base);
    text-decoration: none;
    background: var(--color-white);
}

.social-link:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contato-form-wrapper {
    background: var(--color-gray-100);
    padding: var(--spacing-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contato-form-wrapper {
        padding: var(--spacing-6);
    }
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-4) var(--spacing-4);
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    outline: none;
    min-height: 48px; /* Touch target */
    color: var(--color-text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--color-gray-400);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: var(--spacing-4);
    background: var(--color-gray-100);
    padding: 0 var(--spacing-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-gray-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-12);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-8);
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-image {
    height: 50px;
}

.footer-brand p {
    color: var(--color-gray);
    line-height: 1.8;
}

.footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-6);
    color: var(--color-text-inverse);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a,
.footer-column li {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    padding: var(--spacing-1) 0;
}

.footer-column a:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.footer-column a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-cta-btn {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-cta-mobile .nav-cta-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
    }
    
    /* Aumentar logo e menu toggle em 20% */
    .logo-image {
        height: 54px !important;
    }
    
    .menu-toggle {
        gap: 6px;
        padding: 6px;
    }
    
    .menu-toggle span {
        width: 30px;
        height: 3.6px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-text-inverse);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Aumentar logo e menu toggle em 20% no mobile */
    .logo-image {
        height: 54px !important;
    }
    
    .menu-toggle {
        gap: 6px;
        padding: 6px;
    }
    
    .menu-toggle span {
        width: 30px;
        height: 3.6px;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        flex-direction: column;
        padding: 100px var(--spacing-4) var(--spacing-10);
    }
    
    .hero .container {
        order: 1;
        width: 100%;
    }
    
    .hero-panel {
        text-align: center;
        padding: var(--spacing-8);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .hero-logo-mark {
        position: relative;
        order: 2;
        top: auto;
        left: auto;
        transform: none;
        width: 220px;
        height: 220px;
        margin: var(--spacing-6) auto 0;
    }
    
    .hero-logo-ring {
        border-width: 2px;
    }
    
    .hero-logo-image {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .servico-card,
    .contato-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-accent {
        font-size: 0.85rem;
    }
    
    .logo-text-wrapper {
        display: none;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CURSOR ROCKET EFFECT
   ============================================ */
@media (pointer: fine) {
    body,
    body * {
        cursor: none !important;
    }
}

.rocket-cursor {
    --rocket-size: 30px;
    --rocket-rotation: -45deg;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--rocket-size);
    height: calc(var(--rocket-size) * 1.5);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--rocket-rotation));
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.12s ease;
    mix-blend-mode: screen;
}

body.cursor-active .rocket-cursor {
    opacity: 1;
}

.rocket-cursor div {
    position: absolute;
}

.rocket-cursor .rocket-glow {
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(184, 134, 11, 0.3) 40%, rgba(255, 107, 53, 0.2) 70%, transparent 100%);
    filter: blur(8px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

.rocket-cursor .rocket-ship {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(145deg, #FFD700 0%, #FFA500 25%, #FF8C00 50%, #FF6B35 75%, #E55A2B 100%);
    border-radius: 50% 50% 30% 30%;
    border: 1.5px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 2px 8px rgba(184, 134, 11, 0.4),
        0 0 15px rgba(255, 215, 0, 0.3),
        0 8px 25px rgba(255, 107, 53, 0.5),
        inset 0 -4px 10px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
            drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
    animation: rocketGlow 3s ease-in-out infinite;
}

.rocket-cursor .rocket-ship::after {
    content: '';
    position: absolute;
    width: 35%;
    height: 35%;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 215, 0, 0.4) 50%, rgba(255, 107, 53, 0.1) 100%);
    box-shadow: 
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5);
}

.rocket-cursor .rocket-fin {
    width: 45%;
    height: 40%;
    bottom: 8%;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.5), rgba(184, 134, 11, 0.8), rgba(255, 107, 53, 0.9));
    border-radius: 60% 60% 20% 20%;
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
            drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    opacity: 0.9;
    border: 0.5px solid rgba(255, 215, 0, 0.4);
}

.rocket-cursor .rocket-fin-left {
    left: -12%;
    transform: skewY(18deg);
}

.rocket-cursor .rocket-fin-right {
    right: -12%;
    transform: skewY(-18deg);
}

.rocket-cursor .rocket-flame {
    width: 40%;
    height: 40%;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 55% 55%;
    background: radial-gradient(circle at 50% 20%, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 215, 0, 0.8) 25%, 
        rgba(255, 165, 0, 0.7) 50%, 
        rgba(255, 107, 53, 0.9) 75%, 
        rgba(184, 134, 11, 0.8) 100%);
    filter: blur(0.5px);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.6),
        0 0 25px rgba(255, 107, 53, 0.5);
    animation: flamePulse 0.25s infinite alternate;
}

.rocket-cursor .rocket-trail {
    width: 32%;
    height: 140%;
    bottom: calc(-100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 215, 0, 0.7) 30%, 
        rgba(255, 165, 0, 0.5) 50%, 
        rgba(255, 107, 53, 0.3) 70%, 
        transparent 100%);
    filter: blur(6px);
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: trailFade 0.6s ease infinite;
}

.rocket-cursor.cursor-boost {
    filter: drop-shadow(0 2px 12px rgba(184, 134, 11, 0.6)) 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.5))
            drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
}

.rocket-cursor.cursor-boost .rocket-trail {
    animation-duration: 0.35s;
    opacity: 1;
}

.rocket-cursor.cursor-nav .rocket-trail {
    width: 40%;
    height: 200%;
    bottom: calc(-150% - 6px);
    opacity: 1;
    filter: blur(8px);
    animation-duration: 0.8s;
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 107, 53, 0.5);
}

.rocket-cursor.cursor-nav {
    filter: drop-shadow(0 2px 15px rgba(184, 134, 11, 0.7)) 
            drop-shadow(0 0 35px rgba(255, 215, 0, 0.6))
            drop-shadow(0 0 30px rgba(255, 107, 53, 0.7));
}

/* Container para rastros persistentes */
.rocket-trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Partículas de rastro persistente */
.trail-particle {
    position: absolute;
    width: 24px;
    height: 36px;
    transform: translate(-50%, -50%) rotate(var(--particle-rotation));
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 2s ease-out, transform 2s ease-out;
}

.trail-particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 215, 0, 0.8) 20%, 
        rgba(255, 165, 0, 0.6) 50%, 
        rgba(255, 107, 53, 0.4) 80%, 
        transparent 100%);
    border-radius: 50% 50% 30% 30%;
    filter: blur(4px);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.5),
        0 0 25px rgba(255, 107, 53, 0.4);
}

.trail-particle::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 120%;
    bottom: -80%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.6) 0%, 
        rgba(255, 107, 53, 0.4) 50%, 
        transparent 100%);
    filter: blur(6px);
    border-radius: 50%;
}

@keyframes flamePulse {
    from {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.85;
    }
    to {
        transform: translateX(-50%) scale(1.15);
        opacity: 1;
    }
}

@keyframes trailFade {
    from {
        opacity: 0.95;
        transform: translateX(-50%) scaleY(1);
    }
    to {
        opacity: 0.35;
        transform: translateX(-50%) scaleY(0.75);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.1);
    }
}

@keyframes rocketGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.4)) 
                drop-shadow(0 0 15px rgba(255, 215, 0, 0.2));
        box-shadow: 
            0 2px 8px rgba(184, 134, 11, 0.4),
            0 0 15px rgba(255, 215, 0, 0.3),
            0 8px 25px rgba(255, 107, 53, 0.5),
            inset 0 -4px 10px rgba(0, 0, 0, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
    50% {
        filter: drop-shadow(0 2px 12px rgba(184, 134, 11, 0.5)) 
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
        box-shadow: 
            0 2px 12px rgba(184, 134, 11, 0.5),
            0 0 20px rgba(255, 215, 0, 0.4),
            0 10px 30px rgba(255, 107, 53, 0.6),
            inset 0 -4px 10px rgba(0, 0, 0, 0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.25);
    }
}

/* ============================================
   REDES SOCIAIS FLUTUANTES
   ============================================ */
.social-float {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeInSocial 0.8s ease-out 1s forwards;
}

@keyframes fadeInSocial {
    to {
        opacity: 1;
    }
}

.social-float-item {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.social-float-item:hover::before {
    left: 100%;
}

.social-float-item svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-float-item:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6), 0 4px 12px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
}

.social-float-item:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.social-float-item:active {
    transform: translateY(-3px) scale(1.05);
}

/* Animação de pulsação para o primeiro item (WhatsApp) */
.social-float-item:last-child {
    animation: socialPulse 2s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 0 4px 12px rgba(255, 107, 53, 0.5);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .social-float {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .social-float-item {
        width: 50px;
        height: 50px;
    }
    
    .social-float-item svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .social-float {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .social-float-item {
        width: 48px;
        height: 48px;
    }
    
    .social-float-item svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   SEÇÕES ADICIONAIS
   ============================================ */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(100, 100, 100, 0.3);
    color: rgba(220, 220, 220, 0.95);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.section-tag:hover {
    background: rgba(120, 120, 120, 0.4);
    border-color: rgba(180, 180, 180, 0.5);
    color: rgba(255, 255, 255, 1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.about-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.service-card > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    display: none;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 2rem;
}

.process-step:nth-child(odd) .step-content {
    margin-left: 2rem;
}

.process-step:nth-child(even) .step-content {
    margin-right: 2rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.portfolio-card:nth-child(1) { animation-delay: 0.1s; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; }

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-base);
}

.portfolio-link:hover {
    transform: scale(1.1) rotate(90deg);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.portfolio-info > p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.portfolio-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.portfolio-stats span {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFD700;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 215, 0, 0.1);
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2),
                0 0 0 1px rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.2),
                inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: var(--transition-base);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 50%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 50%;
    z-index: 1;
}

.team-card:hover .team-image {
    border-color: rgba(255, 215, 0, 0.7);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4),
                0 0 0 1px rgba(255, 215, 0, 0.5),
                inset 0 0 25px rgba(255, 215, 0, 0.2);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.team-role {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-function {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-style: italic;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    text-decoration: none;
}

.team-social-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border-color: transparent;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    position: relative;
}

.testimonials-section .section-header {
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: var(--transition-base);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.98) 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 0.75rem;
}

.footer-logo-image {
    width: auto;
    height: 60px;
    max-width: 120px;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(135deg, #C9A961 0%, #B87333 25%, #8B6F47 50%, #6B5D4F 75%, #4A4A4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: block;
    animation: gradientShift 4s ease-in-out infinite;
    background-size: 300% 300%;
    text-shadow: 0 0 30px rgba(184, 115, 51, 0.4);
    transition: var(--transition-base);
    line-height: 1;
    white-space: nowrap;
    margin: 0 auto 1.5rem auto;
    text-align: center;
    width: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .future-cta-title {
        font-size: 1.75rem;
        white-space: normal;
        word-break: break-word;
        padding: 0 1rem;
    }
}

.footer-logo-text:hover {
    animation-duration: 2s;
    filter: brightness(1.15) contrast(1.1);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-logo-text::before {
    content: 'Agend Marketing';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.8) 0%, rgba(107, 93, 79, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(8px);
    z-index: -1;
    opacity: 0.7;
    animation: glowMove 3s ease-in-out infinite;
}

.footer-logo-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(184, 115, 51, 0.4) 0%, rgba(107, 93, 79, 0.2) 50%, transparent 70%);
    z-index: -2;
    animation: glowPulse 2.5s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes glowMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.5;
    }
    25% {
        transform: translateX(2px) translateY(-2px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(0) translateY(0);
        opacity: 0.7;
    }
    75% {
        transform: translateX(-2px) translateY(2px);
        opacity: 0.8;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Versão Mobile - Mantém efeito mais simples */
@media (max-width: 768px) {
    .footer-logo-text {
        animation: gradientShift 3s ease-in-out infinite;
        background-size: 200% 200%;
    }
    
    .footer-logo-text::before {
        display: none;
    }
    
    .footer-logo-text::after {
        width: 110%;
        height: 130%;
        animation: glowPulse 2s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 1.15rem;
        animation: gradientShift 3s ease-in-out infinite;
    }
    
    .footer-logo-text::after {
        width: 105%;
        height: 120%;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 auto 2rem auto;
    font-size: 0.85rem;
    text-align: center;
    max-width: 500px;
    padding: 0 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    color: #FFD700;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-contact a:hover {
    color: #FFD700;
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    /* Floating Cards - Esconder em mobile para evitar problemas de layout */
    .floating-card {
        display: none;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-tag {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Sections Padding */
    .about-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .team-section,
    .impact-section {
        padding: 4rem 0;
    }
    
    /* Video Wrapper */
    .video-wrapper-simple {
        padding: 2rem 1rem;
    }
    
    .video-container-simple {
        border-radius: 8px;
    }
    
    .video-watermark-cover {
        width: 100px;
        height: 35px;
        border-radius: 6px 0 0 0;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-icon {
        margin-bottom: 1rem;
    }
    
    .about-card h3 {
        font-size: 1.25rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .service-features {
        margin-top: 1rem;
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .team-card {
        padding: 2rem 1.5rem;
    }
    
    .team-image {
        width: 130px;
        height: 130px;
        margin-bottom: 1.25rem;
    }
    
    .team-info h3 {
        font-size: 1.25rem;
    }
    
    .team-role {
        font-size: 0.95rem;
    }
    
    .team-function {
        font-size: 0.85rem;
    }
    
    /* Process Section */
    .process-timeline {
        padding: 0 1rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 70px;
        margin-bottom: 3rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
        position: absolute;
        left: 0;
    }
    
    .step-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    /* Testimonials Section */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    /* Impact Section */
    .impact-section {
        padding: 4rem 1rem;
    }
    
    .impact-content {
        text-align: center;
    }
    
    .impact-title {
        font-size: 2rem;
    }
    
    .impact-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Services Marquee */
    .services-marquee {
        padding: 1.5rem 0;
    }
    
    .marquee-item {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
        letter-spacing: 0.1em;
    }
    
    .marquee-track {
        gap: 1.5rem;
    }
    
    /* Hero Section Mobile */
    .hero {
        background-attachment: scroll;
    }
    
    .hero::before {
        background-attachment: scroll;
    }
    
    .hero-panel {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1.2rem;
    }
    
    /* Footer - Aumentado em 20% e Centralizado */
    .footer {
        padding: 4.8rem 0 2.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding: 0 1.2rem;
        margin-bottom: 2.4rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo-image {
        height: 72px !important;
    }
    
    .footer-logo-text {
        font-size: 1.68rem;
    }
    
    .footer-description {
        font-size: 1.02rem;
        margin-bottom: 2.4rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1.8rem;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-links a {
        font-size: 1.14rem;
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.9rem;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact li {
        font-size: 1.14rem;
        margin-bottom: 1.2rem;
        gap: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-link {
        width: 48px;
        height: 48px;
    }
    
    .footer-social-link svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        padding: 2.4rem 1.2rem 0;
    }
    
    .footer-copyright p {
        font-size: 1.05rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 1.05rem;
        gap: 1.2rem;
    }
    
    .footer-legal a {
        font-size: 1.05rem;
    }
}

/* Responsive - Future CTA Section */
@media (max-width: 768px) {
    .future-cta-section {
        padding: 3.5rem 0 2rem 0;
        padding-bottom: 2rem;
    }
    
    .future-cta-content {
        padding: 0 1.5rem;
    }
    
    .future-cta-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 1.2rem;
    }
    
    .future-cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .future-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .future-cta-section {
        padding: 3rem 0 1.5rem 0;
        padding-bottom: 1.5rem;
    }
    
    .future-cta-content {
        padding: 0 1rem;
    }
    
    .future-cta-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .future-cta-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .future-cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Aumentar logo e menu toggle em 20% no mobile pequeno */
    .logo-image {
        height: 54px !important;
    }
    
    .menu-toggle {
        gap: 6px;
        padding: 6px;
    }
    
    .menu-toggle span {
        width: 30px;
        height: 3.6px;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    /* Video Wrapper */
    .video-wrapper-simple {
        padding: 1.5rem 0.75rem;
    }
    
    .video-container-simple {
        border-radius: 8px;
    }
    
    .video-watermark-cover {
        width: 80px;
        height: 30px;
        border-radius: 4px 0 0 0;
    }
    
    .video-watermark-cover::before {
        border-radius: 4px 0 0 0;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-tag {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Sections Padding */
    .about-section,
    .services-section,
    .process-section,
    .testimonials-section,
    .team-section,
    .impact-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* About Section */
    .about-card {
        padding: 1.5rem 1rem;
    }
    
    .about-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card > p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
    }
    
    /* Team Section */
    .team-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .team-card {
        padding: 1.5rem 1rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .team-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .team-role {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .team-function {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .team-social-link {
        width: 36px;
        height: 36px;
    }
    
    .team-social-link svg {
        width: 18px;
        height: 18px;
    }
    
    /* Process Section */
    .process-step {
        padding-left: 55px;
        margin-bottom: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Section */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-rating svg {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    /* Impact Section */
    .impact-section {
        padding: 3rem 1rem;
    }
    
    .impact-title {
        font-size: 1.75rem;
    }
    
    .impact-description {
        font-size: 0.95rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-image {
        width: 48px;
        height: 48px;
    }
    
    .footer-logo-text {
        font-size: 1.38rem;
    }
    
    .footer-title {
        font-size: 1.32rem;
        margin-bottom: 1.8rem;
        text-align: center;
    }
    
    .footer-description {
        font-size: 1.05rem;
        margin-bottom: 2.4rem;
    }
    
    .footer-links {
        align-items: center;
        text-align: center;
    }
    
    .footer-links a {
        font-size: 1.05rem;
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 0.9rem;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact li {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
        gap: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social-link {
        width: 43.2px;
        height: 43.2px;
    }
    
    .footer-social-link svg {
        width: 21.6px;
        height: 21.6px;
    }
    
    .footer-copyright p {
        font-size: 0.96rem;
    }
    
    .footer-legal {
        font-size: 0.96rem;
        gap: 1.2rem;
    }
    
    .footer-legal a {
        font-size: 0.96rem;
    }
    
    /* Services Marquee Mobile */
    .services-marquee {
        padding: 1.25rem 0;
    }
    
    .marquee-item {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
        letter-spacing: 0.08em;
    }
    
    .marquee-track {
        gap: 1rem;
    }
    
    /* Hero Section Mobile Small */
    .hero-panel {
        padding: 1.5rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-logo-mark {
        width: 180px;
        height: 180px;
    }
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-page {
    min-height: 100vh;
    background: var(--color-dark);
}

.blog-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(40, 40, 40, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/blog-hero.png') center/cover;
    opacity: 0.4;
    z-index: 0;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(60, 60, 60, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.blog-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.blog-content {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
}

.blog-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    overflow: hidden;
}

.blog-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.blog-icon-wrapper svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    animation: floatIcon 3s ease-in-out infinite;
    transition: var(--transition-base);
}

.blog-card:hover .blog-icon-wrapper svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(100, 100, 100, 0.3);
    color: rgba(220, 220, 220, 0.95);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
}

.blog-category:hover {
    background: rgba(120, 120, 120, 0.4);
    border-color: rgba(180, 180, 180, 0.5);
    color: rgba(255, 255, 255, 1);
}

.blog-card h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.9);
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more:hover {
    color: var(--color-gold);
    gap: 0.5rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Responsive */
@media (max-width: 768px) {
    .blog-page {
        padding-top: 80px;
    }
    
    .blog-hero {
        padding: 4rem 0 2.5rem;
        min-height: 300px;
    }
    
    .blog-hero::before {
        background-attachment: scroll;
        background-position: center 15%;
    }
    
    .blog-hero-content {
        padding: 0 1rem;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content p {
        font-size: 1rem;
    }
    
    .blog-content {
        padding: 2.5rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card h2 {
        font-size: 1.2rem;
    }
    
    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .blog-cta {
        padding: 0 1rem;
    }
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */

.blog-article-page {
    min-height: 100vh;
    background: var(--color-dark);
    padding-top: 100px;
}

.blog-article {
    padding: 4rem 0;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.blog-back-link:hover {
    color: rgba(255, 215, 0, 0.9);
    gap: 0.75rem;
}

.blog-article-category {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(100, 100, 100, 0.3);
    color: rgba(220, 220, 220, 0.95);
    border: 1px solid rgba(150, 150, 150, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-article-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.blog-article-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    height: 400px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-article-icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-article-body .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-article-body h2:first-of-type {
    margin-top: 0;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
}

.blog-article-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    text-align: center;
}

.blog-article-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.blog-article-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Blog Article Responsive */
@media (max-width: 768px) {
    .blog-article-page {
        padding-top: 80px;
    }
    
    .blog-article {
        padding: 2rem 0;
    }
    
    .blog-article-header {
        padding: 0 1rem;
    }
    
    .blog-article-header h1 {
        font-size: 1.75rem;
    }
    
    .blog-article-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .blog-article-image {
        height: 200px;
        margin: 0 1rem 2rem;
        border-radius: var(--radius-lg);
    }
    
    .blog-article-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .blog-article-content {
        padding: 0 1rem;
    }
    
    .blog-article-body {
        font-size: 0.95rem;
    }
    
    .blog-article-body .lead {
        font-size: 1.05rem;
    }
    
    .blog-article-body h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }
    
    .blog-article-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .blog-article-cta h3 {
        font-size: 1.4rem;
    }
    
    .blog-article-cta p {
        font-size: 0.95rem;
    }
    
    .blog-back-link {
        font-size: 0.85rem;
    }
}

/* ============================================
   CONTACT PAGE & FORM
   ============================================ */

.contact-page {
    min-height: 100vh;
    background: var(--color-dark);
    padding-top: 100px;
}

.contact-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(40, 40, 40, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/contato-hero.png') center center/cover;
    background-position: center 20%;
    background-attachment: fixed;
    opacity: 0.5;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(60, 60, 60, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(30, 30, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-cta-wrapper {
    position: relative;
    z-index: 1;
}

.contact-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: var(--radius-2xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.1);
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(18, 140, 126, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::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-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(18, 140, 126, 0.4);
    background: linear-gradient(135deg, #2FE576 0%, #25D366 100%);
}

.btn-whatsapp:active {
    transform: translateY(0);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-form-section {
    padding: 4rem 0;
}

.project-form {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.form-section-title svg {
    width: 28px;
    height: 28px;
    stroke: rgba(255, 215, 0, 0.8);
}

.form-section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.project-form .form-group {
    display: flex;
    flex-direction: column;
}

.project-form .form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
}

.required {
    color: rgba(255, 107, 53, 0.9);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-base);
    width: 100%;
}

.form-group select {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    color: var(--color-white);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-base);
    width: 100%;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group select:focus {
    background: #1a1a1a;
}

.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: rgba(255, 107, 53, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.checkbox-group {
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
    margin-bottom: 0;
}

.checkbox-group label:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.checkbox-group input[type="checkbox"]:checked + label {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.checkbox-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    line-height: 1;
}

.checkbox-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkbox-text strong {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}

.checkbox-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-submit-section {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-submit {
    min-width: 250px;
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.form-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-page {
        padding-top: 80px;
    }
    
    .contact-hero {
        padding: 3rem 0 2rem;
        min-height: 300px;
    }
    
    .contact-cta-section {
        padding: 3rem 0;
    }
    
    .contact-cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .contact-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .contact-cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-whatsapp {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .contact-hero::before {
        background-attachment: scroll;
        background-position: center 15%;
    }
    
    .contact-hero-content {
        padding: 0 1rem;
    }
    
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero-content p {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 0;
    }
    
    .project-form {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-xl);
        margin: 0 1rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .form-section-title {
        font-size: 1.25rem;
        flex-wrap: wrap;
    }
    
    .form-section-title svg {
        width: 24px;
        height: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group label {
        padding: 1rem;
    }
    
    .checkbox-icon {
        font-size: 1.5rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .form-submit-section {
        padding-top: 1.5rem;
    }
    
    .btn-submit {
        min-width: 100%;
        width: 100%;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
    min-height: 100vh;
    background: var(--color-dark);
    padding-top: 100px;
}

.about-hero {
    padding: 4rem 0 3rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Sobre-hero.png') center center/cover;
    background-position: center 20%;
    background-attachment: fixed;
    opacity: 0.5;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

.about-hero::after {
    display: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.about-hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-weight: 400;
}

.about-story {
    padding: 5rem 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
}

.story-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.story-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

.about-mission {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.mission-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.about-difference {
    padding: 5rem 0;
}

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

.difference-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-base);
}

.difference-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.difference-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.9);
}

.difference-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.difference-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.about-commitment {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.commitment-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.commitment-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.commitment-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.commitment-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
}

.about-youth {
    padding: 5rem 0;
}

.youth-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.youth-icon-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.youth-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.youth-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.youth-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.about-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(101, 67, 33, 0.6) 50%, rgba(0, 0, 0, 0.8) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.about-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* About Page Responsive */
@media (max-width: 968px) {
    .about-story-content,
    .commitment-content,
    .youth-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 80px;
    }
    
    .about-hero {
        padding: 3rem 0 2rem;
        min-height: 300px;
    }
    
    .about-hero::before {
        background-attachment: scroll;
        background-position: center 15%;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-lead {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .video-wrapper-simple {
        padding: 2rem 1rem;
    }
    
    .video-container-simple {
        border-radius: 8px;
    }
    
    .video-watermark-cover {
        width: 100px;
        height: 35px;
        border-radius: 6px 0 0 0;
    }
    
    .about-story,
    .about-mission,
    .about-difference,
    .about-commitment,
    .about-youth,
    .about-cta {
        padding: 3rem 0;
    }
    
    .about-story-text h2,
    .commitment-text h2,
    .youth-text h2,
    .about-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .about-story-text p,
    .commitment-text p,
    .youth-text p {
        font-size: 1rem;
    }
    
    .story-card,
    .mission-card,
    .difference-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .youth-icon-wrapper {
        padding: 2rem;
    }
    
    .youth-icon-wrapper svg {
        width: 80px;
        height: 80px;
    }
    
    .about-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .about-cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .benefit-item {
        padding: 0.875rem;
    }
    
    .benefit-item span {
        font-size: 0.9rem;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page {
    min-height: 100vh;
    background: var(--color-dark);
    padding-top: 80px;
}

.services-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(40, 40, 40, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
}

.services-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Badge Black Friday Services */
.services-promo-banner {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
}

.black-friday-badge-services {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.black-friday-badge-services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
}

.black-friday-badge-services > span {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 5, 5, 0.98) 50%, rgba(0, 0, 0, 0.98) 100%);
    border: 1.5px solid rgba(255, 215, 0, 0.5);
    border-radius: 14px;
    padding: 0.75rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.1);
    animation: blackFridayPulseServices 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

.black-friday-badge-services > span::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #FFD700, #FF6B35);
    background-size: 200% 200%;
    border-radius: 12px;
    z-index: -1;
    animation: blackFridayRotateServices 3s linear infinite;
    opacity: 0.7;
    will-change: background-position;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

@keyframes blackFridayPulseServices {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 215, 0, 0.15);
    }
}

@keyframes blackFridayRotateServices {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.black-friday-badge-services .bf-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.95);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    animation: blackFridayShimmerServices 2.5s ease-in-out infinite;
    will-change: opacity, text-shadow;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

.black-friday-badge-services .bf-off {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 215, 0, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

@keyframes blackFridayShimmerServices {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        opacity: 0.95;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 18px rgba(255, 215, 0, 0.4);
    }
}

/* Promoções Destacadas Services */
.services-featured-promos {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .promo-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .promo-badge {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .promo-content {
        width: 100%;
        align-items: center;
    }
    
    .promo-content h3 {
        font-size: 1.1rem;
    }
    
    .promo-price {
        font-size: 0.9rem;
    }
    
    .promo-whatsapp-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 215, 0, 0.03);
}

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

.promo-card:hover::before {
    left: 100%;
}

.promo-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 215, 0, 0.35);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(15, 15, 15, 0.8));
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), inset 0 0 25px rgba(255, 215, 0, 0.05);
}

.promo-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 107, 53, 0.85));
    color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.promo-discount {
    font-size: 0.85rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.95);
    margin: 0;
    letter-spacing: 0.3px;
}

.promo-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.2px;
}

.promo-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.promo-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2FE576 0%, #25D366 100%);
}

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

.services-plans-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.services-plans-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-plans-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.services-plans-header .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
}

.plan-card.plan-featured {
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    color: var(--color-dark);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.plan-icon svg {
    color: var(--color-gold);
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.plan-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
}

.plan-features {
    flex: 1;
    margin-bottom: 2rem;
}

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

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--color-gold);
}

.plan-footer {
    margin-top: auto;
}

.btn-plan {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    border: none;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.btn-plan-featured {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    border: none;
    color: var(--color-dark);
    font-weight: 700;
}

.btn-plan-featured:hover {
    background: linear-gradient(135deg, #FFE135 0%, #FFB84D 50%, #FF7A4A 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.services-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(30, 30, 30, 0.95) 100%);
    text-align: center;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.services-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-cta-buttons .btn {
    min-width: 250px;
}

/* Services Page Responsive */
@media (max-width: 968px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta-buttons {
        gap: 0.875rem;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 80px;
    }
    
    .services-hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .services-hero-content {
        padding: 0 1rem;
    }
    
    .services-hero-content .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .services-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin: 1rem 0 0.75rem;
    }
    
    .services-hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .services-plans-section {
        padding: 3rem 0;
    }
    
    .services-plans-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .services-plans-header .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .services-plans-header .section-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .plan-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .plan-card:hover {
        transform: translateY(-3px);
    }
    
    .plan-badge {
        right: 1.5rem;
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: -10px;
    }
    
    .plan-header {
        margin-bottom: 1.5rem;
    }
    
    .plan-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .plan-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .plan-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .plan-price {
        margin-bottom: 0.75rem;
    }
    
    .price-currency {
        font-size: 1.25rem;
        margin-top: 0.4rem;
    }
    
    .price-value {
        font-size: 2.75rem;
    }
    
    .price-period {
        font-size: 1.25rem;
        margin-top: 0.4rem;
    }
    
    .plan-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .plan-features {
        margin-bottom: 1.5rem;
    }
    
    .features-list {
        gap: 0;
    }
    
    .features-list li {
        font-size: 0.9rem;
        padding: 0.65rem 0;
        line-height: 1.4;
    }
    
    .features-list li svg {
        width: 18px;
        height: 18px;
        margin-top: 0.1rem;
    }
    
    .btn-plan {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .services-cta-section {
        padding: 3rem 0;
    }
    
    .services-cta-content {
        padding: 0 1rem;
    }
    
    .services-cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .services-cta-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .services-cta-buttons .btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 0 2rem;
    }
    
    .services-hero-content h1 {
        font-size: 1.5rem;
    }
    
    .services-hero-content p {
        font-size: 0.9rem;
    }
    
    .services-promo-banner {
        padding: 1rem 0;
    }
    
    .black-friday-badge-services > span {
        padding: 0.5rem 1.2rem;
    }
    
    .black-friday-badge-services .bf-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .black-friday-badge-services .bf-off {
        font-size: 0.8rem;
    }
    
    .services-featured-promos {
        padding: 1.5rem 0;
    }
    
    .promos-grid {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .promo-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .promo-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
        align-self: center;
        margin-bottom: 0;
    }
    
    .promo-content {
        width: 100%;
        align-items: center;
    }
    
    .promo-content h3 {
        font-size: 0.95rem;
    }
    
    .promo-price {
        font-size: 0.8rem;
    }
    
    .promo-whatsapp-btn {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .promo-whatsapp-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .services-promo-banner {
        padding: 1rem 0;
    }
    
    .black-friday-badge-services > span {
        padding: 0.5rem 1.2rem;
    }
    
    .black-friday-badge-services .bf-text {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
    
    .black-friday-badge-services .bf-off {
        font-size: 0.8rem;
    }
    
    .services-featured-promos {
        padding: 1.5rem 0;
    }
    
    .promos-grid {
        gap: 1rem;
    }
    
    .promo-card {
        padding: 1.25rem;
    }
    
    .promo-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
    }
    
    .promo-content h3 {
        font-size: 1rem;
    }
    
    .promo-price {
        font-size: 0.85rem;
    }
    
    .promo-whatsapp-btn {
        font-size: 0.7rem;
        padding: 0.45rem 0.9rem;
        margin-top: 0.5rem;
    }
    
    .promo-whatsapp-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .contact-cta-section {
        padding: 2rem 0;
    }
    
    .contact-cta-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .contact-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-whatsapp {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-plans-section {
        padding: 2.5rem 0;
    }
    
    .services-plans-header {
        margin-bottom: 2rem;
    }
    
    .services-plans-header .section-title {
        font-size: 1.5rem;
    }
    
    .services-plans-header .section-description {
        font-size: 0.9rem;
    }
    
    .plans-grid {
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .plan-card {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-xl);
    }
    
    .plan-badge {
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
        top: -10px;
    }
    
    .plan-header {
        margin-bottom: 1.25rem;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .plan-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .plan-name {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-price {
        margin-bottom: 0.5rem;
    }
    
    .price-currency {
        font-size: 1.1rem;
        margin-top: 0.3rem;
    }
    
    .price-value {
        font-size: 2.25rem;
    }
    
    .price-period {
        font-size: 1.1rem;
        margin-top: 0.3rem;
    }
    
    .plan-description {
        font-size: 0.85rem;
    }
    
    .plan-features {
        margin-bottom: 1.25rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .features-list li svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-plan {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .services-cta-section {
        padding: 2.5rem 0;
    }
    
    .services-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .services-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .services-cta-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   MISSÃO DIGITAL - GAME SECTION
   ============================================ */
.mission-game-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.mission-game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.mission-game-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.game-area {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
    cursor: crosshair;
    touch-action: none;
}

.rocket-player {
    position: absolute;
    width: 40px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.1s ease-out;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.rocket-player svg {
    width: 100%;
    height: 100%;
    animation: rocketFloat 2s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.targets-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.game-target {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    animation: targetPulse 2s ease-in-out infinite, targetFloat 3s ease-in-out infinite;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.game-target:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.game-target.collected {
    animation: targetCollected 0.5s ease-out forwards;
    pointer-events: none;
}

@keyframes targetPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    }
}

@keyframes targetFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes targetCollected {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.game-instructions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    z-index: 15;
    pointer-events: none;
}

.mission-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
}

.mission-cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mission-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.mission-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .mission-game-section {
        padding: 4rem 0;
    }
    
    .mission-stats {
        gap: 1rem;
    }
    
    .stat-box {
        min-width: 150px;
        padding: 1.25rem 1.5rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .game-area {
        height: 300px;
    }
    
    .rocket-player {
        width: 35px;
        height: 50px;
    }
    
    .game-target {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .mission-cta {
        padding: 1.5rem;
    }
    
    .mission-cta-text {
        font-size: 1rem;
    }
    
    .mission-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .game-area {
        height: 250px;
    }
    
    .rocket-player {
        width: 30px;
        height: 45px;
    }
    
    .game-target {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .stat-box {
        min-width: 120px;
        padding: 1rem 1.25rem;
    }
}

/* ============================================
   GAME IMPROVEMENTS - TUTORIAL, PROGRESS, ACHIEVEMENTS
   ============================================ */

/* Tutorial Modal */
.game-tutorial {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.game-tutorial.hidden {
    opacity: 0;
    pointer-events: none;
}

.tutorial-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
}

.tutorial-content h3 {
    font-size: 1.75rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tutorial-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.tutorial-content li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.tutorial-content li:last-child {
    border-bottom: none;
}

.tutorial-content li::before {
    content: '✓ ';
    color: #FFD700;
    font-weight: bold;
    margin-right: 0.5rem;
}

.tutorial-close-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    border: none;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.tutorial-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

/* Progress Bar */
.progress-container {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

.progress-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Achievements Display */
.achievements-display {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    min-height: 60px;
}

.achievement-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: achievementUnlock 0.6s ease-out;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.achievement-badge.new {
    animation: achievementUnlock 0.6s ease-out;
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

@keyframes achievementUnlock {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

/* Floating Text */
.floating-text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 20;
}

.floating-text {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    animation: floatText 1s ease-out forwards;
    pointer-events: none;
    white-space: nowrap;
}

.floating-text.level-up {
    font-size: 2rem;
    color: #FF6B35;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}

@keyframes floatText {
    0% {
        opacity: 1;
        transform: translateY(0) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

/* Particles */
.particles-container-game {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 8;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #FFD700 0%, transparent 70%);
    border-radius: 50%;
    animation: particleExplode 1s ease-out forwards;
    pointer-events: none;
}

@keyframes particleExplode {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(var(--tx), var(--ty));
    }
}

/* Motivational Messages */
.motivational-message {
    text-align: center;
    padding: 1rem;
    margin: 1.5rem 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motivational-message.active {
    animation: messageSlideIn 0.5s ease-out;
}

.motivational-message p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
    padding: 1rem 2rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How to Play Button */
.how-to-play-btn {
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-to-play-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Rocket Pulse on Collect */
.rocket-player.collecting {
    animation: rocketPulse 0.3s ease-out;
}

@keyframes rocketPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
    }
}

/* Target with Label */
.game-target {
    position: relative;
}

.target-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    pointer-events: none;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .tutorial-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .tutorial-content h3 {
        font-size: 1.5rem;
    }
    
    .tutorial-content li {
        font-size: 0.9rem;
    }
    
    .achievement-badge {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .floating-text {
        font-size: 1.25rem;
    }
    
    .floating-text.level-up {
        font-size: 1.5rem;
    }
    
    .motivational-message p {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .achievement-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .target-label {
        font-size: 0.6rem;
        bottom: -20px;
    }
}

/* ============================================
   JOURNEY SECTION - EMPRESA DO ZERO AO SUCESSO
   ============================================ */
.journey-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Company Stats */
.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.journey-instruction-text {
    display: block;
    text-align: center;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.journey-instruction-text p {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    margin: 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.journey-phase {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0.4;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    position: relative;
}

.journey-phase.active {
    opacity: 1;
    transform: translateX(0);
}

.journey-phase::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -4rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.1) 50%, transparent 100%);
    z-index: 0;
}

.journey-phase:last-child::before {
    display: none;
}

.phase-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 107, 53, 0.2) 100%);
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
}

.journey-phase.active .phase-marker {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4) 0%, rgba(255, 107, 53, 0.4) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    transform: scale(1.1);
    animation: phasePulse 2s ease-in-out infinite;
}

@keyframes phasePulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.6);
    }
}

.phase-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.phase-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Orbitron', sans-serif;
}

.phase-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.journey-phase.active .phase-content {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.phase-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phase-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.phase-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.journey-phase.active .service-badge {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.phase-message {
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid rgba(255, 215, 0, 0.5);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.phase-message p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Progress Bar */
.journey-progress-container {
    margin: 3rem 0;
}

.journey-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.journey-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    width: 20%;
    transition: width 0.8s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    border-radius: 10px;
}

.journey-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.journey-btn {
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.journey-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.journey-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.journey-btn.journey-auto {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    border-color: transparent;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.journey-btn.journey-auto:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Quote */
.journey-quote {
    text-align: center;
    padding: 2.5rem;
    margin: 3rem 0;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.journey-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 1.5rem;
    margin-top: 3rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.5);
    color: rgba(255, 215, 0, 0.9);
}

    .cta-btn-secondary:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.7);
        transform: translateY(-2px);
    }

/* ============================================
   INTERACTIVE ROCKET JOURNEY AREA
   ============================================ */
.rocket-journey-area {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: crosshair;
}

.journey-path {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.path-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 215, 0, 0.5) 50%, 
        rgba(255, 107, 53, 0.3) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    overflow: hidden;
}

.path-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transition: width 0.2s ease-out;
}

.path-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transition: width 0.2s ease-out;
}

.path-checkpoints {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.checkpoint {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.checkpoint > * {
    order: 1;
}

.checkpoint-level {
    order: 0 !important;
}

.checkpoint.unlocked {
    opacity: 1;
}

.checkpoint.active {
    opacity: 1;
    transform: scale(1.2);
}

.checkpoint-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.5s ease;
    position: relative;
}

.checkpoint.unlocked .checkpoint-marker {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.checkpoint.active .checkpoint-marker {
    background: linear-gradient(135deg, #FFD700 0%, #FF6B35 100%);
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: checkpointPulse 1.5s ease-in-out infinite;
}

.checkpoint.active .checkpoint-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    animation: checkpointRipple 1.5s ease-out infinite;
}

@keyframes checkpointPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes checkpointRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.checkpoint-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: all 0.5s ease;
}

.checkpoint-level {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
    order: -1;
}

.checkpoint.unlocked .checkpoint-label {
    color: rgba(255, 215, 0, 0.9);
}

.checkpoint.unlocked .checkpoint-level {
    color: rgba(255, 255, 255, 1);
}

.checkpoint.active .checkpoint-label {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.checkpoint.active .checkpoint-level {
    color: rgba(255, 255, 255, 1);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.rocket-journey-player {
    position: absolute;
    width: 50px;
    height: 70px;
    left: 0%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: left 0.2s ease-out;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.rocket-journey-player svg {
    width: 100%;
    height: 100%;
    animation: rocketJourneyFloat 2s ease-in-out infinite;
}

@keyframes rocketJourneyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.rocket-trail {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.6) 50%, rgba(255, 107, 53, 0.4) 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: width 0.2s ease-out;
    z-index: 1;
    pointer-events: none;
}

.journey-instruction {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    z-index: 15;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.rocket-journey-area:hover .journey-instruction {
    opacity: 1;
}

/* Responsive Rocket Journey */
@media (max-width: 768px) {
    .rocket-journey-area {
        height: 150px;
        padding: 1.5rem;
    }
    
    .rocket-journey-player {
        width: 40px;
        height: 55px;
    }
    
    .checkpoint-marker {
        width: 16px;
        height: 16px;
    }
    
    .checkpoint-label {
        font-size: 0.65rem;
    }
    
    .checkpoint-level {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .journey-instruction {
        font-size: 0.75rem;
        bottom: 0.5rem;
    }
    
    .journey-instruction-text {
        margin: 1.25rem 0;
    }
    
    .journey-instruction-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .rocket-journey-area {
        height: 120px;
        padding: 1rem;
    }
    
    .rocket-journey-player {
        width: 35px;
        height: 50px;
    }
    
    .checkpoint-label {
        font-size: 0.6rem;
    }
    
    .checkpoint-level {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .journey-instruction-text {
        margin: 1rem 0;
    }
    
    .journey-instruction-text p {
        font-size: 0.95rem;
    }
}

/* ============================================
   LEGAL PAGES - POLÍTICA DE PRIVACIDADE E TERMOS
   ============================================ */
.legal-page {
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    padding-top: 100px;
}

.legal-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(40, 40, 40, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.legal-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-lead {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.legal-content {
    padding: 4rem 0;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
}

.intro-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.legal-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFD700;
    margin: 2.5rem 0 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.legal-text h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.legal-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
}

.legal-text ul li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.legal-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.legal-text ul li strong {
    color: rgba(255, 215, 0, 0.9);
    font-weight: 600;
}

.legal-consent {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 1rem;
    text-align: center;
}

.legal-consent p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

.legal-consent strong {
    color: #FFD700;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding-top: 80px;
    }
    
    .legal-hero {
        padding: 3rem 0 2rem;
    }
    
    .legal-hero-content h1 {
        font-size: 2rem;
    }
    
    .legal-hero-lead {
        font-size: 0.9rem;
    }
    
    .legal-content {
        padding: 2.5rem 0;
    }
    
    .legal-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }
    
    .legal-text p,
    .legal-text ul li {
        font-size: 0.95rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .legal-consent {
        padding: 1.5rem;
    }
    
    .legal-consent p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .legal-text {
        padding: 1.5rem 1rem;
    }
    
    .legal-text h2 {
        font-size: 1.25rem;
    }
    
    .legal-text ul {
        padding-left: 1.5rem;
    }
    
    .legal-text ul li {
        padding-left: 1.25rem;
        font-size: 0.9rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .journey-section {
        padding: 4rem 0;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .journey-phase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .journey-phase::before {
        display: none;
    }
    
    .phase-marker {
        width: 60px;
        height: 60px;
    }
    
    .phase-icon {
        font-size: 1.5rem;
    }
    
    .phase-content {
        padding: 1.5rem;
    }
    
    .phase-title {
        font-size: 1.5rem;
    }
    
    .phase-description {
        font-size: 1rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
    
    .journey-controls {
        flex-direction: column;
    }
    
    .journey-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .journey-instruction-text {
        margin: 1rem 0;
    }
    
    .journey-instruction-text p {
        font-size: 0.95rem;
    }
    
    .checkpoint-level {
        font-size: 0.55rem;
        margin-top: 0.15rem;
    }
    
    .phase-marker {
        width: 50px;
        height: 50px;
    }
    
    .phase-icon {
        font-size: 1.25rem;
    }
    
    .phase-number {
        font-size: 0.65rem;
    }
}

