/* 🎨 PREMIUM EROTIC-SOFT HIGH-END DESIGN */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@600;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Premium */
    --preto-profundo: #000000;
    --cinza-carbono: #121212;
    --cinza-escuro: #0a0a0a;
    --cinza-medio: #1b1b1b;
    --branco-puro: #FFFFFF;
    --rosa-neon: #FF2DAF;
    --roxo-neon: #B43CFF;
    --azul-violeta: #4b4aff;
    --vermelho: #FF0033;
    
    /* Tipografia Premium */
    --font-titulo-premium: 'Playfair Display', serif;
    --font-titulo: 'Montserrat', sans-serif;
    --font-texto: 'Inter', sans-serif;
    
    /* Espaçamento */
    --espacamento-cards: 32px;
    --margem-mobile: 22px;
    --border-radius: 20px;
    --border-radius-grande: 28px;
    
    /* Efeitos Neon */
    --blur-card: blur(20px);
    --glow-rosa: 0 0 30px rgba(255, 45, 175, 0.6);
    --glow-roxo: 0 0 30px rgba(180, 60, 255, 0.6);
    --glow-forte: 0 0 40px rgba(255, 45, 175, 0.8), 0 0 80px rgba(180, 60, 255, 0.4);
    --sombra-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --neon-border: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
}

body {
    font-family: var(--font-texto);
    line-height: 1.6;
    color: var(--branco-puro);
    background: var(--preto-profundo);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo);
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-family: var(--font-titulo-premium);
    font-weight: 700;
}

.price, .amount {
    font-family: var(--font-titulo);
}

/* ===== HEADER PREMIUM ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 45, 175, 0.1);
    border-bottom: 1px solid rgba(255, 45, 175, 0.2);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa);
    object-fit: cover;
    transition: all 0.3s ease;
}

.header-avatar:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-forte);
}

.header-nome {
    font-family: var(--font-titulo-premium);
    font-size: 22px;
    font-weight: 600;
    color: var(--branco-puro);
    letter-spacing: 1px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rosa-neon), var(--roxo-neon));
    transition: width 0.3s ease;
}

.header-nav a:hover {
    color: var(--branco-puro);
    text-shadow: var(--glow-rosa);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo-neon));
    border: none;
    border-radius: 30px;
    color: var(--branco-puro);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--glow-rosa);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-forte);
    filter: brightness(1.2);
}

/* 📦 CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 22px;
}

@media (min-width: 768px) {
    .container {
        padding: 60px 40px;
    }
}

/* 🎯 HEADER/NAVIGATION */
header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: var(--blur-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 79, 163, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-titulo);
    font-size: 24px;
    font-weight: 700;
    color: var(--rosa-neon);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--branco);
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

nav a:hover {
    color: var(--rosa-neon);
    transform: translateY(-2px);
}

nav a.active {
    background: rgba(255, 79, 163, 0.1);
    color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

/* 🎴 CARDS GLASSMORPHISM */
.card, .glass-card {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--sombra-card);
    transition: all 0.3s ease;
}

.card:hover, .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 79, 163, 0.2);
    border-color: rgba(255, 79, 163, 0.3);
}

/* 🏠 HOME - HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 80px;
}

.hero-background,
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    z-index: 1;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
}

/* 🖼️ PREVIEW GRID */
.preview-section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, var(--branco), var(--rosa-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--espacamento-cards);
}

.preview-card {
    position: relative;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.preview-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.preview-card:hover .preview-image {
    filter: blur(8px);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.preview-lock {
    font-size: 48px;
    color: var(--vermelho);
    filter: drop-shadow(var(--glow-vermelho));
}

.preview-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--branco);
}

.preview-badge {
    background: var(--vermelho);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-vermelho);
}

/* ✨ BENEFITS SECTION */
.benefits-section {
    margin: 100px 0;
    padding: 60px 40px;
    background: rgba(34, 34, 34, 0.4);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius-grande);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 32px;
    color: var(--rosa-neon);
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--branco);
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* 💬 TESTIMONIALS */
.testimonials-section {
    margin: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--espacamento-cards);
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo));
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

/* 🎯 CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo));
    border-radius: var(--border-radius-grande);
    padding: 60px 40px;
    text-align: center;
    margin: 100px 0;
    border: 2px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa), var(--sombra-card);
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-final .btn {
    background: var(--branco);
    color: var(--rosa-neon);
    font-size: 20px;
    padding: 20px 60px;
}

.cta-final .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* 🔘 BUTTONS PREMIUM */
.btn, button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--vermelho), var(--rosa-neon));
    color: var(--branco);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-titulo);
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 25px rgba(255, 0, 51, 0.5);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before, button::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;
}

.btn:hover::before, button:hover::before {
    left: 100%;
}

.btn:hover, button:hover {
    background: linear-gradient(135deg, var(--rosa-neon), var(--vermelho));
    box-shadow: var(--glow-vermelho);
    transform: translateY(-3px) scale(1.02);
}

.btn:active, button:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--vermelho);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
}

.btn-outline:hover {
    background: var(--vermelho);
    border-color: var(--vermelho);
    color: var(--branco);
}

.btn-success { 
    background: var(--verde);
    color: var(--preto);
    box-shadow: 0 4px 20px rgba(79, 255, 120, 0.4);
}

.btn-success:hover {
    background: #6FFF98;
    box-shadow: 0 0 20px rgba(79, 255, 120, 0.6);
}

.btn-secondary {
    background: var(--cinza-medio);
    box-shadow: 0 4px 20px rgba(34, 34, 34, 0.4);
}

.btn-secondary:hover {
    background: #333;
}

/* 📱 PRICING CARDS */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--espacamento-cards);
    margin: 60px 0;
}

.pricing-card {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius-grande);
    padding: 40px 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--sombra-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rosa-neon), var(--roxo));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 79, 163, 0.3);
    border-color: var(--rosa-neon);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa), var(--sombra-card);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rosa-neon);
    color: var(--branco);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-rosa);
}

.pricing-card .badge-discount {
    background: var(--verde);
    color: var(--preto);
    box-shadow: 0 0 20px rgba(79, 255, 120, 0.5);
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--branco);
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin: 24px 0;
    gap: 8px;
}

.pricing-card .currency {
    font-size: 24px;
    color: var(--rosa-neon);
    font-weight: 700;
}

.pricing-card .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--branco);
    line-height: 1;
}

.pricing-card .period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card .price-detail {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-card .price-detail small {
    color: var(--verde);
    font-size: 14px;
    font-weight: 600;
    background: rgba(79, 255, 120, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card .plan-features {
    list-style: none;
    margin: 32px 0;
    padding: 0;
}

.pricing-card .plan-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card .plan-features li:last-child {
    border-bottom: none;
}

.pricing-card .btn-subscribe {
    width: 100%;
    margin-top: 24px;
    padding: 18px;
    font-size: 18px;
    background: var(--rosa-neon);
    color: var(--branco);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 79, 163, 0.4);
    text-decoration: none;
    display: block;
}

.pricing-card .btn-subscribe:hover {
    background: #FF6BB8;
    box-shadow: var(--glow-rosa);
    transform: translateY(-2px);
}

.pricing-card.featured .btn-subscribe {
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo));
    box-shadow: var(--glow-rosa);
}

/* 🎯 OFFER HEADER */
.offer-header {
    text-align: center;
    margin-bottom: 60px;
}

.offer-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--branco), var(--rosa-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* 🎁 GUARANTEE SECTION */
.guarantee {
    background: rgba(79, 255, 120, 0.1);
    border: 2px solid var(--verde);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.guarantee h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--verde);
}

.guarantee p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* 📱 HOME LOGADA - SAUDAÇÃO */
.welcome-banner {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa);
    object-fit: cover;
}

.welcome-text h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.welcome-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* 🔖 MENU RÁPIDO HORIZONTAL */
.quick-menu {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    margin-bottom: 48px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
}

.quick-menu::-webkit-scrollbar {
    height: 6px;
}

.quick-menu::-webkit-scrollbar-track {
    background: rgba(34, 34, 34, 0.6);
    border-radius: 10px;
}

.quick-menu::-webkit-scrollbar-thumb {
    background: var(--rosa-neon);
    border-radius: 10px;
}

.quick-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--branco);
    white-space: nowrap;
    transition: all 0.3s ease;
    min-width: 120px;
}

.quick-menu-item:hover {
    background: rgba(255, 79, 163, 0.1);
    border-color: var(--rosa-neon);
    transform: translateY(-2px);
}

.quick-menu-icon {
    font-size: 24px;
}

.quick-menu-label {
    font-size: 14px;
    font-weight: 600;
}

/* 📰 FEED DE CONTEÚDO */
.content-feed {
    display: grid;
    gap: var(--espacamento-cards);
}

.feed-post {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feed-post:hover {
    transform: translateY(-3px);
    border-color: var(--vermelho);
    box-shadow: var(--glow-vermelho);
}

.feed-post-image, .feed-post-video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.feed-post-content {
    padding: 24px;
}

.feed-post-actions {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.feed-action-btn {
    background: none;
    border: none;
    color: var(--branco);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
}

.feed-action-btn:hover {
    color: var(--vermelho);
    transform: scale(1.2);
}

.feed-action-btn.liked {
    color: var(--vermelho);
}

.feed-post-caption {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 15px;
}

/* 📸 GRID DE FOTOS (3x3) */
.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 32px 0;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.photo-item:hover {
    transform: scale(1.05);
    z-index: 10;
    border-color: var(--vermelho);
    box-shadow: var(--glow-vermelho);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 🎬 GRID DE VÍDEOS */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--espacamento-cards);
    margin: 32px 0;
}

.video-item {
    position: relative;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-icon {
    font-size: 64px;
    color: var(--branco);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.video-info {
    padding: 16px;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 4px;
}

.video-duration {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 💎 PACOTES PREMIUM (Pay-per-view) */
.premium-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--espacamento-cards);
    margin: 32px 0;
}

.package-card {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 2px solid var(--roxo);
    box-shadow: 0 0 20px rgba(147, 0, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.package-card::before {
    content: '💎';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(147, 0, 255, 0.5);
}

.package-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--branco);
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--roxo);
    margin-bottom: 16px;
}

.package-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 🎁 PRESENTES E WISHLIST */
.presentes-grid, .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--espacamento-cards);
    margin-top: 32px;
}

.presente-card, .wishlist-card {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-radius: var(--border-radius);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--sombra-card);
    transition: all 0.3s ease;
    text-align: center;
}

.presente-card:hover, .wishlist-card:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.presente-icon, .wishlist-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.presente-card h3, .wishlist-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--branco);
}

.presente-price, .wishlist-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--rosa-neon);
    margin-bottom: 8px;
}

.wishlist-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rosa-neon), var(--roxo));
    border-radius: 20px;
    transition: width 0.3s ease;
    box-shadow: var(--glow-rosa);
}

.progress-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* 💬 CHAT CTA */
.chat-cta {
    background: linear-gradient(135deg, var(--rosa-neon), var(--roxo));
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin: 60px 0;
    border: 2px solid var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.chat-cta h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.chat-cta p {
    margin-bottom: 24px;
    font-size: 16px;
    opacity: 0.95;
}

/* 📝 FORMS */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--preto);
    padding: 40px 22px;
}

.auth-container {
    width: 100%;
    max-width: 480px;
}

.auth-box {
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: var(--blur-card);
    padding: 48px;
    border-radius: var(--border-radius-grande);
    box-shadow: var(--sombra-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-box h1 {
    margin-bottom: 12px;
    color: var(--branco);
    font-size: 36px;
}

.auth-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--branco);
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    background: rgba(17, 17, 17, 0.6);
    color: var(--branco);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--rosa-neon);
    box-shadow: var(--glow-rosa);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-links {
    text-align: center;
    margin-top: 24px;
}

.auth-links a {
    color: var(--rosa-neon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    color: #FF6BB8;
    text-shadow: var(--glow-rosa);
}

/* 🛡️ ADMIN (mantém separado do tema principal) */
.admin-body {
    display: flex;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.admin-sidebar {
    width: 250px;
    background: #2c3e50;
    color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.admin-sidebar h2 {
    margin-bottom: 30px;
    color: #fff;
}

.admin-sidebar nav a {
    display: block;
    color: #ecf0f1;
    padding: 10px;
    margin: 5px 0;
    border-radius: 4px;
    text-decoration: none;
}

.admin-sidebar nav a:hover {
    background: #34495e;
}

.admin-main {
    flex: 1;
    padding: 30px;
    background: #f5f5f5;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.admin-table tr:hover {
    background: #f8f9fa;
}

/* 💬 CHAT */
.chat-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 80px);
    background: rgba(17, 17, 17, 0.95);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-sidebar {
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: var(--blur-card);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    padding: 20px;
}

.chat-messages {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 🎨 UTILITY CLASSES */
.subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-size: 18px;
}

.badge-free { 
    background: var(--verde);
    color: var(--preto);
}

.badge-premium { 
    background: var(--rosa-neon);
    color: var(--branco);
}

.badge-vip { 
    background: var(--roxo);
    color: var(--branco);
}

.status-active { color: var(--verde); }
.status-inactive { color: #dc3545; }
.status-pending { color: #FFD700; }

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 32px 22px;
    }

    nav {
        flex-direction: column;
        padding: 15px 22px;
        gap: 16px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .nav-menu a {
        text-align: center;
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card .amount {
        font-size: 42px;
    }
    
    .preview-grid, .videos-grid, .premium-packages {
        grid-template-columns: 1fr;
    }
    
    .presentes-grid, .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-container {
        grid-template-columns: 1fr;
    }
    
    .admin-body {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        min-height: auto;
    }
    
    .welcome-banner {
        flex-direction: column;
        text-align: center;
    }

    .welcome-text h2 {
        font-size: 24px;
    }
    
    .offer-header h1 {
        font-size: 32px;
    }

    .offer-header p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .quick-menu {
        gap: 12px;
    }

    .quick-menu-item {
        min-width: 100px;
        padding: 12px 16px;
    }

    .cta-final h2 {
        font-size: 28px;
    }

    .cta-final p {
        font-size: 16px;
    }

    .guarantee h3 {
        font-size: 22px;
    }

    .chat-cta h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .pricing-card .amount {
        font-size: 36px;
    }

    .pricing-card h3 {
        font-size: 22px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .offer-header h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn, button {
        padding: 14px 32px;
        font-size: 15px;
    }
}
