/* ========================================
   DELIVERY 360 - IDENTIDADE VISUAL
   ========================================
   Cores:
   - Laranja: #FF6B35
   - Preto: #000000
   - Branco: #FFFFFF
   
   Fonte: Nunito (arredondada e moderna)
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF6B35;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
}

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

/* ========================================
   SEÇÃO HERO
   ======================================== */
.hero {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

.logo-container {
    margin-bottom: 40px;
    text-align: center;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(1);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* ========================================
   BOTÕES
   ======================================== */
.cta-button, .cta-button-large {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover, .cta-button-large:hover {
    background: #FF8555;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.cta-button-large {
    font-size: 1.5rem;
    padding: 25px 60px;
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--orange);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid var(--orange);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   DIVISORES COM SETA
   ======================================== */
.arrow-divider {
    width: 100%;
    max-width: 200px;
    margin: 40px auto;
    color: var(--orange);
}

.curved-arrow {
    width: 100%;
    height: auto;
}

.arrow-divider-small {
    width: 80px;
    margin: 30px auto;
    color: var(--orange);
}

.curved-arrow-small {
    width: 100%;
    height: auto;
}

/* ========================================
   SEÇÃO URGÊNCIA
   ======================================== */
.urgency {
    background: var(--gray-light);
    padding: 60px 20px;
}

.urgency-box {
    background: var(--white);
    border: 4px solid var(--orange);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.urgency-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.highlight {
    color: var(--orange);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-top: 10px;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
}

/* ========================================
   SEÇÃO SOBRE
   ======================================== */
.about {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--black);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.about-block {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--orange);
}

.about-text {
    font-size: 1.3rem;
    font-weight: 400;
}

.about-text strong {
    color: var(--orange);
    font-weight: 700;
}

/* ========================================
   SEÇÃO BENEFÍCIOS
   ======================================== */
.benefits {
    padding: 80px 20px;
    background: var(--gray-light);
}

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

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.benefit-card p {
    font-size: 1.1rem;
    color: #666;
}

.benefit-card ul {
    list-style: none;
    text-align: left;
}

.benefit-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.benefit-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ========================================
   SEÇÃO MÓDULOS
   ======================================== */
.modules {
    padding: 80px 20px;
    background: var(--white);
}

.modules-list {
    max-width: 800px;
    margin: 0 auto 50px;
}

.module-item {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.module-item:hover {
    background: #FFF5F2;
    transform: translateX(10px);
}

.module-number {
    background: var(--orange);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.module-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.module-item p {
    font-size: 1.1rem;
    color: #666;
}

/* ========================================
   SEÇÃO ACESSO IMEDIATO
   ======================================== */
.instant-access {
    padding: 80px 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.instant-access .section-title {
    color: var(--white);
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.access-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--orange);
    transition: all 0.3s ease;
}

.access-card:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.access-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.access-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.access-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   SEÇÃO DEPOIMENTOS
   ======================================== */
.testimonials {
    padding: 80px 20px;
    background: var(--gray-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
    margin-bottom: 20px;
}

.testimonial-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--orange);
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
}

/* ========================================
   SEÇÃO COMPARATIVO
   ======================================== */
.comparison {
    padding: 80px 20px;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.comparison-column {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 15px;
    min-height: 400px;
}

.comparison-before {
    border-left: 5px solid #999;
}

.comparison-after {
    border-left: 5px solid var(--orange);
    background: #FFF5F2;
}

.comparison-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding: 15px 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.comparison-arrow {
    width: 100px;
    color: var(--orange);
}

.big-arrow {
    width: 100%;
    height: auto;
}

.comparison-cta {
    text-align: center;
}

/* ========================================
   SEÇÃO CUSTO
   ======================================== */
.cost {
    padding: 80px 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cost .section-title {
    color: var(--white);
}

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

.cost-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    border: 3px solid var(--orange);
}

.cost-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 15px;
}

.cost-description {
    font-size: 1.3rem;
    opacity: 0.9;
}

.cost-warning {
    font-size: 1.8rem;
    margin: 40px 0;
    font-weight: 600;
}

.cost-warning strong {
    color: var(--orange);
}

/* ========================================
   SEÇÃO PREÇO
   ======================================== */
.pricing {
    padding: 80px 20px;
    background: var(--gray-light);
    text-align: center;
}

.pricing-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--orange);
}

.price-tag {
    margin-bottom: 40px;
}

.price-label {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    display: block;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.price-installments {
    font-size: 1.5rem;
    color: #666;
    margin-top: 15px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-note {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
}

/* ========================================
   SEÇÃO GARANTIA
   ======================================== */
.guarantee {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFE5DC 0%, #FFF5F2 100%);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-badge {
    background: var(--orange);
    color: var(--white);
    display: inline-flex;
    flex-direction: column;
    padding: 30px 40px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.guarantee-days {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.guarantee-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-description {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ========================================
   SEÇÃO FINAL
   ======================================== */
.final-cta {
    padding: 100px 20px;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.final-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--orange);
}

.final-note {
    margin-top: 30px;
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-top: 3px solid var(--orange);
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer p {
    margin: 10px 0;
    opacity: 0.8;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .logo {
        max-width: 220px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-arrow {
        display: none;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .final-title {
        font-size: 2rem;
    }
    
    .final-subtitle {
        font-size: 1.5rem;
    }
    
    .module-item {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-box {
        padding: 30px;
    }
    
    .urgency-box {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-button, .cta-button-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .cost-amount {
        font-size: 2rem;
    }
}

/* ========================================
   BOTÃO FLUTUANTE WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-text {
    display: none;
    margin-left: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Animação de pulso para chamar atenção */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

.whatsapp-float {
    animation: whatsappPulse 2s infinite;
}

/* Expansão no desktop */
@media (min-width: 769px) {
    .whatsapp-float:hover {
        width: auto;
        padding: 0 20px;
        border-radius: 30px;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        display: inline;
    }
}

/* Ajuste para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   BARRA STICKY DE CONVERSÃO
   ======================================== */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--orange);
    color: var(--white);
    padding: 12px 20px;
    text-align: center;
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-bar-text {
    font-weight: 600;
    font-size: 1.1rem;
}

.sticky-bar-cta {
    background: var(--white);
    color: var(--orange);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.sticky-bar-cta:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
}

/* ========================================
   POP-UP EXIT INTENT
   ======================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--white);
    max-width: 600px;
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.4s ease-out;
    border: 5px solid var(--orange);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: var(--orange);
}

.exit-popup-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 15px;
}

.exit-popup-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #333;
}

.exit-popup-cta {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.exit-popup-cta:hover {
    background: #FF8555;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ========================================
   BADGE DE GARANTIA FLUTUANTE
   ======================================== */
.floating-guarantee {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--white);
    border: 3px solid var(--orange);
    border-radius: 15px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 9997;
    max-width: 200px;
    animation: slideInLeft 0.5s ease;
    display: none; /* Oculto por padrão, aparece depois via JS */
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-guarantee-icon {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 8px;
}

.floating-guarantee-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .floating-guarantee {
        display: none;
    }
}

/* ========================================
   NÚMEROS DE IMPACTO
   ======================================== */
.impact-numbers {
    padding: 60px 20px;
    background: var(--black);
    color: var(--white);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.number-card {
    text-align: center;
    padding: 30px 20px;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
}

.number-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   COMO FUNCIONA
   ======================================== */
.how-it-works {
    padding: 80px 20px;
    background: var(--gray-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 50px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.step-number {
    background: var(--orange);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    line-height: 1.3;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.step-arrow {
    display: none; /* Removido para layout mais limpo */
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .step-card {
        padding: 30px 25px;
    }
}

/* ========================================
   BÔNUS EXCLUSIVOS
   ======================================== */
.bonuses {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF5F2 0%, #FFE5DC 100%);
}

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

.bonus-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--orange);
    position: relative;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.bonus-badge {
    background: var(--orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--black);
}

.bonus-value {
    color: var(--orange);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.bonus-card p {
    color: #666;
    font-size: 1rem;
}

.bonus-total {
    text-align: center;
    margin-top: 50px;
}

.bonus-total-text {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bonus-total-value {
    color: var(--orange);
    font-weight: 800;
    font-size: 2rem;
}

.bonus-total-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 15px;
}

/* ========================================
   LINHA DO TEMPO
   ======================================== */
.timeline {
    padding: 80px 20px;
    background: var(--white);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.timeline-marker {
    background: var(--orange);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.timeline-content {
    margin-left: 30px;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--orange);
}

.timeline-content p {
    font-size: 1.1rem;
    color: #333;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ========================================
   PARA QUEM É / PARA QUEM NÃO É
   ======================================== */
.target-audience {
    padding: 80px 20px;
    background: var(--gray-light);
}

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

.audience-column {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.audience-for {
    border-left: 5px solid var(--orange);
}

.audience-not-for {
    border-left: 5px solid #999;
}

.audience-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.audience-column ul {
    list-style: none;
}

.audience-column li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-light);
}

.audience-note {
    text-align: center;
    font-size: 1.3rem;
    color: #333;
}

.audience-note strong {
    color: var(--orange);
}

/* ========================================
   CALCULADORA DE ROI
   ======================================== */
.roi-calculator {
    padding: 80px 20px;
    background: var(--white);
}

.calculator-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--gray-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.calculator-inputs {
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--orange);
}

.calc-button {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.calc-button:hover {
    background: #FF8555;
    transform: translateY(-2px);
}

.roi-result {
    margin-top: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 3px solid var(--orange);
    text-align: center;
}

.result-warning {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.result-value {
    font-size: 4rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 15px;
}

.result-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.result-solution {
    background: var(--gray-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: left;
}

.result-solution p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.result-solution ul {
    list-style: none;
}

.result-solution li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.result-solution li:before {
    content: "✅";
    position: absolute;
    left: 0;
}

/* ========================================
   TIMER NO PREÇO
   ======================================== */
.price-timer {
    text-align: center;
    background: var(--orange);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.timer-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.price-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-countdown-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: var(--white);
    color: var(--orange);
    padding: 15px 20px;
    border-radius: 10px;
    min-width: 80px;
}

.price-countdown-label {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.9;
}

.price-countdown-separator {
    font-size: 2.5rem;
    font-weight: 800;
}

/* ========================================
   COMPARATIVO DE PREÇO
   ======================================== */
.price-comparison {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 30px;
}

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-list {
    margin-bottom: 25px;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 10px;
}

.comparison-item.highlight {
    background: #FFF5F2;
    border: 2px solid var(--orange);
}

.comparison-cross {
    font-size: 1.5rem;
    margin-right: 15px;
}

.comparison-check {
    font-size: 1.5rem;
    margin-right: 15px;
}

.comparison-text {
    flex: 1;
    font-size: 1.1rem;
}

.comparison-value {
    font-weight: 700;
    color: var(--orange);
    font-size: 1.1rem;
}

.comparison-note {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orange);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 80px 20px;
    background: var(--gray-light);
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

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

.benefit-card,
.module-item,
.testimonial-card,
.access-card {
    animation: fadeInUp 0.6s ease-out;
}
