/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    overflow-x: hidden;
    background: #111111;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores — Tema Construção */
:root {
    --orange: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FB923C;
    --yellow: #FBBF24;
    --dark: #111111;
    --dark-mid: #1a1a1a;
    --dark-card: #1e1e1e;
    --dark-border: #2a2a2a;
    --gray: #9ca3af;
    --gray-light: #d1d5db;
    --white: #ffffff;
}

/* Animações */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.8); }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: white;
    text-align: center;
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
}

.urgency-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-highlight {
    color: #FBBF24;
    font-weight: 800;
}

/* Hero */
.hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(249, 115, 22, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo img {
    width: clamp(220px, 34vw, 460px);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-orange {
    color: var(--orange);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--gray-light);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-proof span {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--orange-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: glow 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
    filter: brightness(1.1);
}

.hero-cta {
    font-size: 1rem;
    animation: bounce 2s infinite;
    max-width: 500px;
    text-align: center;
    justify-content: center;
}

/* Section Titles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* O Que Você Vai Receber */
.what-you-get {
    background: var(--dark-mid);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.6);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Course Content */
.course-content {
    background: var(--dark);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.module-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.1);
}

.module-card.highlight-module {
    border-color: rgba(249, 115, 22, 0.5);
    background: linear-gradient(160deg, #1e1a15 0%, #1e1e1e 100%);
}

.module-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 15px;
}

.module-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    min-width: 55px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.module-info {
    flex: 1;
}

.module-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 6px;
}

.module-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.module-desc {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.module-list {
    list-style: none;
    margin-bottom: 20px;
}

.module-list li {
    padding: 6px 0;
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-list i {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.module-result {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.module-result i {
    color: var(--yellow);
}

/* Benefícios */
.exclusive-benefits {
    background: var(--dark-mid);
}

.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.exclusive-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.exclusive-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.exclusive-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: var(--orange);
    transition: all 0.3s ease;
}

.exclusive-card:hover .exclusive-icon {
    background: var(--orange);
    color: white;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.exclusive-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.exclusive-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Bônus */
.bonus-section {
    background: var(--dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.bonus-card {
    background: var(--dark-card);
    border: 2px solid rgba(249, 115, 22, 0.3);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.2);
}

.bonus-icon-wrap {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.bonus-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.bonus-value {
    color: #EF4444;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: line-through;
    margin-bottom: 10px;
    display: block;
}

.bonus-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.total-bonus {
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.total-bonus h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.75;
}

.free {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--yellow);
    margin-left: 8px;
}

/* Planos */
.pricing-plans {
    background: var(--dark-mid);
}

.plans-timer {
    text-align: center;
    margin-bottom: 50px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 40%, #F97316 100%);
    border-radius: 14px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.plans-timer .timer-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.countdown-plans .time-unit {
    background: white;
    padding: 12px 10px;
    border-radius: 10px;
    min-width: 70px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.countdown-plans .time-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #EA580C;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-plans .time-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plans-grid.single-plan {
    max-width: 560px;
    margin: 0 auto;
}

.plan-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 40px 35px;
    border-radius: 16px;
    position: relative;
}

.plan-card.featured {
    border: 2px solid var(--orange);
    background: linear-gradient(160deg, #1e1a15 0%, #1e1e1e 100%);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
    white-space: nowrap;
}

.plan-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
}

.price {
    margin-bottom: 12px;
    text-align: center;
}

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

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--orange);
    display: block;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    line-height: 1.1;
}

.period {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    margin-top: 4px;
}

.savings-amount {
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 600;
    text-align: center;
    margin: 10px 0 20px;
}

.premium-social-proof {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.purchase-count {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

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

.plan-features i.fa-check {
    color: #4ade80;
    font-size: 1rem;
    flex-shrink: 0;
}

.bonus-item {
    color: var(--orange-light) !important;
}

.bonus-item i {
    color: var(--orange) !important;
}

.plan-button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    letter-spacing: 0.5px;
}

.premium-button {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.premium-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.7);
    filter: brightness(1.1);
}

.plan-security {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Depoimentos */
.testimonials {
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.1);
}

.stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--gray-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Sobre o Mentor */
.about-author {
    background: var(--dark-mid);
}

.author-content {
    display: flex;
    gap: 35px;
    align-items: center;
    padding: 40px;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 16px;
    background: var(--dark-card);
    border: 2px solid var(--orange);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.1);
}

.author-photo-wrap {
    flex-shrink: 0;
}

.author-photo-wrap img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    border: 3px solid var(--orange);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.author-info h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.author-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.author-title {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.author-info p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-stats {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--dark-border);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange);
}

.stat span {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
}

/* FAQ */
.faq {
    background: var(--dark);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
}

.faq-item.active {
    border-color: var(--orange);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: var(--orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Garantia */
.guarantee {
    background: var(--dark-mid);
}

.guarantee-content {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 2px solid rgba(74, 222, 128, 0.4);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.1);
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: white;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-label {
    font-size: 0.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.guarantee-text p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.guarantee-cta {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 15px 30px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a0f00, #1e1e1e);
    text-align: center;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.final-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-light);
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.final-cta p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 35px;
}

.final-cta-btn {
    font-size: 1.1rem;
    padding: 22px 50px;
    animation: bounce 2s infinite;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: var(--gray);
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--dark-border);
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 18px;
    opacity: 0.7;
}

.footer p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #555;
}

/* Notificações */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 320px;
}

.notification {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--orange);
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    animation: fadeInUp 0.3s ease;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.notification strong {
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-proof {
        gap: 10px;
    }

    .hero-proof span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 0.95rem;
    }

    .hero-cta {
        font-size: 0.85rem;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .author-stats {
        justify-content: center;
    }

    .guarantee-content {
        flex-direction: column;
        text-align: center;
        padding: 35px 20px;
    }

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

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .new-price {
        font-size: 2.8rem;
    }

    .plan-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .benefits-grid,
    .exclusive-grid,
    .bonus-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
