:root {
    --bg-dark: #0f0a15;
    --primary-purple: #c471ed;
    --primary-pink: #f64f59;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --accent-yellow: #ffc107;
    --btn-orange: #ffcc00;
    --card-bg: #150d22;
    --border-color: #2a1640;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.5;
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 60%, rgba(200, 20, 150, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, #300c40 0%, transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
}

.top-nav {
    background-color: #1a0826;
    border-bottom: 1px solid #3c125d;
    padding: 10px 0;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 100;
}

.marquee-container {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 45s linear infinite;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.marquee-content span {
    color: #c95cff;
    margin: 0 40px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 45px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Hero Section */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-container {
    width: 140px;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    position: relative;
    /* Removed border-radius and box-shadow to remove the ball effect */
}

.glow-logo {
    width: 100%;
    height: 100%;
    /* Removed border-radius and overflow hidden to let image be free */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to avoid clipping transparent images */
    filter: drop-shadow(0 0 50px rgba(210, 40, 255, 0.7)); /* Purple glow effect */
}

.fallback-logo {
    font-size: 4rem;
    color: white;
    background: linear-gradient(135deg, #7b2cbf, #ff007f);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.highlight-gradient {
    color: #e582ff;
    text-shadow: 0 0 15px rgba(229, 130, 255, 0.6), 0 0 30px rgba(229, 130, 255, 0.4);
    display: inline-block;
}

.badges-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
}

/* Video Section */
.video-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.video-placeholder {
    display: none; /* fallback */
}

.video-wrapper {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    border: 5px solid var(--btn-orange);
    border-radius: 35px;
    padding: 3px;
    background-color: var(--btn-orange);
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.video-player-container {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background-color: #000;
    /* This creates a vertical rectangle roughly phone proportion */
    aspect-ratio: 9/16; 
}

.video-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Fundo escuro igual imagem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
}

.play-button-large {
    width: 90px;
    height: 90px;
    background-color: var(--btn-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.5);
    margin-top: auto;
    margin-bottom: auto;
}

.play-button-large i {
    color: #0b1f3c; /* Azul marinho escuro do botão */
    font-size: 2.5rem;
    margin-left: 8px; /* centralizar opticamente o ícone de play */
}

.tap-to-listen {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
    letter-spacing: 1px;
}

.tap-to-listen i {
    font-size: 1.6rem;
    margin-bottom: 5px;
    animation: bounceUpDown 1.5s infinite;
}

@keyframes bounceUpDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-12px);
    }
    60% {
        transform: translateY(-6px);
    }
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #8a2be2, #c471ed);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(138, 43, 226, 0.7);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: all 0.5s;
}

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

.disclaimer {
    color: #666;
    font-size: 0.75rem;
    text-align: center;
}

/* Features */
.features .section-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: #5d2b82;
}

.icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: rgba(144, 61, 255, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #bfaaff;
}

.feature-card p {
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    padding: 0 10px;
}

/* Testimonials */
.testimonials .section-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.3;
}

.testimonial-carousel {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.testimonial-carousel::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.testimonial-carousel-inner {
    display: flex;
}

.testimonial-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    box-sizing: border-box;
    padding: 0 10px;
}

.testimonial-card {
    background-color: #120b1b;
    border: 1px solid #231438;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.avatar-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #a100ff, #ff007f);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-bg);
}

.user-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    font-weight: 800;
}

.stars i {
    color: var(--accent-yellow);
    font-size: 0.75rem;
}

.time-ago {
    position: absolute;
    right: 0;
    top: 10px;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
}

/* Testimonial Video Wrapper */
.testimonial-video-wrapper {
    width: 90%;
    max-width: 320px;
    margin: 30px auto 10px;
    border: 8px solid #0f1724; /* Dark blue/black bezel */
    border-radius: 40px;
    background-color: #0f1724;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.testimonial-player-container {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background-color: #000;
    /* Aspect ratio for TikTok/Reels type video */
    aspect-ratio: 9/16;
}

.testimonial-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.depoimento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurece o vídeo inicial */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
}

.play-button-glass {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    margin-bottom: 25px;
}

.play-button-glass i {
    color: white;
    font-size: 2.2rem;
    margin-left: 5px; /* Ajuste visual pro icone nao ficar descentralizado */
}

.ver-depoimento-btn {
    background-color: #091a32;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.bottom-text {
    position: absolute;
    bottom: 25px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.9);
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-cta .section-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.25;
}

.pro-player-text {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 18px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.basic {
    border: 1px solid #3c125d;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.7rem;
    font-weight: 800;
}

.plan-duration {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.plan-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    border: 2px solid #a100ff;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.plan-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.plan-features li.disabled {
    color: #555;
    text-decoration: line-through;
}

.price {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.big-price {
    font-size: 2.2rem;
}

.btn-purple {
    background-color: #9b61ff;
    color: white;
    box-shadow: none;
}

.btn-purple:hover {
    box-shadow: 0 4px 15px rgba(155, 97, 255, 0.4);
}

.secure-payment {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Premium Card */
.premium {
    border: 2px solid #a100ff;
    padding-top: 40px;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #b452ff, #ff71b6);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(180, 82, 255, 0.4);
}

.premium-header {
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.plan-img-large {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    border: 3px solid #6b21a8;
    margin-top: 15px;
    box-shadow: 0 0 20px rgba(160, 0, 255, 0.4);
}

.recebe-junto {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.premium-features-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.feature-box {
    background-color: #171026;
    border: 1px solid #2d1b4e;
    border-radius: 8px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Two Paths Section */
.two-paths {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.two-paths .section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.path-card {
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.path-red {
    background-color: #160a0f;
    border: 1px solid #3d1c1c;
}

.path-green {
    background-color: #0b1710;
    border: 1px solid #1c3d26;
}

.path-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.red-icon {
    background-color: #3d1c1c;
    color: #ff4747;
}

.green-icon {
    background-color: #173b22;
    color: #00d26a;
}

.path-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

/* FAQ Section */
.faq {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq .section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
}

.faq-question i {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

/* Bonus Cards */
.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.bonus-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus-card {
    background-color: #1a0b2e;
    border: 2px solid #3d1c6e;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.bonus-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid #3d1c6e;
}

.bonus-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 25px 10px;
}

.bonus-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    flex-shrink: 0;
    background: rgba(161, 0, 255, 0.1);
    border: 1px solid rgba(161, 0, 255, 0.3);
    color: var(--highlight-gradient);
}

.bonus-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.bonus-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-features li {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.bonus-features li i {
    color: #00d26a;
    font-size: 0.8rem;
}

.bonus-btn {
    margin: 0 25px 25px;
    background-color: #3d1c6e;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-btn:hover {
    background-color: #4d238c;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}
/* How it Works */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(161, 0, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, #a100ff, #6b21a8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.step-compatibility {
    text-align: center;
    margin-top: 10px;
}

.step-compatibility p {
    font-size: 0.85rem;
    color: #6b21a8;
    font-weight: 700;
    margin-top: 15px;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a0b2e;
    border: 1px solid #3d1c6e;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0 5px;
}

.compatibility-badge i {
    font-size: 1.1rem;
}
