/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    /* Colors based on GUMA Logo */
    --primary-color: #4096ff; /* A vibrant light blue matching the logo */
    --primary-hover: #69b1ff;
    --primary-glow: rgba(64, 150, 255, 0.4);
    
    --bg-dark: #080b12;
    --surface-color: #111827;
    --surface-light: #1f2937;
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(17, 24, 39, 0.7);
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
    
    /* Effects */
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 177, 255, 0.6);
}

.btn-secondary {
    background-color: var(--surface-light);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #2d3748;
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

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

.logo img {
    height: 40px;
    transform: scale(3.5);
    transform-origin: left center;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(64, 150, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(64, 150, 255, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* TV Mockup — Trailer Player */
.tv-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1f2937, #111827);
    border-radius: 16px;
    border: 3px solid #374151;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 30px rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tv-screen {
    width: 98%;
    height: 96%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* iframe do YouTube preenche a tela toda */
.tv-screen iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    pointer-events: none; /* Impede interação com o iframe */
}

/* Overlay de informações do trailer */
.trailer-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 20px 16px 32px;
    z-index: 5;
    pointer-events: none;
}

.trailer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(239,68,68,0.8);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 6px;
}

.trailer-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.trailer-meta {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.6);
    margin-top: 3px;
}

/* Dots do trailer */
.trailer-dots {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 6;
}

.trailer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.trailer-dot.active {
    background: #fff;
    width: 16px;
    border-radius: 3px;
}

.tv-stand {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 16px;
    background: #374151;
    border-radius: 0 0 8px 8px;
}


/* ==========================================================================
   Features Section
   ========================================================================== */
/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--surface-color) 0%, #0d1526 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) repeat(3, auto);
    align-items: center;
    gap: 0;
}

/* Use flexbox approach instead */
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 40px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 8px;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

@media (max-width: 768px) {
    .stat-item { padding: 16px 20px; }
    .stat-number { font-size: 2rem; }
    .stat-divider { display: none; }
}

/* ==========================================================================
   Features Section — Premium Redesign
   ========================================================================== */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-card {
    position: relative;
    background: var(--surface-color);
    padding: 40px 32px;
    transition: var(--transition);
    overflow: hidden;
    border: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    background: var(--surface-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(64,150,255,0.15), rgba(64,150,255,0.05));
    border: 1px solid rgba(64,150,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(64,150,255,0.2);
    box-shadow: 0 0 20px rgba(64,150,255,0.2);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Releases Section
   ========================================================================== */
.releases {
    padding: 100px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.releases-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 10px 28px;
    border-radius: 100px;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* ---- Cover-Flow Carousel ---- */
.releases-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0 20px;
    margin-bottom: 24px;
    /* fade edges laterais */
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.releases-track {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}



/* Skeleton loading */
.release-skeleton {
    aspect-ratio: 2/3;
    width: 200px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--surface-color) 25%, var(--surface-light) 50%, var(--surface-color) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 12px;
}

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

/* Release Card */
.release-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 2/3;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    /* default side state */
    width: 160px;
    opacity: 0.55;
    transform: scale(0.82);
    transition: width 0.45s ease, opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.release-card.active {
    width: 220px;
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 0 2px var(--primary-color), 0 0 30px rgba(64,150,255,0.3);
    z-index: 5;
}

.release-card.near {
    width: 180px;
    opacity: 0.78;
    transform: scale(0.9);
}

@media (max-width: 768px) {
    .release-card         { width: 130px; }
    .release-card.active  { width: 200px; }
    .release-card.near    { width: 155px; }
}

.release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.release-card:hover img {
    transform: scale(1.05);
}

.release-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
}

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

.release-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.release-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #fbbf24;
    font-weight: 600;
}

/* ---- Tags de Dub/Leg + Nota (sempre visiveis) ---- */
.card-tags {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    z-index: 3;
}

.card-tag {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.card-tag-new   { background: var(--primary-color); color: #fff; }
.card-tag-dub   { background: #10b981; color: #fff; }
.card-tag-leg   { background: #f59e0b; color: #000; }
.card-tag-rating{ background: rgba(0,0,0,0.75); color: #fbbf24; border: 1px solid rgba(251,191,36,0.4); }

/* Overlay sempre visivel no card active */
.release-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    z-index: 2;
}

.release-card.active .release-card-overlay,
.release-card:hover .release-card-overlay {
    opacity: 1;
}

/* Cursor indicando que é clicável */
.release-card.active {
    cursor: pointer;
}

.release-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.release-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #fbbf24;
    font-weight: 600;
}

/* hint de clique no card ativo */
.card-click-hint {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.card-hint-hidden {
    display: none;
}


/* ---- Modal de Sinopse ---- */
.synopsis-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.synopsis-modal-bg.open {
    opacity: 1;
    pointer-events: all;
}

.synopsis-modal {
    background: var(--surface-color);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    display: flex;
    gap: 0;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s ease;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

.synopsis-modal-bg.open .synopsis-modal {
    transform: scale(1) translateY(0);
}

.synopsis-modal::-webkit-scrollbar { display: none; }

/* Backdrop do fundo do modal */
.modal-backdrop-img {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
}
.modal-backdrop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: blur(8px);
}

.modal-poster {
    flex-shrink: 0;
    width: 220px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.modal-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    flex: 1;
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    padding-right: 40px;
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-tag-dub    { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
.modal-tag-leg    { background: rgba(245,158,11,0.15);  color: #f59e0b; border: 1px solid rgba(245,158,11,0.3); }
.modal-tag-genre  { background: rgba(255,255,255,0.07); color: var(--text-muted); border: 1px solid var(--border-color); }
.modal-tag-year   { background: rgba(64,150,255,0.1);   color: var(--primary-color); border: 1px solid rgba(64,150,255,0.2); }

.modal-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 800;
}

.modal-duration {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.modal-plot-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.modal-plot {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.modal-cast {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-cast strong {
    color: var(--text-main);
}

.modal-loading {
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

.modal-cta {
    margin-top: auto;
}

@media (max-width: 600px) {
    .synopsis-modal { flex-direction: column; }
    .modal-poster { width: 100%; height: 220px; border-radius: 20px 20px 0 0; }
    .modal-poster img { object-position: top; }
}


.release-card-no-poster {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    padding: 16px;
    text-align: center;
}

.release-card-no-poster i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.release-card-no-poster span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Transicao suave do grid */
.releases-grid {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Dots de navegacao */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(64, 150, 255, 0.5);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 5px;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-glow);
}

.releases-cta {

    text-align: center;
}

.releases-cta p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 30px 20px;
    margin: 0 -20px 40px; /* Negative margin to bleed to edges on mobile */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pricing-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1200px) {
    .pricing-grid {
        justify-content: center;
        overflow-x: visible;
        margin: 0 auto 40px;
        padding: 30px 0;
    }
}

.price-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 32px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(64,150,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.price-card > * {
    position: relative;
    z-index: 1;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(64,150,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(64,150,255,0.05);
}

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

.price-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(64, 150, 255, 0.15);
    background: linear-gradient(180deg, rgba(64,150,255,0.05) 0%, var(--surface-color) 100%);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 30px rgba(64,150,255,0.25);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(64, 150, 255, 0.4);
    z-index: 2;
    white-space: nowrap;
}

.price-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: #fff;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 10px;
    margin-right: 4px;
    color: var(--text-muted);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
}

.cents {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 6px;
    margin-left: 2px;
}

.period {
    color: var(--text-muted);
    font-size: 0.95rem;
    align-self: flex-end;
    margin-bottom: 6px;
    margin-left: 6px;
}

/* Melhoria nos botões dentro dos cards */
.price-card .btn {
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
}

.price-card .btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card .btn-secondary:hover {
    background: rgba(64, 150, 255, 0.1);
    border-color: var(--primary-color);
    color: #fff;
}

.price-card.popular .btn-primary {
    box-shadow: 0 8px 20px rgba(64, 150, 255, 0.3);
}

.price-card.popular .btn-primary:hover {
    box-shadow: 0 12px 25px rgba(64, 150, 255, 0.5);
}

.savings {
    color: #10b981; /* green */
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 10px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.price-features li i {
    color: var(--primary-color);
    font-weight: bold;
}

.pricing-footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq {
    padding: 100px 0;
    background-color: var(--surface-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    margin-bottom: 16px;
    font-size: 1.125rem;
}

/* ==========================================================================
   Platforms Ticker
   ========================================================================== */
.platforms-ticker {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #05070a 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.platforms-header {
    text-align: center;
    margin-bottom: 40px;
}

.platforms-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollTicker 40s linear infinite;
    align-items: center;
}

.ticker-track:hover {
    animation-play-state: paused;
}

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

.ticker-item {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    cursor: default;
    letter-spacing: -1px;
}

.ticker-item:hover {
    color: #fff;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Tipografia especifica das marcas */
.ticker-item.netflix { font-family: "Arial Narrow", sans-serif; letter-spacing: 2px; font-weight: 700; transform: scaleY(1.2); display: inline-block;}
.ticker-item.prime { font-weight: 700; font-style: italic; letter-spacing: -1px; }
.ticker-item.max { font-family: "Arial Black", sans-serif; letter-spacing: -2px; }
.ticker-item.disney { font-family: "Comic Sans MS", "Chalkboard SE", cursive; letter-spacing: 0px; }
.ticker-item.globo { font-weight: 800; letter-spacing: -2px; }
.ticker-item.apple { font-weight: 300; font-family: -apple-system, sans-serif; letter-spacing: 1px; }
.ticker-item.paramount { font-weight: 500; font-family: "Georgia", serif; font-style: italic;}
.ticker-item.crunchy { font-weight: 900; letter-spacing: 1px; text-transform: uppercase;}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #05070a;
    padding: 60px 0 20px;
    position: relative;
}

.footer-top-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
    box-shadow: 0 0 20px var(--primary-glow);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
    transform: scale(3.5);
    transform-origin: left center;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
    line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(64,150,255,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Como Funciona
   ========================================================================== */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-color);
}

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

.step-card {
    background: var(--surface-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(64,150,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2171d1);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(64,150,255,0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Depoimentos (Prova Social)
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--surface-color);
}

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

.testimonial-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.author-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Pricing CRO Elements
   ========================================================================== */
.fake-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: -5px;
    opacity: 0.7;
}

.guarantee-seal {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 24px;
    border-radius: 16px;
}

.guarantee-seal i {
    font-size: 3.5rem;
    color: #10b981;
}

.guarantee-text h4 {
    color: #10b981;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.guarantee-text p {
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-wpp 2s infinite;
}

.floating-wpp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-wpp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .price-card.popular {
        transform: scale(1);
    }
    
    .price-card.popular:hover {
        transform: translateY(-5px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .btn-lg {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--surface-color);
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    /* Correções de Layout Mobile para as novas seções */
    .steps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        margin: 0 -20px 40px;
        padding: 20px;
        scroll-snap-type: x mandatory;
    }

    .price-card {
        flex: 0 0 75vw;
        width: auto;
        padding: 24px 16px;
        scroll-snap-align: center;
    }

    .price-card h3 { font-size: 1.2rem; }
    .price .amount { font-size: 2.2rem; }
    .price-features li { font-size: 0.85rem; }
    
    .price-card .btn {
        padding: 12px;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        white-space: normal;
        text-align: center;
        width: 80%;
        line-height: 1.2;
        top: -12px;
    }

    .guarantee-seal {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        margin: 20px auto 0;
    }

    .guarantee-seal i {
        font-size: 3rem;
        margin-bottom: 5px;
    }

    .floating-wpp {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }
}
