/* ========================================
   RESET & VARIABLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --color-red: #DB3F43;
    --color-red-dark: #C02D31;
    --color-red-light: #E55A5E;
    --color-black: #0A0A0A;
    --color-white: #FFFFFF;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E5E5E5;
    --color-gray-300: #D4D4D4;
    --color-gray-600: #525252;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    /* Dourado Premium */
    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-gold-dark: #B8941A;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, rgba(219, 63, 67, 0.95) 0%, rgba(192, 45, 49, 0.98) 100%);
    --gradient-vip: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Espaçamento */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-gray-900);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.onboarding-active {
    overflow: hidden;
}

/* ========================================
   ONBOARDING SPLASH SCREEN
   ======================================== */
.onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.onboarding-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.onboarding-content {
    text-align: center;
    max-width: 95%;
    width: 100%;
    padding: 2rem 4rem;
    position: relative;
    z-index: 1;
}

.onboarding-logo-wrapper {
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.onboarding-logo {
    max-width: 200px;
    height: auto;
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.5));
        transform: scale(1.02);
    }
}

.onboarding-message {
    font-family: Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.onboarding-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.loader-bar {
    width: 300px;
    max-width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-gold) 50%, var(--color-red) 100%);
    background-size: 200% 100%;
    border-radius: 50px;
    animation: loadingProgress 4s ease-in-out forwards,
               gradientShift 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

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

.loader-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.loader-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    animation: dotPulse 1.4s ease-in-out infinite;
}

.loader-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.loader-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive para Onboarding */
@media (max-width: 968px) {
    .onboarding-content {
        padding: 2rem 3rem;
    }
    
    .onboarding-message {
        font-size: clamp(0.875rem, 2.2vw, 1.25rem);
        white-space: normal;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 640px) {
    .onboarding-logo {
        max-width: 150px;
    }
    
    .onboarding-message {
        font-family: Arial, sans-serif;
        font-size: clamp(0.75rem, 3vw, 1rem);
        margin-bottom: 1rem;
        white-space: normal;
        line-height: 1.5;
    }
    
    .loader-bar {
        width: 250px;
    }
    
    .onboarding-content {
        padding: 1.5rem 2rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ========================================
   PAGE ENTRANCE ANIMATIONS
   ======================================== */
body:not(.page-loaded) .header,
body:not(.page-loaded) .hero-title,
body:not(.page-loaded) .hero-subtitle,
body:not(.page-loaded) .hero-badges,
body:not(.page-loaded) .hero-cta,
body:not(.page-loaded) .hero-visual,
body:not(.page-loaded) .scroll-hint,
body:not(.page-loaded) section:not(.hero) {
    opacity: 0;
}

.header {
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-subtitle.animate-in {
    opacity: 0.95;
    transform: translateY(0);
}

.hero-badges {
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.hero-badges.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    opacity: 0;
}

.hero-badges.animate-in .badge {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badges.animate-in .badge:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-badges.animate-in .badge:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-badges.animate-in .badge:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-cta {
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.hero-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-visual {
    transform: translateX(50px) scale(0.9);
    transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-visual.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.scroll-hint {
    transform: translateY(20px);
    transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}

.scroll-hint.animate-in {
    opacity: 0.8;
    transform: translateY(0);
}

/* Animações para seções seguintes */
section:not(.hero) {
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section:not(.hero).animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animações para cards e elementos dentro das seções */
.about-card,
.profile-card,
.about-highlight-card,
.feature-card-modern,
.about-highlight-modern {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.animate-in .about-card,
section.animate-in .profile-card,
section.animate-in .about-highlight-card,
section.animate-in .feature-card-modern,
section.animate-in .about-highlight-modern {
    animation: fadeInUp 0.6s ease forwards;
}

section.animate-in .about-card:nth-child(1),
section.animate-in .profile-card:nth-child(1),
section.animate-in .about-highlight-card,
section.animate-in .about-highlight-modern,
section.animate-in .feature-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

section.animate-in .about-card:nth-child(2),
section.animate-in .profile-card:nth-child(2),
section.animate-in .feature-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

section.animate-in .about-card:nth-child(3),
section.animate-in .feature-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.875rem 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition-base);
}

.logo-link:hover .logo {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-link-vip {
    color: var(--color-gold-light);
    font-weight: 600;
}

.header.scrolled .nav-link-vip {
    color: var(--color-gold);
}

/* ========================================
   PREMIUM VIP BUTTON
   ======================================== */
.btn-premium-vip-image {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.vip-button-image {
    height: auto;
    max-height: 2.5rem;
    width: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-premium-vip-image:hover .vip-button-image {
    transform: translateY(-2px) scale(1.05);
    opacity: 0.9;
}

.btn-premium-vip-image:active .vip-button-image {
    transform: translateY(0) scale(1);
}

.header.scrolled .btn-premium-vip-image:hover .vip-button-image {
    transform: translateY(-2px) scale(1.05);
}

.btn-premium-vip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6875rem 1.75rem;
    margin-left: 1rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1F1F1F 100%);
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.btn-premium-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 50%,
        rgba(219, 63, 67, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-premium-vip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.15),
        transparent
    );
    transform: skewX(-20deg);
    animation: light-sweep 3s ease-in-out infinite;
    opacity: 0;
}

.btn-premium-shine {
    display: none;
}

.btn-premium-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-premium-icon {
    font-size: 0.8125rem;
    display: inline-block;
    opacity: 0.95;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

.btn-premium-vip:hover {
    background: linear-gradient(135deg, #252525 0%, #383838 50%, #2A2A2A 100%);
    color: #F4D03F;
    transform: translateY(-1.5px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(212, 175, 55, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.btn-premium-vip:hover::before {
    opacity: 1;
}

.btn-premium-vip:hover::after {
    opacity: 1;
    animation: light-sweep-hover 2s ease-in-out infinite;
}

@keyframes light-sweep {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

@keyframes light-sweep-hover {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.btn-premium-vip:hover .btn-premium-text {
    text-shadow: 0 0 12px rgba(244, 208, 63, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.btn-premium-vip:hover .btn-premium-icon {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 6px rgba(244, 208, 63, 0.6));
}

.btn-premium-vip:active {
    transform: translateY(0);
    box-shadow: 
        0 1px 4px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Ajustes para header scrolled */
.header.scrolled .btn-premium-vip {
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

.header.scrolled .btn-premium-vip:hover {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5),
        0 0 18px rgba(212, 175, 55, 0.2);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.header.scrolled .nav-link {
    color: var(--color-gray-900);
}

.header.scrolled .nav-link:hover {
    color: var(--color-red);
}

.header.scrolled .nav-link::after {
    background: var(--color-red);
}

.header.scrolled .menu-toggle span {
    background: var(--color-gray-900);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/explore-mundo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

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

.hero-text {
    color: var(--color-white);
    padding-top: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 540px;
}

.subtitle-highlight {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.375rem;
    opacity: 1;
    color: var(--color-white);
}

.subtitle-text {
    display: block;
    font-size: 1.0625rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 0;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    color: var(--color-gold-light);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.download-link {
    display: inline-block;
    transition: var(--transition-base);
    cursor: pointer;
}

.download-link:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.download-button {
    height: 60px;
    width: auto;
    display: block;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 45px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 45px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: var(--color-black);
    border-radius: 0 0 18px 18px;
    z-index: 10;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-black);
    border-radius: 37px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: 
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 2px 4px rgba(0, 0, 0, 0.4);
}

.phone-mockup:hover .phone-screen {
    transform: scale(0.998);
}

.phone-status-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px 4px;
    z-index: 5;
    pointer-events: none;
}

.status-left,
.status-right {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.status-time {
    font-size: 15px;
    letter-spacing: -0.2px;
}

.status-signal,
.status-wifi,
.status-battery {
    font-size: 12px;
    opacity: 0.9;
}

.mockup-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.mockup-image.active {
    opacity: 1;
    pointer-events: auto;
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.875rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--color-white);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
section {
    padding: var(--space-xl) 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-red);
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(219, 63, 67, 0.1);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-gray-600);
    margin-top: 0.75rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: linear-gradient(180deg, var(--color-white) 0%, #FAFAFA 100%);
    padding: 4rem 0;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ========================================
   ABOUT SECTION - MODERN LAYOUT
   ======================================== */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Content Side */
.about-content-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content-modern.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-header-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.about-content-modern.animate-in .about-header-modern {
    opacity: 1;
    transform: translateY(0);
}

.about-label-modern {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-red);
    padding: 0.375rem 1rem;
    background: rgba(219, 63, 67, 0.1);
    border-radius: 50px;
    width: fit-content;
    border: 1px solid rgba(219, 63, 67, 0.2);
    opacity: 0;
    transform: translateY(15px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.about-content-modern.animate-in .about-label-modern {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-title-modern {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-gray-900);
    letter-spacing: -0.02em;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.about-content-modern.animate-in .about-title-modern {
    opacity: 1;
    transform: translateY(0);
}

.about-description-modern {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.about-content-modern.animate-in .about-description-modern {
    opacity: 1;
    transform: translateY(0);
}

/* Highlight Card */
.about-highlight-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s,
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content-modern.animate-in .about-highlight-modern {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-highlight-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold) 0%, rgba(212, 175, 55, 0.8) 50%, var(--color-red) 100%);
}

.about-highlight-modern:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 36px rgba(0, 0, 0, 0.1),
        0 3px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(212, 175, 55, 0.35);
}

.highlight-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(219, 63, 67, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.18);
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s,
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s,
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content-modern.animate-in .highlight-icon-modern {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.about-highlight-modern:hover .highlight-icon-modern {
    transform: scale(1.08) rotate(4deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(219, 63, 67, 0.15) 100%);
    box-shadow: 0 5px 16px rgba(212, 175, 55, 0.25);
}

.highlight-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
    stroke-width: 2.5;
    transition: all 0.4s ease;
}

.about-highlight-modern:hover .highlight-icon-modern svg {
    stroke: var(--color-gold-dark);
    transform: scale(1.1);
}

.highlight-content-modern {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.about-content-modern.animate-in .highlight-content-modern {
    opacity: 1;
    transform: translateY(0);
}

.highlight-title-modern {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin: 0;
}

.highlight-description-modern {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin: 0;
}

/* Features Grid */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.about-content-modern.animate-in .about-features-modern {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-modern {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:nth-child(1) {
    transition-delay: 0.9s, 0.9s, 0s, 0s;
}

.feature-card-modern:nth-child(2) {
    transition-delay: 1s, 1s, 0s, 0s;
}

.feature-card-modern:nth-child(3) {
    transition-delay: 1.1s, 1.1s, 0s, 0s;
}

.about-content-modern.animate-in .feature-card-modern {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-red) 0%, var(--color-red-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    border-color: rgba(219, 63, 67, 0.2);
}

.feature-icon-modern {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(219, 63, 67, 0.12);
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:nth-child(1) .feature-icon-modern {
    transition-delay: 1s, 1s, 0s, 0s;
}

.feature-card-modern:nth-child(2) .feature-icon-modern {
    transition-delay: 1.1s, 1.1s, 0s, 0s;
}

.feature-card-modern:nth-child(3) .feature-icon-modern {
    transition-delay: 1.2s, 1.2s, 0s, 0s;
}

.about-content-modern.animate-in .feature-icon-modern {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.feature-icon-security {
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.15) 0%, rgba(219, 63, 67, 0.08) 100%);
}

.feature-icon-connection {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.feature-icon-control {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.08) rotate(2deg);
}

.feature-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: all 0.4s ease;
}

.feature-icon-security svg {
    stroke: var(--color-red);
}

.feature-icon-connection svg {
    stroke: var(--color-gold);
}

.feature-icon-control svg {
    stroke: #3B82F6;
}

.feature-card-modern:hover .feature-icon-modern svg {
    transform: scale(1.1);
}

.feature-content-modern {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:nth-child(1) .feature-content-modern {
    transition-delay: 1.15s, 1.15s;
}

.feature-card-modern:nth-child(2) .feature-content-modern {
    transition-delay: 1.25s, 1.25s;
}

.feature-card-modern:nth-child(3) .feature-content-modern {
    transition-delay: 1.35s, 1.35s;
}

.about-content-modern.animate-in .feature-content-modern {
    opacity: 1;
    transform: translateY(0);
}

.feature-title-modern {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-title-modern {
    color: var(--color-red-dark);
}

.feature-text-modern {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-gray-600);
    margin: 0;
}

/* Visual Side */
.about-visual-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    opacity: 0;
    transform: translateX(-15px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.about-visual-modern.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.about-image-wrapper-modern {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(219, 63, 67, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.about-image-modern {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    opacity: 0;
    transform: translateY(15px) scale(0.97);
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s,
                transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s,
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: none;
}

.about-visual-modern.animate-in .about-image-modern {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: float-image 6s ease-in-out infinite 1.5s;
}

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

.about-image-wrapper-modern:hover .about-image-modern {
    transform: translateY(-10px) scale(1.05) rotate(-2deg);
    animation-play-state: paused;
}

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(219, 63, 67, 0.2) 100%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    animation: decoration-float 4s ease-in-out infinite;
}

@keyframes decoration-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(10px, -10px) scale(1.2);
        opacity: 0.8;
    }
}

/* ========================================
   PROFILES SECTION
   ======================================== */
.profiles {
    background: linear-gradient(180deg, #F8F9FA 0%, #F0F2F5 50%, #F8F9FA 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.profiles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(219, 63, 67, 0.06) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.02) 2px,
            rgba(212, 175, 55, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.profiles::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.4) 20%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(219, 63, 67, 0.4) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.profiles .container {
    position: relative;
    z-index: 1;
}

.profiles .section-header {
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.profiles .section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.profiles .section-label {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(219, 63, 67, 0.12) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gray-800);
    font-weight: 700;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.profiles .section-header.animate-in .section-label {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.profiles .section-title {
    color: var(--color-black);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-black);
    background-clip: unset;
    text-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.profiles .section-header.animate-in .section-title {
    opacity: 1;
    transform: translateY(0);
}

.profiles .section-description {
    color: var(--color-gray-600);
    font-size: 1.0625rem;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.profiles .section-header.animate-in .section-description {
    opacity: 1;
    transform: translateY(0);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.profiles-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.profile-card {
    background: var(--color-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) {
    transition-delay: 0.5s, 0.5s, 0s, 0s;
}

.profile-card:nth-child(2) {
    transition-delay: 0.7s, 0.7s, 0s, 0s;
}

.profiles-grid.animate-in .profile-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.98) 100%);
}

.profile-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.profile-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.08);
}

.profile-card:hover::after {
    opacity: 1;
}

.profile-card-relationship {
    border-top: 4px solid var(--color-gold);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 245, 0.95) 100%);
}

.profile-card-relationship::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.1) 100%);
}

.profile-card-relationship::after {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.profile-card-relationship::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.1) 100%);
}

.profile-card-relationship:hover {
    border-top-color: var(--color-gold);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 24px 72px rgba(212, 175, 55, 0.3),
        0 12px 36px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 240, 0.95) 100%);
}

.profile-card-relationship:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.15) 100%);
}

.profile-card-relationship:hover .profile-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(244, 208, 63, 0.2) 100%);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.profile-card-relationship:hover .profile-icon svg {
    stroke: var(--color-gold);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.profile-card-relationship:hover .profile-card-title {
    color: var(--color-black);
    text-shadow: none;
}

.profile-card-relationship:hover .feature-check {
    color: var(--color-gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.profile-card-casual {
    border-top: 4px solid var(--color-red);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 248, 0.95) 100%);
}

.profile-card-casual::before {
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.15) 0%, rgba(229, 90, 94, 0.1) 100%);
}

.profile-card-casual::after {
    background: radial-gradient(circle, rgba(219, 63, 67, 0.15) 0%, transparent 70%);
}

.profile-card-casual::before {
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.15) 0%, rgba(229, 90, 94, 0.1) 100%);
}

.profile-card-casual:hover {
    border-top-color: var(--color-red);
    border-color: rgba(219, 63, 67, 0.25);
    box-shadow: 
        0 24px 72px rgba(219, 63, 67, 0.3),
        0 12px 36px rgba(219, 63, 67, 0.2),
        0 0 0 1px rgba(219, 63, 67, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 245, 0.95) 100%);
}

.profile-card-casual:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.2) 0%, rgba(229, 90, 94, 0.15) 100%);
}

.profile-card-casual:hover .profile-icon {
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.25) 0%, rgba(229, 90, 94, 0.2) 100%);
    box-shadow: 
        0 6px 20px rgba(219, 63, 67, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(219, 63, 67, 0.3);
    transform: scale(1.05);
}

.profile-card-casual:hover .profile-icon svg {
    stroke: var(--color-red);
    filter: drop-shadow(0 0 8px rgba(219, 63, 67, 0.5));
}

.profile-card-casual:hover .profile-card-title {
    color: var(--color-black);
    text-shadow: none;
}

.profile-card-casual:hover .feature-check {
    color: var(--color-red);
    text-shadow: 0 0 8px rgba(219, 63, 67, 0.4);
}

.profile-card-header {
    padding: 2rem 2.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-card-header {
    transition-delay: 0.6s, 0.6s, 0s;
}

.profile-card:nth-child(2) .profile-card-header {
    transition-delay: 0.8s, 0.8s, 0s;
}

.profiles-grid.animate-in .profile-card-header {
    opacity: 1;
    transform: translateY(0);
}

.profile-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(250, 250, 250, 0.95) 0%, rgba(245, 245, 245, 0.9) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-icon {
    transition-delay: 0.65s, 0.65s, 0s, 0s, 0s;
}

.profile-card:nth-child(2) .profile-icon {
    transition-delay: 0.85s, 0.85s, 0s, 0s, 0s;
}

.profiles-grid.animate-in .profile-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.profile-card-relationship .profile-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.12) 100%);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.profile-card-casual .profile-icon {
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.15) 0%, rgba(229, 90, 94, 0.12) 100%);
    border-color: rgba(219, 63, 67, 0.2);
    box-shadow: 
        0 4px 12px rgba(219, 63, 67, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.profile-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-gray-900);
    stroke-width: 2;
}

.profile-card-relationship .profile-icon svg {
    stroke: var(--color-red);
}

.profile-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-gray-900);
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s ease;
}

.profile-card:nth-child(1) .profile-card-title {
    transition-delay: 0.7s, 0.7s, 0s;
}

.profile-card:nth-child(2) .profile-card-title {
    transition-delay: 0.9s, 0.9s, 0s;
}

.profiles-grid.animate-in .profile-card-title {
    opacity: 1;
    transform: translateX(0);
}

.profile-card-content {
    padding: 0 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-card-content {
    transition-delay: 0.75s, 0.75s, 0s;
}

.profile-card:nth-child(2) .profile-card-content {
    transition-delay: 0.95s, 0.95s, 0s;
}

.profiles-grid.animate-in .profile-card-content {
    opacity: 1;
    transform: translateY(0);
}

.profile-card-description {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--color-gray-600);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-card-description {
    transition-delay: 0.8s, 0.8s;
}

.profile-card:nth-child(2) .profile-card-description {
    transition-delay: 1s, 1s;
}

.profiles-grid.animate-in .profile-card-description {
    opacity: 1;
    transform: translateY(0);
}

.profile-features {
    list-style: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-features {
    transition-delay: 0.85s, 0.85s;
}

.profile-card:nth-child(2) .profile-features {
    transition-delay: 1.05s, 1.05s;
}

.profiles-grid.animate-in .profile-features {
    opacity: 1;
    transform: translateY(0);
}

.profile-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-features li:nth-child(1) {
    transition-delay: 0.9s, 0.9s;
}

.profile-card:nth-child(1) .profile-features li:nth-child(2) {
    transition-delay: 0.95s, 0.95s;
}

.profile-card:nth-child(1) .profile-features li:nth-child(3) {
    transition-delay: 1s, 1s;
}

.profile-card:nth-child(2) .profile-features li:nth-child(1) {
    transition-delay: 1.1s, 1.1s;
}

.profile-card:nth-child(2) .profile-features li:nth-child(2) {
    transition-delay: 1.15s, 1.15s;
}

.profile-card:nth-child(2) .profile-features li:nth-child(3) {
    transition-delay: 1.2s, 1.2s;
}

.profiles-grid.animate-in .profile-features li {
    opacity: 1;
    transform: translateX(0);
}

.feature-check {
    color: var(--color-red);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.profile-card-relationship .feature-check {
    color: var(--color-gold);
}

.profile-card-relationship:hover .feature-check {
    color: var(--color-gold-dark);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.profile-card-casual:hover .feature-check {
    color: var(--color-red-dark);
    text-shadow: 0 0 8px rgba(219, 63, 67, 0.4);
    transform: scale(1.1);
}

.profile-card-visual {
    padding: 2rem 2.5rem 2.25rem;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.8) 0%, rgba(245, 245, 245, 0.9) 100%);
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-top-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-card-visual {
    transition-delay: 1.05s, 1.05s, 0s, 0s;
}

.profile-card:nth-child(2) .profile-card-visual {
    transition-delay: 1.25s, 1.25s, 0s, 0s;
}

.profiles-grid.animate-in .profile-card-visual {
    opacity: 1;
    transform: translateY(0);
}

.profile-card-relationship:hover .profile-card-visual {
    background: linear-gradient(180deg, rgba(255, 252, 240, 0.9) 0%, rgba(255, 248, 230, 0.95) 100%);
    border-top-color: rgba(212, 175, 55, 0.15);
}

.profile-card-casual:hover .profile-card-visual {
    background: linear-gradient(180deg, rgba(255, 245, 245, 0.9) 0%, rgba(255, 240, 240, 0.95) 100%);
    border-top-color: rgba(219, 63, 67, 0.15);
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card:nth-child(1) .profile-image {
    transition-delay: 1.1s, 1.1s, 0s, 0s;
}

.profile-card:nth-child(2) .profile-image {
    transition-delay: 1.3s, 1.3s, 0s, 0s;
}

.profiles-grid.animate-in .profile-image {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.profile-card:hover .profile-image {
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transform: scale(1.02);
}

/* ========================================
   VIDEOCHAMADA SECTION
   ======================================== */
.videochamada {
    background: var(--gradient-vip);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.videochamada::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.videochamada-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.videochamada-image-wrapper {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.videochamada-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.videochamada-image-wrapper:hover .videochamada-image {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 24px 64px rgba(0, 0, 0, 0.25),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

.section-label-light {
    color: var(--color-gold-light);
}

.section-title-light {
    color: var(--color-white);
}

.section-description-light {
    color: rgba(255, 255, 255, 0.9);
}

.videochamada-benefits {
    list-style: none;
    margin-top: 2rem;
}

.videochamada-benefits li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    stroke-width: 2;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.benefit-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   VIP SECTION
   ======================================== */
.vip {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.vip-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    z-index: 0;
}

.vip-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
}

.vip-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 4rem 0;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.vip-star {
    font-size: 1.25rem;
}

.vip-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-description {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.vip-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-base);
}

.vip-feature:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.vip-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vip-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-gold-light);
}

.vip-feature p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.btn-vip {
    background: var(--gradient-gold);
    color: var(--color-black);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-vip svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-black);
    stroke-width: 2.5;
}

/* ========================================
   DOWNLOAD SECTION
   ======================================== */
.download {
    background: var(--color-gray-50);
    padding: 6rem 0;
}

.download-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.download-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 2.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    max-width: 140px;
    height: auto;
    width: auto;
    opacity: 0.9;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link::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;
}

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

.social-link svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    background: rgba(219, 63, 67, 0.2);
    color: var(--color-red);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 16px rgba(219, 63, 67, 0.3),
        0 0 0 2px rgba(219, 63, 67, 0.2);
    border-color: var(--color-red);
}

.social-link:hover svg {
    transform: scale(1.15);
    color: var(--color-red);
    fill: var(--color-red);
}

.social-link:active {
    transform: translateY(-1px);
}

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

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

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

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

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

.footer-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.download-btn {
    display: inline-block;
    transition: var(--transition-base);
    opacity: 0.9;
    filter: brightness(0.95);
    position: relative;
    border-radius: 12px;
    padding: 4px;
    animation: bounce-glow 2s ease-in-out infinite;
}

.download-btn:hover {
    opacity: 1;
    filter: brightness(1.15);
    transform: translateY(-3px) scale(1.05);
    animation-play-state: paused;
}

.download-btn img {
    height: 40px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
}

@keyframes bounce-glow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}


.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* ========================================
   VIP PAGE SPECIFIC
   ======================================== */
.vip-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.vip-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/Byngow-VIP-Versão-Desktop.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.vip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.vip-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    padding: 2rem 4rem;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.vip-hero-logo {
    height: 100px;
    width: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

.vip-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-light);
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

.vip-star {
    font-size: 1rem;
    color: var(--color-gold);
}

.vip-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 1.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.vip-hero-title-main {
    display: block;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-hero-title-sub {
    display: block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.vip-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1000px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.vip-content-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-gray-50) 100%);
}

.vip-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.vip-content-image {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-content-image::before {
    display: none;
}

.vip-content-image img {
    max-width: 220%;
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.vip-content-image:hover img {
    transform: scale(1.05);
}

.vip-content-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.vip-content-logo {
    height: 70px;
    width: auto;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.vip-content-logo:hover {
    opacity: 1;
}

.vip-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.vip-paragraph {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-gray-700);
    text-align: justify;
}

.vip-paragraph-cta {
    font-size: 1.1875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.vip-highlight-yellow {
    color: var(--color-gold);
    font-weight: 700;
    position: relative;
}

.vip-highlight-yellow::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
    opacity: 0.3;
}

.vip-highlight-red {
    color: var(--color-red);
    font-weight: 700;
    position: relative;
}

.vip-highlight-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red) 0%, transparent 100%);
    opacity: 0.3;
}

.vip-download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.nav-link.active {
    color: var(--color-red);
}

.nav-link.active::after {
    width: 100%;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-base);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav.active .nav-link {
        color: var(--color-gray-900) !important;
    }

    .nav.active .nav-link:hover {
        color: var(--color-red) !important;
    }

    .nav.active .nav-link::after {
        background: var(--color-red);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span {
        background: var(--color-gray-900) !important;
    }

    .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-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .videochamada-content {
        grid-template-columns: 1fr;
    }

    .videochamada-image {
        max-width: 90%;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-downloads {
        margin-top: 1.25rem;
    }

    .download-btn img {
        height: 36px;
    }
    
    .btn-premium-vip {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
        margin-left: 0.5rem;
    }
    
    .vip-hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .vip-hero-content {
        max-width: 100%;
        padding: 1.5rem 2rem;
    }
    
    .vip-hero-title {
        max-width: 100%;
    }
    
    .vip-hero-description {
        max-width: 100%;
    }
    
    .vip-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vip-content-image {
        order: -1;
    }
    
    .vip-content-image img {
        max-width: 180%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-image-wrapper-modern {
        max-width: 400px;
    }
    
    .about-features-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-highlight-modern {
        padding: 1.25rem 1.75rem;
    }
    
    .about-content-modern {
        gap: 1.75rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-background {
        background-image: url('../img/Tela inicial - Versão Celular.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .download-buttons,
    .vip-download-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

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

    .about-grid,
    .vip-features {
        grid-template-columns: 1fr;
    }
    
    .about {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-modern {
        gap: 1.5rem;
    }
    
    .about-header-modern {
        gap: 0.625rem;
        text-align: center;
    }
    
    .about-label-modern {
        margin: 0 auto;
        font-size: 0.6875rem;
        padding: 0.3125rem 0.875rem;
    }
    
    .about-description-modern {
        text-align: center;
        margin: 0 auto;
        font-size: 0.9375rem;
    }
    
    .about-highlight-modern {
        padding: 1.25rem 1.5rem;
        text-align: center;
    }
    
    .highlight-icon-modern {
        margin: 0 auto 1rem;
        width: 44px;
        height: 44px;
    }
    
    .highlight-icon-modern svg {
        width: 22px;
        height: 22px;
    }
    
    .about-features-modern {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card-modern {
        padding: 1.25rem;
    }
    
    .feature-icon-modern {
        width: 44px;
        height: 44px;
        margin-bottom: 0.875rem;
    }
    
    .feature-icon-modern svg {
        width: 22px;
        height: 22px;
    }
    
    .about-image-wrapper-modern {
        max-width: 350px;
    }
    
    .about-image-glow {
        display: none;
    }
    
    .about-image-decoration {
        display: none;
    }
    
    .download-button {
        height: 50px;
    }
    
    .vip-hero {
        min-height: 85vh;
        padding-top: 70px;
        padding-bottom: 3rem;
    }
    
    .vip-hero-background {
        background-image: url('../img/Byngow VIP - Versão Celular.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .vip-hero-content {
        padding: 1rem 1.5rem;
    }
    
    .vip-hero-logo {
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .vip-hero-title {
        gap: 0.75rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .vip-hero-description {
        font-size: 0.9375rem;
        max-width: 100%;
        padding: 0;
    }
    
    .vip-content-section {
        padding: 3rem 0;
    }
    
    .vip-content-grid {
        gap: 2.5rem;
        margin-top: 2rem;
    }
    
    .vip-content-text {
        gap: 1.5rem;
    }
    
    .vip-paragraph {
        text-align: left;
        font-size: 0.9375rem;
        line-height: 1.75;
    }
    
    .vip-paragraph-cta {
        font-size: 1.0625rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .profiles-grid {
        gap: 2rem;
    }
    
    .profile-card-header {
        padding: 2rem 2rem 1.25rem;
    }
    
    .profile-card-content {
        padding: 0 2rem 1.5rem;
    }
    
    .profile-card-visual {
        padding: 1.5rem 2rem 2rem;
    }
}

/* ========================================
   EVENTOS PAGE
   ======================================== */
.eventos-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(70px + 4rem);
}

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

.eventos-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.eventos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.eventos-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eventos-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(219, 63, 67, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.eventos-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.eventos-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.eventos-carousel-section {
    padding: 4rem 0 6rem;
    background: var(--color-white);
    position: relative;
}

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.event-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
}

.event-banner-image {
    position: relative;
    background: linear-gradient(135deg, rgba(219, 63, 67, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    overflow: hidden;
}

.event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--color-gray-400);
    padding: 3rem;
}

.event-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: currentColor;
    stroke-width: 1.5;
    opacity: 0.5;
}

.event-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-500);
}

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

.event-banner:hover .event-banner-image img {
    transform: scale(1.05);
}

.event-banner-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: var(--color-white);
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-light) 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(219, 63, 67, 0.3);
}

.event-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.event-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gray-900);
    line-height: 1.3;
    margin: 0;
}

.event-description {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin: 0;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.event-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.event-info-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-red);
    stroke-width: 2;
    flex-shrink: 0;
}

.btn-event-details {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-light) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(219, 63, 67, 0.3);
    margin-top: 1rem;
    width: fit-content;
    position: relative;
    overflow: hidden;
}

.btn-event-details::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 ease;
}

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

.btn-event-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(219, 63, 67, 0.4);
}

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

.btn-event-details svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.btn-event-details:hover svg {
    transform: translateX(4px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(219, 63, 67, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--color-red);
}

.carousel-btn:hover {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(219, 63, 67, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
}

.carousel-btn-prev {
    left: -28px;
}

.carousel-btn-next {
    right: -28px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--color-red);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator.active {
    background: transparent;
    border-color: var(--color-red);
}

.indicator.active::before {
    width: 8px;
    height: 8px;
}

.indicator:hover {
    transform: scale(1.2);
    background: rgba(219, 63, 67, 0.2);
}

.indicator.active:hover {
    background: transparent;
}

/* Responsive para Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .vip-content-grid {
        gap: 4rem;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Responsive para Eventos */
@media (max-width: 968px) {
    .carousel-wrapper {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
    }

    .carousel-btn-prev {
        left: -24px;
    }

    .carousel-btn-next {
        right: -24px;
    }

    .event-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .event-banner-image {
        min-height: 300px;
    }

    .event-banner-content {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .eventos-hero {
        padding: 6rem 0 3rem;
        min-height: 650px;
    }
    
    .eventos-hero-image {
        object-position: center;
    }

    .eventos-carousel-section {
        padding: 3rem 0 4rem;
    }

    .carousel-wrapper {
        padding: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        display: none; /* Ocultar botões em mobile muito pequeno */
    }

    .carousel-container {
        border-radius: 16px;
    }

    .event-banner-content {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .event-description {
        font-size: 1rem;
    }

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

/* ========================================
   LEGAL PAGES STYLES
   ======================================== */
.legal-content {
    padding: 8rem 0 4rem;
    background: var(--color-white);
    min-height: calc(100vh - 200px);
}

.legal-content.with-hero {
    padding-top: 0;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content.with-hero .legal-wrapper {
    padding-top: 4rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-gray-200);
}

/* Hero Header para Termos de Uso */
.legal-header-hero-wrapper {
    position: relative;
    margin-top: -80px;
    padding-top: 80px;
    z-index: 0;
}

.legal-header-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0f1f35 50%, #0a1628 100%);
    padding: 8rem 0 4rem;
    margin-bottom: 0;
    position: relative;
    overflow: visible;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.legal-header-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: calc(100% + 80px);
    background: linear-gradient(135deg, #0a1628 0%, #0f1f35 50%, #0a1628 100%);
    z-index: -1;
}

.legal-header-hero::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.legal-header-hero .legal-header {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-header-hero .legal-logo {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.legal-header-hero .legal-header h1 {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.legal-header-hero .legal-header h2 {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.legal-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.legal-header h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--color-red);
    margin-bottom: 0;
}

.legal-article {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-gray-100);
}

.legal-article:last-child {
    border-bottom: none;
}

.legal-article h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    line-height: 1.3;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 1.25rem;
    text-align: justify;
}

.legal-article strong {
    font-weight: 700;
    color: var(--color-gray-900);
}

.legal-article ol,
.legal-article ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-article ol li,
.legal-article ul li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-gray-700);
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-article ol {
    list-style-type: decimal;
}

.legal-article ul {
    list-style-type: disc;
}

.legal-article ul.list-decimal {
    list-style-type: decimal;
}

@media (max-width: 640px) {
    .legal-content {
        padding: 6rem 0 3rem;
    }

    .legal-wrapper {
        padding: 0 1.5rem;
    }

    .legal-header {
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
    }

    .legal-header-hero {
        padding: 5rem 0 3rem;
        min-height: 300px;
    }

    .legal-header-hero .legal-header {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .legal-article {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .legal-article p,
    .legal-article ol li,
    .legal-article ul li {
        font-size: 1rem;
        text-align: left;
    }
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 1.5rem 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--color-red);
}

.cookie-banner-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-gray-600);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    z-index: 10000;
    padding: 0;
}

.cookie-banner-close:hover {
    background: var(--color-gray-100);
    color: var(--color-gray-900);
    transform: rotate(90deg);
}

.cookie-banner-close:active {
    transform: rotate(90deg) scale(0.95);
}

.cookie-banner-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-right: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.cookie-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    75% {
        transform: rotate(10deg) scale(1.1);
    }
}

.cookie-text-content {
    flex: 1;
}

.cookie-message {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-gray-700);
    margin: 0;
}

.cookie-link {
    color: var(--color-red);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--color-red-dark);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-light) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(219, 63, 67, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 63, 67, 0.4);
}

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

.cookie-btn-secondary {
    background: transparent;
    color: var(--color-gray-700);
    border: 2px solid var(--color-gray-300);
}

.cookie-btn-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-gray-400);
    color: var(--color-gray-900);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1.25rem 0;
    }

    .cookie-banner-content {
        padding: 0 1.5rem;
        padding-right: 3.5rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .cookie-banner-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }

    .cookie-banner-close svg {
        width: 18px;
        height: 18px;
    }

    .cookie-banner-text {
        flex-direction: row;
        align-items: flex-start;
    }

    .cookie-icon {
        font-size: 1.75rem;
    }

    .cookie-message {
        font-size: 0.875rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-banner-content {
        padding: 0 1.25rem;
        padding-right: 3rem;
    }

    .cookie-banner-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 26px;
        height: 26px;
    }

    .cookie-banner-close svg {
        width: 16px;
        height: 16px;
    }

    .cookie-icon {
        font-size: 1.5rem;
    }

    .cookie-message {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}
