:root {
    --primary: #00E676;
    --primary-hover: #00C853;
    --bg-white: #FCFCFC;
    --bg-light: #F4F6F8;
    --text-main: #09090b;
    --text-muted: #64748B;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--bg-white);
}

.container {
    max-width: 500px;
    /* Reduzido para dar aspecto de app mobile */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.highlight {
    color: var(--primary);
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo i {
    font-size: 1.5rem;
}

.logo span {
    color: #333;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle at center, #f0fff4 0%, #ffffff 100%);
}

.promo-badge {
    color: #f97316;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-section {
    max-width: 380px;
    /* narrowed for mobile portrait */
    margin: 0 auto 40px;
}

.video-container {
    position: relative;
    padding-bottom: 177.77%;
    /* 16:9 -> 9:16 (16/9 * 100) */
    height: 0;
    background: #000;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    overflow: hidden;
}

.vsl-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.hero-pricing {
    margin: 30px 0 20px;
}

.hero-pricing .old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.hero-pricing .new-price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.hero-pricing .price-info {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-hook {
    margin-bottom: 30px;
}

.urgency-text {
    font-weight: 700;
    color: #f97316;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: var(--primary);
    color: #000000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.6);
}

.cta-button.outline {
    background-color: transparent;
    border: 2px solid #ddd;
    color: var(--text-main);
    box-shadow: none;
}

.cta-button.outline:hover {
    border-color: var(--primary);
    background-color: rgba(0, 230, 118, 0.05);
    box-shadow: none;
    transform: translateY(-2px);
}

.pulse-neon {
    animation: pulse-neon 2s infinite;
}

@keyframes pulse-neon {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 230, 118, 0);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
        transform: scale(1);
    }
}

.sub-cta {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Carousel Section */
.carousel-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.carousel-slides {
    position: relative;
    height: 650px;
    /* Aumentado para fotos verticais */
    display: flex;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
    height: 100%;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.5);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .carousel-slides {
        height: 600px;
        /* Mantém altura boa no mobile */
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Features */
.features {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* PUV/Comparison */
.puv-box {
    background: #f0fff4;
    border: 1px dashed var(--primary);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: left;
}

.puv-box h3 {
    margin-bottom: 10px;
    color: #166534;
}

.comparison-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.comp-col {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.comp-bad {
    border: 1px solid #fee2e2;
    background: #fef2f2;
}

.comp-good {
    border: 2px solid var(--primary);
    background: #f0fdf4;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.15);
}

.comp-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.comp-bad .comp-title {
    color: #ef4444;
}

.comp-good .comp-title {
    color: #15803d;
}

.comp-list {
    list-style: none;
}

.comp-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comp-bad .comp-list li {
    color: #7f1d1d;
}

.comp-good .comp-list li {
    color: #14532d;
    font-weight: 600;
}

.comp-bad .comp-list i {
    color: #ef4444;
    margin-top: 4px;
}

.comp-good .comp-list i {
    color: var(--primary);
    margin-top: 4px;
}


/* Pricing */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: var(--shadow);
}

.pricing-card.premium {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.best-seller {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.card-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.card-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-list li i {
    color: var(--primary);
}

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* Bonus */
.bonus {
    background-color: var(--bg-light);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    box-shadow: var(--shadow);
}

.bonus-card i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 15px;
}

/* Guarantee */
.guarantee-box {
    padding: 40px;
    background: white;
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.guarantee-box .guarantee-seal {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #1a1a1a;
    color: white;
    font-size: 0.9rem;
}

/* Modal Upsell */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 230, 118, 0.2);
    border: 2px solid var(--primary);
    animation: slideUp 0.4s ease-out;
}

.modal-header h2 {
    color: #ef4444;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.modal-header p {
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-body h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-body p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.modal-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #09090b;
    margin: 20px 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-decline {
    color: var(--text-muted);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-decline:hover {
    color: #09090b;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Checkout Form Styles */
.modal-body label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
    text-align: left;
}

.modal-body input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    margin-bottom: 15px;
}

.modal-body input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
    background-color: #fff;
}

#data-error {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .pricing-card.premium {
        transform: scale(1);
    }
}