/* ============================================
   RESET & VARIABLES
   ============================================ */

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

:root {
    /* ===== IDENTIDADE GLAM DATE =====
       Assinatura: Coral → Rosa → Dourado | Fundo escuro luxo */
    --primary: #f43f5e;           /* Rose forte - cor de assinatura */
    --primary-dark: #e11d48;
    --secondary: #ec4899;       /* Pink */
    --secondary-dark: #db2777;
    --accent: #d4af37;          /* Champagne / dourado luxo */
    --accent-dark: #b8962e;
    --rose: #f472b6;
    --rose-dark: #ec4899;
    --purple: #a855f7;
    --purple-dark: #9333ea;
    --coral: #fb7185;
    --coral-dark: #f43f5e;
    
    /* Fundos - preto quente, profundidade */
    --bg-primary: #0c0a0b;
    --bg-secondary: #141113;
    --bg-tertiary: #1c1619;
    --bg-glass: rgba(244, 63, 94, 0.06);
    --bg-glass-hover: rgba(244, 63, 94, 0.12);
    
    /* Texto */
    --text-primary: #fafafa;
    --text-secondary: #e4dce0;
    --text-muted: #9ca3af;
    
    /* Gradiente de marca - usado em títulos, CTAs, bordas */
    --gradient-brand: linear-gradient(90deg, #f43f5e 0%, #ec4899 45%, #d4af37 100%);
    --gradient-primary: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #d4af37 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    --gradient-rose: linear-gradient(135deg, #f472b6 0%, #f43f5e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    --gradient-coral: linear-gradient(135deg, #fb7185 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #0c0a0b 0%, #141113 100%);
    --gradient-glow: radial-gradient(circle, rgba(244, 63, 94, 0.25) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
    --gradient-card: linear-gradient(145deg, rgba(244, 63, 94, 0.06) 0%, rgba(212, 175, 55, 0.04) 100%);
    
    /* Sombras com cor de marca */
    --shadow-glow: 0 0 24px rgba(244, 63, 94, 0.35);
    --shadow-glow-strong: 0 0 48px rgba(244, 63, 94, 0.5);
    --shadow-rose: 0 0 30px rgba(244, 114, 182, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
    --shadow-primary: 0 12px 48px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(244, 63, 94, 0.1);
    
    /* Tipografia - display + corpo moderna */
    --font-primary: 'Orbitron', sans-serif;
    --font-logo: 'Cinzel', 'Times New Roman', serif;
    --font-secondary: 'Outfit', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Bordas e raios - identidade */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

/* ============================================
   BASE STYLES
   ============================================ */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fundo fixo - identidade GLAM DATE (coral/rosa/dourado) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(ellipse 70% 40% at 15% 15%, rgba(244, 63, 94, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 50% 70% at 85% 85%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, #0c0a0b 0%, #120e10 35%, #0c0a0b 100%);
    opacity: 1;
}

/* Textura sutil - profundidade */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .profile-card,
    .nav-link,
    button {
        -webkit-tap-highlight-color: rgba(244, 63, 94, 0.2);
        touch-action: manipulation;
    }
    
    .profile-card:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.95);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: rgba(12, 10, 11, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(12, 10, 11, 0.92);
    border-bottom-color: rgba(244, 63, 94, 0.2);
    box-shadow: var(--shadow-primary), 0 1px 0 0 rgba(244, 63, 94, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    font-family: var(--font-logo);
    font-size: 1.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffe7a3 0%, #f9a8d4 36%, #fb7185 68%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 18px rgba(244, 63, 94, 0.3);
}

.logo-text {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(244,63,94,0.1), rgba(212,175,55,0.95), rgba(244,63,94,0.15));
    border-radius: var(--radius-pill);
    opacity: 0.95;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.22) 0%, rgba(212,175,55,0.16) 48%, transparent 75%);
    filter: blur(10px);
    opacity: 0.55;
    animation: pulse 3s ease-in-out infinite;
}

/* ===== Variantes de logo (troque a classe no HTML) ===== */
.logo.logo--luxo {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.22));
}

.logo.logo--luxo .logo-text {
    font-weight: 700;
}

.logo.logo--luxo::after {
    height: 3px;
    bottom: -5px;
}

.logo.logo--minimal {
    font-family: var(--font-secondary);
    letter-spacing: 0.12em;
    font-weight: 600;
    background: linear-gradient(90deg, #fdf2f8 0%, #f9a8d4 45%, #fbcfe8 100%);
    text-shadow: 0 0 12px rgba(249, 168, 212, 0.25);
}

.logo.logo--minimal::after {
    height: 2px;
    opacity: 0.7;
}

/* Variante forte, bem diferente da atual */
.logo.logo--signature {
    display: inline-flex;
    align-items: baseline;
    gap: 0.38rem;
    padding: 0.2rem 0.62rem 0.28rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 63, 94, 0.28);
    background: linear-gradient(90deg, rgba(244,63,94,0.08), rgba(212,175,55,0.06));
    letter-spacing: 0;
    text-shadow: none;
    filter: none;
}

.logo.logo--signature::after {
    height: 0;
    opacity: 0;
}

.logo--signature .logo-glam {
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1;
    background: linear-gradient(90deg, #ffd6e8 0%, #ff8fbe 55%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo--signature .logo-date {
    font-family: var(--font-secondary);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    background: linear-gradient(90deg, #ffe7a3 0%, #f5c86a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

/* Luz de marca no hero */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.1) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 65%);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-md);
}

.title-line {
    display: block;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.title-main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.28em 0.5em;
    margin-bottom: 0.5rem;
    line-height: 1.05;
}

.title-word {
    display: inline-block;
}

.title-word--glam {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7.2vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.07em;
    background: linear-gradient(90deg, #ffd6e8 0%, #ff8fbe 55%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(244, 63, 94, 0.2));
}

.title-word--date {
    font-family: var(--font-secondary);
    font-size: clamp(1.65rem, 4.6vw, 2.85rem);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffe7a3 0%, #f5c86a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.22));
}

.title-word--date:empty {
    display: none;
}

.title-underline {
    display: block;
    width: 120px;
    height: 4px;
    margin: 0.75rem auto 1rem;
    background: var(--gradient-brand);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.title-subtitle {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.75;
    max-width: 500px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-search {
    margin: var(--spacing-md) 0;
}

.search-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(20, 17, 19, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: var(--radius-pill);
    padding: 0.5rem 1rem;
    max-width: 700px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.search-box:focus-within {
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(244, 63, 94, 0.2);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
    padding: 0.5rem 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    padding: 0.75rem 1.5rem;
    margin: 0;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-strip {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trust-pill {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: var(--bg-glass);
    border: 1px solid rgba(244, 63, 94, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: rgba(244, 63, 94, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transform: translateZ(0);
}

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

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.35);
    border: none;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong), 0 8px 28px rgba(244, 63, 94, 0.4);
}

.btn-secondary {
    background: rgba(20, 17, 19, 0.9);
    color: var(--text-primary);
    border: 1px solid rgba(244, 63, 94, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(244, 63, 94, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   FLOATING CARDS
   ============================================ */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    gap: var(--spacing-sm);
}

.floating-card {
    position: relative;
    width: 180px;
    padding: var(--spacing-md);
    background: rgba(20, 17, 19, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
    transition: var(--transition-normal);
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition-normal);
    border-radius: 50%;
}

.floating-card:hover .card-glow {
    opacity: 0.3;
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
    filter: drop-shadow(0 0 10px rgba(244, 63, 94, 0.4));
}

.floating-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.card-1 {
    animation-delay: 0s;
}

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

.card-3 {
    animation-delay: 4s;
}

@media (max-width: 1100px) {
    .hero-visual {
        display: none;
    }
}

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

/* ============================================
   SCROLL INDICATOR
   ============================================ */

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

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

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

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
    margin: -5px 0;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-pill);
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gradient-brand);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
}

.section-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--bg-secondary);
}

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

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.about-card {
    padding: var(--spacing-md);
    background: rgba(20, 17, 19, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 63, 94, 0.35);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-card:hover::before {
    opacity: 1;
}

.card-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

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

.feature-item {
    padding: var(--spacing-md);
    text-align: center;
    transition: var(--transition-normal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: var(--bg-glass-hover);
}

.feature-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(244, 63, 94, 0.4));
}

.contact-item h4 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
}

/* ============================================
   FORM STYLES
   ============================================ */

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary);
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    background: var(--bg-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0.9;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

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

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

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

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

.footer-column ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text .title-main {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: var(--spacing-md);
    }
    
    .title-word--glam {
        font-size: 3.5rem;
    }
    
    .title-word--date {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        padding: var(--spacing-md);
        transition: var(--transition-normal);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-primary);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: var(--spacing-sm) 0;
        width: 100%;
        font-size: 1rem;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .title-word--glam {
        font-size: 2.5rem;
    }
    
    .title-word--date {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-card {
        width: 120px;
        padding: var(--spacing-sm);
    }
    
    .card-icon {
        font-size: 1.8rem;
    }
    
    .hero-search {
        margin: var(--spacing-sm) 0;
    }
    
    .search-box {
        flex-direction: column;
        padding: var(--spacing-sm);
    }
    
    .search-box input {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .btn-search {
        width: 100%;
        margin-top: var(--spacing-xs);
    }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.25rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .navbar {
        padding: var(--spacing-xs) 0;
    }
    
    .logo-text {
        font-size: 1.12rem;
        letter-spacing: 0.16em;
    }

    .logo.logo--signature {
        padding: 0.18rem 0.5rem 0.24rem;
        gap: 0.26rem;
    }

    .logo--signature .logo-glam {
        font-size: 1.02rem;
        letter-spacing: 0.09em;
    }

    .logo--signature .logo-date {
        font-size: 0.82rem;
        letter-spacing: 0.14em;
    }

    .hero {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        gap: var(--spacing-md);
    }
    
    .title-word--glam {
        font-size: 2rem;
        line-height: 1.15;
    }
    
    .title-word--date {
        font-size: 1.45rem;
        line-height: 1.15;
    }
    
    .title-line {
        font-size: 1rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-stats {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - var(--spacing-xs));
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        height: 250px;
        margin-top: var(--spacing-sm);
    }
    
    .floating-card {
        width: 100px;
        padding: var(--spacing-xs);
        font-size: 0.8rem;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .floating-card h3 {
        font-size: 0.9rem;
    }
    
    .floating-card p {
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .about-card,
    .feature-item {
        padding: var(--spacing-sm);
    }
    
    .card-number {
        font-size: 3rem;
    }
    
    .filters {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .filter-group label {
        font-size: 0.8rem;
    }
    
    .filter-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .featured-profiles {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .featured-image {
        height: 250px;
    }
    
    .featured-info {
        padding: var(--spacing-sm);
    }
    
    .featured-info h4 {
        font-size: 1rem;
    }
    
    .profile-card {
        border-radius: 15px;
    }
    
    .profile-image {
        height: 350px;
    }
    
    .profile-info {
        padding: var(--spacing-sm);
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .profile-age {
        font-size: 0.85rem;
    }
    
    .profile-price-value {
        font-size: 1.3rem;
    }
    
    .profile-actions-card {
        flex-direction: column;
    }
    
    .profile-actions-card .btn {
        width: 100%;
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .city-card h3 {
        font-size: 1.2rem;
        padding: var(--spacing-sm);
    }
    
    .city-card p {
        padding: 0 var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .profile-detail-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .profile-detail-image {
        width: 150px;
        height: 150px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .btn-whatsapp-large {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .profile-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .detail-section {
        padding: var(--spacing-sm);
    }
    
    .gallery-main {
        height: 250px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .gallery-thumbs img {
        height: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .scroll-indicator {
        bottom: var(--spacing-sm);
    }
    
    .mouse {
        width: 25px;
        height: 40px;
    }
    
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-out;
}

/* ============================================
   PROFILES SECTION
   ============================================ */

.profiles-section {
    background: var(--bg-secondary);
    padding: var(--spacing-xl) 0;
}

.filters-container {
    margin-bottom: var(--spacing-lg);
}

.filters {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    background: rgba(20, 17, 19, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
}

.filters .btn {
    min-height: 44px;
}

#applyFilters {
    box-shadow: 0 0 0 1px rgba(244, 63, 94, 0.2) inset;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.25);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    width: 100%;
}

@media (max-width: 600px) {
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-card {
    background: rgba(20, 17, 19, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardFadeIn 0.6s ease-out forwards;
    width: 100%;
    max-width: 100%;
    box-shadow: var(--shadow-card);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-rose);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 0;
}

.profile-card.is-hover::before {
    opacity: 0.1;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

.profile-card.is-hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(244, 63, 94, 0.5);
    box-shadow: var(--shadow-glow-strong), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.profile-card.is-hover .profile-image img {
    transform: scale(1.2);
    filter: brightness(1.1) saturate(1.2);
}

.profile-card:active {
    transform: translateY(-12px) scale(1.01);
}

.profile-image {
    width: 100%;
    height: 380px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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


.profile-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(157, 78, 221, 0.85), rgba(255, 20, 147, 0.4), transparent);
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition-normal);
    transform: translateY(20px);
    z-index: 2;
}

.profile-card.is-hover .profile-image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.profile-badges-container {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.profile-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}
/* Desktop: texto completo; mobile: só ícone (evita cortar "Verificado"/"Online") */
.profile-badge .badge-full,
.featured-badge .badge-full { display: inline; }
.profile-badge .badge-mobile,
.featured-badge .badge-mobile { display: none; }

.profile-info {
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
    background: rgba(15, 10, 15, 0.8);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--spacing-xs);
}

.profile-name {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.profile-age {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--accent);
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.profile-location svg {
    width: 16px;
    height: 16px;
}

.profile-stats {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-sm);
}

.profile-stat {
    flex: 1;
    text-align: center;
}

.profile-stat-value {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--rose);
    display: block;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.profile-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-price {
    margin-top: var(--spacing-sm);
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-price-value {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.profile-favorite {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.profile-favorite:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary);
}

.profile-favorite svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.profile-favorite.active svg {
    fill: var(--primary);
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(244, 63, 94, 0.6));
}

.profile-service {
    margin: var(--spacing-xs) 0;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.load-more-container {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.no-profiles {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-secondary);
}

.no-profiles p {
    font-size: 1.2rem;
}

/* Featured Section */
.featured-section {
    margin-bottom: var(--spacing-xl);
}

.featured-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.featured-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.featured-card {
    background: rgba(20, 17, 19, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.35);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.featured-card.is-hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow-strong);
}

.featured-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

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

.featured-card.is-hover .featured-image img {
    transform: scale(1.15);
}

.featured-badges {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.featured-badge {
    position: absolute;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .profile-badge .badge-full,
    .featured-badge .badge-full { display: none !important; }
    .profile-badge .badge-mobile,
    .featured-badge .badge-mobile { display: inline !important; }
    .profile-badge,
    .featured-badge {
        min-width: 1.75rem;
        padding: 0.3rem 0.45rem;
        font-size: 0.82rem;
        right: 0.5rem;
        text-align: center;
        letter-spacing: 0;
    }

    .profile-badge {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .profile-badges-container {
        right: 6px;
    }
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: var(--spacing-md);
    opacity: 0;
    transition: var(--transition-normal);
    transform: translateY(20px);
}

.featured-card.is-hover .featured-overlay {
    opacity: 1;
    transform: translateY(0);
}

.featured-info {
    padding: var(--spacing-md);
    text-align: center;
}

.featured-info h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.featured-rating {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.featured-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.featured-price {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profiles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.profiles-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary);
}

.profiles-controls {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.25rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.view-btn svg {
    width: 20px;
    height: 20px;
}

.view-btn:hover {
    color: var(--primary);
    background: var(--bg-glass-hover);
}

.view-btn.active {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.sort-select {
    padding: 0.75rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.25);
}

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

.profiles-grid.list-view .profile-card {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

.profiles-grid.list-view .profile-image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.profiles-grid.list-view .profile-info {
    flex: 1;
    padding: var(--spacing-md);
}

.compare-selected {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5) !important;
}

.btn-compare {
    width: 36px;
    height: 36px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    padding: 0;
}

.btn-compare:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-glass-hover);
}

.btn-compare.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--text-primary);
}

.btn-compare svg {
    width: 18px;
    height: 18px;
}

#compareBtn {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.compare-count {
    background: var(--accent);
    color: var(--bg-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.filter-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: var(--bg-glass-hover);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.filter-range {
    grid-column: 1 / -1;
}

.range-slider {
    position: relative;
    padding: var(--spacing-sm) 0;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    margin: var(--spacing-xs) 0;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.4);
}

#priceRangeValue {
    color: var(--primary);
    font-weight: 600;
}

/* Profile Preview Tooltip - posição fixa ao lado do card, fecha ao sair o mouse */
.profile-preview {
    position: fixed;
    width: 280px;
    background: var(--bg-secondary);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    z-index: 10000;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
    box-shadow: var(--shadow-primary), 0 0 0 1px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .profile-preview {
        display: none !important;
    }
}

.profile-preview.show {
    opacity: 1;
    transform: translateY(0);
}

.preview-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-info h4 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.preview-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.preview-price {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--spacing-xs) 0;
}

.preview-rating {
    color: var(--accent);
    font-size: 0.9rem;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    pointer-events: none;
}

.toast {
    min-width: 300px;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(100px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-primary);
    backdrop-filter: blur(20px);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--accent);
}

.toast-warning {
    border-left: 4px solid #ffaa00;
}

.toast-info {
    border-left: 4px solid var(--primary);
}

.toast-error {
    border-left: 4px solid #ff4444;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
}

.spinner-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto var(--spacing-sm);
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    border-top-color: var(--secondary);
    animation-duration: 0.8s;
    margin-top: -70px;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    border-top-color: var(--accent);
    animation-duration: 0.6s;
    margin-top: -50px;
}

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

.spinner-text {
    color: var(--primary);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-top: var(--spacing-md);
}

/* Compare Modal */
.compare-modal {
    max-width: 1000px;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.compare-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: var(--spacing-md);
    text-align: center;
}

.compare-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-sm);
    border: 3px solid var(--primary);
}

.compare-card h3 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.compare-info {
    text-align: left;
    margin: var(--spacing-sm) 0;
}

.compare-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
    
    .featured-profiles {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .profiles-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .profiles-header h3 {
        text-align: center;
    }
    
    .sort-select {
        width: 100%;
    }
}

/* ============================================
   CITIES SECTION
   ============================================ */

.cities-section {
    padding: var(--spacing-xl) 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.city-card {
    background: rgba(20, 17, 19, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    cursor: pointer;
    position: relative;
}

.city-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 63, 94, 0.4);
    box-shadow: var(--shadow-glow), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.city-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.city-image {
    width: 100%;
    height: 200px;
    border-radius: 20px 20px 0 0;
}

.city-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    padding: var(--spacing-md);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.city-card p {
    padding: 0 var(--spacing-md);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.city-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}

/* ============================================
   MODAL & LOGIN
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-lg);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: fadeInUp 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary);
    background: var(--bg-glass);
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1200;
    background: rgba(20, 17, 19, 0.95);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-primary);
    padding: 14px 16px;
    display: none;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(14px);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.cookie-banner a {
    color: var(--accent);
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}


.profile-detail {
    text-align: center;
}

.profile-detail-image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.profile-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-detail-info {
    text-align: left;
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-glass);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-detail-info p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.profile-detail-info strong {
    color: var(--primary);
    margin-right: 0.5rem;
}

.profile-modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Profile Gallery */
.profile-gallery {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-tertiary);
    margin-bottom: var(--spacing-sm);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-md);
}

.online-badge {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
}

.gallery-fullscreen {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.gallery-fullscreen:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary);
}

.gallery-fullscreen svg {
    width: 20px;
    height: 20px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-xs);
}

.gallery-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.gallery-thumbs img:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.profile-gallery.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.profile-gallery.fullscreen .gallery-main {
    max-width: 90vw;
    max-height: 90vh;
    height: auto;
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.detail-section {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: var(--spacing-md);
}

.detail-section h3 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.info-item:hover {
    background: var(--bg-glass-hover);
}

.info-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.info-item div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.info-item .info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item .info-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.availability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.availability-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.availability-tag:hover {
    border-color: var(--primary);
    background: var(--bg-glass-hover);
}

.price-section {
    background: var(--gradient-dark);
    border: 2px solid var(--primary);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    border-radius: 10px;
    background: var(--bg-glass);
    transition: var(--transition-fast);
}

.price-item:hover {
    background: var(--bg-glass-hover);
    transform: translateX(5px);
}

.price-item.highlight {
    background: var(--gradient-primary);
    border: 1px solid var(--primary);
}

.price-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-item.highlight .price-label {
    color: var(--text-primary);
    font-weight: 600;
}

.price-value {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-item.highlight .price-value {
    color: var(--text-primary);
}

.review-author-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.review-verified {
    font-size: 0.75rem;
    color: var(--accent);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
}

.review-rating-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-left: auto;
}

.profile-detail-header {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: start;
}

.profile-detail-image {
    position: relative;
    flex-shrink: 0;
}

.online-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 3px solid var(--bg-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.profile-detail-main {
    flex: 1;
}

.profile-detail-badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin: var(--spacing-xs) 0;
}

.badge-verified,
.badge-vip,
.badge-new {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-verified {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.badge-vip {
    background: var(--gradient-primary);
    color: var(--text-primary);
}

.badge-new {
    background: var(--gradient-secondary);
    color: var(--text-primary);
}

.profile-detail-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-xs) 0;
}

.rating-stars {
    font-size: 1.2rem;
}

.rating-value {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: var(--text-secondary);
    font-weight: 600;
}

.info-value {
    color: var(--text-primary);
}

.price-highlight {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-online {
    color: var(--accent);
}

.status-offline {
    color: var(--text-muted);
}

.profile-description {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: var(--bg-glass);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-description h3 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.profile-description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.profile-reviews-section {
    margin: var(--spacing-md) 0;
}

.profile-reviews-section h3 {
    font-family: var(--font-primary);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.review-item {
    padding: var(--spacing-sm);
    background: var(--bg-glass);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    flex-wrap: wrap;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
}

.review-rating {
    font-size: 0.9rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: auto;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.profile-actions-card {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-actions-card .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.85rem;
    margin: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

.profile-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.profile-actions .btn {
    margin: 0;
}

.btn-whatsapp-large {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-whatsapp-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6);
}

#favoriteBtn.active {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

#favoriteBtn.active svg {
    fill: var(--text-primary);
    color: var(--text-primary);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }
    
    .hero-search {
        margin: var(--spacing-sm) 0;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
        padding: var(--spacing-sm);
    }
    
    .search-box input {
        width: 100%;
    }
    
    .btn-search {
        width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filters {
        flex-direction: column;
        padding: var(--spacing-sm);
        gap: 0.75rem;
    }
    
    .filter-group {
        width: 100%;
    }

    .filters .btn {
        width: 100%;
    }
    
    .filter-checkboxes {
        flex-direction: column;
    }
    
    .checkbox-label {
        width: 100%;
        justify-content: space-between;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .profiles-grid.list-view .profile-card {
        flex-direction: column;
    }
    
    .profiles-grid.list-view .profile-image {
        width: 100%;
        height: 300px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .featured-card {
        min-width: 0;
    }
    
    .featured-image {
        height: 200px;
    }
    
    .profiles-header {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
    }
    
    .profiles-header h3 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .profiles-controls {
        flex-direction: column;
        width: 100%;
    }

    .results-count {
        width: 100%;
        text-align: center;
    }
    
    .view-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .sort-select {
        width: 100%;
    }
    
    #compareBtn {
        width: 100%;
        justify-content: center;
    }
    
    .profile-card {
        margin-bottom: var(--spacing-sm);
    }
    
    .profile-image {
        height: 300px;
    }
    
    .profile-actions-card {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .profile-actions-card .btn {
        width: 100%;
    }
    
    .profile-preview {
        display: none; /* Desabilitar preview em mobile */
    }
    
    .modal-content {
        max-width: 95vw;
        max-height: 90vh;
        padding: var(--spacing-md);
        margin: var(--spacing-sm);
    }
    
    .profile-modal-content {
        max-width: 95vw;
    }
    
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .profile-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .compare-grid {
        grid-template-columns: 1fr;
    }
    
    .toast-container {
        right: 1rem;
        left: 1rem;
        top: 80px;
    }
    
    .toast {
        min-width: auto;
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        left: 10px;
        right: 10px;
        bottom: 92px;
        z-index: 1150;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions .btn {
        flex: 1;
    }

}

