/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* ========================================
   VARIABLES
======================================== */
:root {
    --primary: #FFB800;
    --primary-dark: #E5A600;
    --primary-glow: rgba(255, 184, 0, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    --shadow-glow: 0 0 40px rgba(255, 184, 0, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ========================================
   CONTAINER
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
    padding: 0 10px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    padding: 40px 0 60px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 140px;
    height: auto;
    border-radius: 12px;
}

.headline {
    font-size: clamp(1.5rem, 6vw, 3rem);
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
    position: relative;
    padding: 0 10px;
}

.subheadline {
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    padding: 0 10px;
}

/* VSL Container */
.vsl-container {
    max-width: 320px;
    margin: 0 auto 24px;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-glow);
}

/* VSL Video Wrapper */
.vsl-wrapper .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
}

.vsl-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.vsl-wrapper .video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.vsl-wrapper .video-play-overlay:hover {
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.15) 0%, transparent 50%);
}

.vsl-wrapper .video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 184, 0, 0.7);
    }
}

.vsl-wrapper .video-play-overlay:hover .video-play-btn {
    transform: scale(1.1);
}

.vsl-wrapper .video-play-overlay.hidden {
    display: none;
}

/* CTA Teste Grátis - Abaixo da VSL */
.cta-teste-gratis {
    text-align: center;
    margin-bottom: 40px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.btn-teste-gratis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    width: 100%;
}

.btn-teste-gratis:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.btn-teste-gratis svg {
    flex-shrink: 0;
}

/* Vantagens */
.vantagens {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.vantagem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.vantagem-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.vantagem-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 12px;
}

.vantagem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

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

/* ========================================
   DEPOIMENTOS SECTION
======================================== */
.depoimentos {
    padding: 60px 0;
    background: var(--bg-dark);
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px;
    justify-content: flex-start;
}

.carousel::before,
.carousel::after {
    content: '';
    flex: 0 0 calc((100% - 280px) / 2);
    min-width: calc((100% - 280px) / 2);
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* Screenshot-style testimonials */
.depoimento-screenshot {
    flex: 0 0 280px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.depoimento-screenshot:hover {
    border-color: var(--primary);
}

.depoimento-screenshot img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    pointer-events: none;
    -webkit-user-drag: none;
}

/* Video testimonials in carousel */
.depoimento-video {
    flex: 0 0 280px;
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.depoimento-video:hover {
    border-color: var(--primary);
}

/* Video Wrapper - VTurb Style */
.depoimento-video .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical videos */
}

.depoimento-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--radius);
    object-fit: contain;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-play-overlay.hidden {
    display: none;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
    transition: var(--transition);
}

.video-play-overlay:hover .video-play-btn {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   PLANOS SECTION
======================================== */
.planos {
    padding: 60px 0;
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.plano-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px 20px;
    position: relative;
    transition: var(--transition);
}

.plano-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.plano-card.premium {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.05) 0%, var(--bg-card) 100%);
    box-shadow: var(--shadow-glow);
}

.badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.plano-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.preco .valor {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.plano-features {
    list-style: none;
    margin-bottom: 24px;
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.btn-plano {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary);
}

.btn-plano:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

.btn-premium {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.btn-premium:hover {
    box-shadow: 0 6px 30px rgba(255, 184, 0, 0.4);
    background: var(--gradient-primary);
}

/* CTA Atendente */
.cta-atendente {
    text-align: center;
    margin: 40px auto 0;
    max-width: 400px;
    padding: 24px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.cta-atendente-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.btn-atendente {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
    max-width: 280px;
}

.btn-atendente:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.btn-atendente svg {
    flex-shrink: 0;
}

/* Garantia */
.garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.garantia svg {
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.garantia strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.garantia p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    padding: 32px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
}

.logo-footer {
    max-width: 100px;
    height: auto;
    border-radius: 8px;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.footer .disclaimer {
    font-size: 0.7rem;
    max-width: 350px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (min-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .vantagens {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .cta-atendente,
    .garantia {
        max-width: 500px;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
======================================== */
@media (min-width: 1024px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .vsl-container {
        max-width: 350px;
    }
    
    .garantia {
        margin-top: 50px;
    }
    
    .planos-grid {
        max-width: 800px;
    }
}

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

.hero .headline,
.hero .subheadline,
.vsl-container,
.cta-teste-gratis,
.vantagens {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero .subheadline {
    animation-delay: 0.1s;
}

.vsl-container {
    animation-delay: 0.2s;
}

.cta-teste-gratis {
    animation-delay: 0.25s;
}

.vantagens {
    animation-delay: 0.3s;
}

/* Touch optimization for mobile */
@media (hover: none) {
    .vantagem-card:hover,
    .depoimento-screenshot:hover,
    .plano-card:hover {
        transform: none;
    }
    
    .btn-premium:hover,
    .btn-atendente:hover,
    .btn-teste-gratis:hover {
        transform: none;
    }
    
    /* Larger tap targets for mobile */
    .btn-plano,
    .btn-atendente,
    .btn-teste-gratis {
        min-height: 52px;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
        padding: 8px;
    }
}