/* ================================================================
   CLUBE VIP DOS DRAMAS — Design System Premium
   Rosa + Roxo Moderno | Estilo Netflix
   ================================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --pink-primary: #ff2d85;
    --pink-dark: #d91a6e;
    --pink-light: #ff5fa0;
    --purple-primary: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-light: #a78bfa;
    --gradient-primary: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    --gradient-hero: linear-gradient(135deg, #ff2d85 0%, #8b5cf6 50%, #06b6d4 100%);
    --gradient-glow: linear-gradient(135deg, rgba(255,45,133,0.4), rgba(139,92,246,0.4));
    --bg-deep: #03040b;
    --bg-dark: #0a0c1a;
    --bg-card: rgba(15, 20, 40, 0.7);
    --bg-glass: rgba(15, 23, 42, 0.75);
    --text-white: #ffffff;
    --text-gray-100: #f3f4f6;
    --text-gray-300: #d1d5db;
    --text-gray-400: #9ca3af;
    --text-gray-500: #6b7280;
    --text-gray-600: #4b5563;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 45, 133, 0.3);
    --shadow-pink: 0 0 30px rgba(255, 45, 133, 0.25);
    --shadow-purple: 0 0 30px rgba(139, 92, 246, 0.25);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-full: 9999px;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #0f172a 0%, var(--bg-deep) 100%);
    /* background-attachment: fixed removido — causava repaint constante que interferia com iframes externos */
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--pink-primary);
    color: white;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: #27272a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3f3f46; }

/* ---- Utility Classes ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-pink { color: var(--pink-primary); }
.text-purple { color: var(--purple-primary); }
.text-gray-400 { color: var(--text-gray-400); }
.text-gray-500 { color: var(--text-gray-500); }
.text-green { color: #22c55e; }

/* ---- Glass Effect ---- */
.glass {
    background: var(--bg-glass);
    backdrop-filter: none saturate(1.5);
    -webkit-backdrop-filter: none saturate(1.5);
}

/* ================================================================
   HEADER
   ================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-base);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 45, 133, 0.3));
}

.header-logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.header-logo-text .accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-premium {
    background: linear-gradient(135deg, rgba(255,45,133,0.12), rgba(139,92,246,0.12));
    border: 1px solid rgba(255,45,133,0.25);
    color: var(--pink-primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-premium:hover {
    background: linear-gradient(135deg, rgba(255,45,133,0.2), rgba(139,92,246,0.2));
    transform: translateY(-1px);
    box-shadow: var(--shadow-pink);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    padding: 8rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,45,133,0.08) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 204, 21, 0.08);
    color: #facc15;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(250, 204, 21, 0.15);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    color: var(--text-gray-400);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   VSL (Video)
   ================================================================ */
.vsl-section {
    padding: 0 0 5rem;
}

.vsl-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

.vsl-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background-color: #000;
    transform: translateZ(0); /* Força aceleração de hardware */
    -webkit-transform: translateZ(0);
    backface-visibility: hidden; /* Evita piscar (flicker) */
    -webkit-backface-visibility: hidden;
    border: 3px solid rgba(255,255,255,0.06);
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.12),
        0 0 120px rgba(255, 45, 133, 0.06),
        var(--shadow-xl);
}

.vsl-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.vsl-controls {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.vsl-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(24, 24, 27, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.vsl-live-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-gray-300);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* ---- Primary CTA Button ---- */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1.1rem 3rem;
    border-radius: var(--radius-full);
    font-size: 1.15rem;
    font-weight: 800;
    transition: var(--transition-base);
    box-shadow: var(--shadow-pink);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

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

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 45, 133, 0.4), 0 0 80px rgba(139, 92, 246, 0.2);
}

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

.btn-cta:active {
    transform: scale(0.97);
}

.btn-cta svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* ================================================================
   SOCIAL PROOF BAR
   ================================================================ */
.social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    background: rgba(24, 24, 27, 0.15);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-deep);
    margin-left: -12px;
    object-fit: cover;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.social-proof-info .count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.social-proof-info .count svg {
    width: 16px;
    height: 16px;
    color: var(--pink-primary);
}

.social-proof-info .label {
    font-size: 0.7rem;
    color: var(--text-gray-500);
}

/* ================================================================
   DORAMA CAROUSEL (Infinite Scroll)
   ================================================================ */
.carousel-section {
    padding: 5rem 0;
    overflow: hidden;
}

.carousel-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.badge-tag {
    background: rgba(250, 204, 21, 0.08);
    color: #facc15;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(250, 204, 21, 0.15);
}

.carousel-track-wrapper {
    position: relative;
}

.carousel-track {
    display: flex;
    width: max-content;
    gap: 1.5rem;
    padding: 0 1.5rem;
    animation: scroll 50s linear infinite;
    will-change: transform; /* Promove a animação para camada GPU isolada */
}

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

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

.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, #0d1425, transparent);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, #04060d, transparent);
}

/* ---- Dorama Card ---- */
.dorama-card {
    width: 180px;
    flex-shrink: 0;
    cursor: pointer;
}

.dorama-card-inner {
    position: relative;
    aspect-ratio: 2/3;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.dorama-card:hover .dorama-card-inner {
    transform: scale(1.08);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-pink);
}

.dorama-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dorama-card:hover .dorama-card-inner img {
    transform: scale(1.1);
}

.dorama-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dorama-badge span {
    background: var(--gradient-primary);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dorama-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.dorama-overlay svg {
    width: 40px;
    height: 40px;
    color: white;
    fill: white;
    filter: drop-shadow(0 0 20px rgba(255,45,133,0.5));
}

/* ================================================================
   FEATURES
   ================================================================ */
.features-section {
    padding: 5rem 0;
}

.features-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: none;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255,45,133,0.1), rgba(139,92,246,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,45,133,0.2), rgba(139,92,246,0.2));
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pink-primary);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray-500);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing-section {
    padding: 5rem 0;
}

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

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.pricing-header p {
    color: var(--text-gray-400);
    font-size: 1rem;
}

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

/* ---- Pricing Card ---- */
.pricing-card {
    background: var(--bg-card);
    backdrop-filter: none;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-subtle);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card.featured {
    background: rgba(15, 20, 40, 0.9);
    border: 2px solid var(--pink-primary);
    box-shadow: 
        0 0 40px rgba(255, 45, 133, 0.1),
        inset 0 1px 0 rgba(255, 45, 133, 0.1);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.best-seller-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #000;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
}

.price-period {
    color: var(--text-gray-500);
    font-size: 0.9rem;
}

.price-save {
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

/* ---- Pricing Buttons ---- */
.btn-pricing-secondary {
    display: block;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.btn-pricing-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-pricing-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-pink);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 45, 133, 0.35);
}

.btn-pricing-primary svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.payment-methods svg {
    width: 14px;
    height: 14px;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

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

.testimonials-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.testimonials-header p {
    color: var(--text-gray-400);
    font-size: 1.1rem;
}

/* ---- Image Carousel ---- */
.testimonial-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 3.5rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: none;
    padding: 0.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--pink-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-pink);
}

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

.carousel-nav-btn.prev { left: 0; }
.carousel-nav-btn.next { right: 0; }

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testimonial-slide {
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.testimonial-slide .img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-2xl);
    border: 3px solid rgba(24, 24, 27, 0.8);
    box-shadow: var(--shadow-xl);
    background: rgba(24, 24, 27, 1);
    transition: var(--transition-base);
}

.testimonial-slide:hover .img-wrapper {
    transform: scale(1.02);
    border-color: var(--border-glow);
}

.testimonial-slide img {
    width: 100%;
    height: auto;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-dot.active {
    width: 24px;
    background: var(--pink-primary);
    box-shadow: 0 0 10px rgba(255, 45, 133, 0.4);
}

/* ---- Text Testimonials ---- */
.text-testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.text-testimonial-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: none;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-base);
}

.text-testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

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

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.author-name-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.author-name-row span {
    font-weight: 800;
    font-size: 1.05rem;
}

.author-name-row svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.stars svg {
    width: 14px;
    height: 14px;
    color: #facc15;
    fill: #facc15;
    filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.5));
}

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

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: none;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    opacity: 0.6;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer p {
    color: var(--text-gray-600);
    font-size: 0.6rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 2;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ================================================================
   MOBILE CTA
   ================================================================ */
.mobile-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    display: none;
}

.mobile-cta button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-xl);
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 10px 40px rgba(255, 45, 133, 0.35);
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.mobile-cta button:active {
    transform: scale(0.97);
}

.mobile-cta button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-logo img {
        height: 36px;
    }

    .header-logo-text {
        font-size: 0.9rem;
    }

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

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

    .testimonial-images-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide.hide-mobile {
        display: none;
    }

    .text-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .dorama-card {
        width: 150px;
    }

    .mobile-cta {
        display: block;
    }

    .testimonial-carousel {
        padding: 0 3rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

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

    .hero {
        padding: 6.5rem 0 2rem;
    }

    .dorama-card {
        width: 130px;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* ================================================================
   ISOLAMENTO DO IFRAME TYNK — FIX PISCA-PISCA
   ================================================================ */

/* Isola o iframe em sua própria camada de composição */
.vsl-section {
    contain: layout style;
    isolation: isolate;
}

.vsl-frame {
    isolation: isolate;
    /* Força camada GPU separada para o contêiner do iframe */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.vsl-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    /* Sem contain: strict — pode causar problemas com iframes cross-origin */
}

/* O live-dot em sua própria camada não afeta o iframe */
.live-dot {
    will-change: opacity, box-shadow;
    isolation: isolate;
}
/* ---- Novas Classes de Pricing (Adicionado Recentemente) ---- */
.pricing-card {
    text-align: center;
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}
.pricing-card.featured .plan-name {
    color: var(--text-white);
}
.plan-sub {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
}
.pricing-card.featured .plan-sub {
    color: var(--text-gray-300);
}
.price-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}
.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: var(--text-white);
}
.price-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
}
.price-cents {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.price-type {
    font-size: 0.9rem;
    color: var(--text-gray-400);
    margin-bottom: 1.5rem;
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.guarantee-badge-dark {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
}
.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-gray-300);
}
.pricing-features li.feat-ok {
    color: var(--text-gray-100);
}
.pricing-features li.feat-bonus {
    color: #fbbf24;
}
.pricing-features li.feat-no {
    color: var(--text-gray-500);
    opacity: 0.7;
}
.pricing-features li.feat-no svg {
    opacity: 0.5;
}
.pricing-secure {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
