/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== ICONS (Font Awesome) ===== */
.icon-green {
    color: var(--accent);
}

.icon-orange {
    color: var(--primary);
}

.strategy-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1rem;
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--accent);
}

.hero-badge i,
.bonus-tag i,
.bonus-title i,
.forwho-header i,
.cta-button i,
.payment-info i {
    margin-right: 6px;
}

.apply-check i {
    font-size: 0.8rem;
}

.stack-item i {
    margin-right: 8px;
}

/* ===== VARIABLES ===== */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8F66;
    --secondary: #1A1A2E;
    --secondary-light: #252542;
    --accent: #00D68F;
    --accent-light: #00F5A0;
    --light-bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --text-dark: #1E293B;
    --text-medium: #475569;
    --text-light: #94A3B8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

.section-title {
    font-size: 1.85rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

.highlight {
    color: var(--primary);
    position: relative;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 20px 48px;
    border-radius: var(--radius-xl);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.45);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 50%, #1f1f3a 100%);
    padding: 64px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(0, 214, 143, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.hero-title {
    font-size: 2.25rem;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.hero-title .highlight {
    color: var(--primary-light);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-mockup {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-mockup img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== STRATEGY SECTION ===== */
.strategy-section {
    padding: 72px 0;
    background: var(--card-bg);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.strategy-card {
    background: var(--light-bg);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.strategy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.strategy-icon {
    font-size: 2.25rem;
    margin-bottom: 14px;
    display: block;
}

.strategy-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.strategy-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== APPLY SECTION ===== */
.apply-section {
    padding: 72px 0;
    background: var(--light-bg);
}

.apply-list {
    max-width: 560px;
    margin: 36px auto 0;
}

.apply-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.apply-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.apply-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.apply-item span:last-child {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===== RECEIVE SECTION ===== */
.receive-section {
    padding: 72px 0;
    background: var(--card-bg);
}

.products-grid {
    display: flex;
    justify-content: center;
}

.product-card {
    background: var(--light-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.product-card .product-image img {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.product-info {
    padding: 28px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ===== FOR WHO SECTION ===== */
.forwho-section {
    padding: 72px 0;
    background: var(--light-bg);
}

.forwho-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.forwho-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.forwho-header {
    padding: 16px 24px;
    font-weight: 700;
    font-size: 1rem;
}

.forwho-card.yes .forwho-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: #fff;
}

.forwho-card.no .forwho-header {
    background: #E2E8F0;
    color: var(--text-medium);
}

.forwho-card ul {
    padding: 20px 24px;
}

.forwho-card li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.forwho-card li:last-child {
    border-bottom: none;
}

.forwho-card.yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.forwho-card.no li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 700;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 72px 0;
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 72px 0;
    background: var(--light-bg);
}

/* OFFER CARD - Card único com stack + preço */
.offer-card {
    max-width: 560px;
    margin: 40px auto 0;
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
}

/* OFFER MOCKUP */
.offer-mockup {
    padding: 24px;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    text-align: center;
}

.offer-mockup img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* VALUE STACK */
.value-stack {
    padding: 8px 0;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.stack-item:last-child {
    border-bottom: none;
}

.stack-value {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 10px;
}

/* OFFER PRICE - Área de preço dentro do card */
.offer-price {
    text-align: center;
    padding: 32px 28px;
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
}

.offer-price .price-intro {
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.offer-price .price-display {
    margin-bottom: 20px;
}

.offer-price .price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.offer-price .price-local {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.offer-price .cta-button {
    width: 100%;
    max-width: 340px;
    font-size: 0.95rem;
    padding: 18px 32px;
}

.offer-price .payment-info {
    margin-top: 14px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* BONUS TITLE */
.bonus-title {
    font-size: 1.4rem;
    text-align: center;
    margin: 48px 0 24px;
    color: var(--text-dark);
}

/* BONUS GRID */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.bonus-card {
    display: flex;
    gap: 18px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
    transform: translateY(-2px);
}

.bonus-image {
    flex-shrink: 0;
    width: 120px;
}

.bonus-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.bonus-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    width: fit-content;
    letter-spacing: 0.02em;
}

.bonus-info h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
}

.bonus-info p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.5;
}

.bonus-value {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: line-through;
}

/* VALUE STACK */
.value-stack {
    max-width: 560px;
    margin: 40px auto;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.stack-item:last-of-type {
    border-bottom: none;
}

.stack-value {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.total-crossed {
    text-decoration: line-through;
    opacity: 0.65;
}

/* PRICE BOX */
.price-box {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(160deg, var(--secondary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-xl);
    max-width: 480px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.price-intro {
    font-size: 1.1rem;
    margin-bottom: 16px;
    opacity: 0.9;
    position: relative;
}

.price-display {
    margin-bottom: 28px;
    position: relative;
}

.price-amount {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--accent-light);
    letter-spacing: -0.02em;
}

.price-local {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.price-box .cta-button {
    width: 100%;
    max-width: 320px;
    font-size: 0.95rem;
    padding: 18px 36px;
    position: relative;
}

.payment-info {
    margin-top: 18px;
    font-size: 0.85rem;
    opacity: 0.6;
    position: relative;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 56px 0;
    background: var(--light-bg);
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 32px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 214, 143, 0.1);
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.guarantee-content p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 64px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.final-cta p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    opacity: 0.9;
}

.final-cta .cta-button {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.final-cta .cta-button:hover {
    background: #f8f8f8;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0;
    background: var(--secondary);
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

.footer p {
    margin-bottom: 16px;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-image {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }

    .bonus-tag {
        margin: 0 auto 10px;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 0.95rem;
    }

    .strategy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }
}