/* ==========================================
    1. VARIÁVEIS E CONFIGURAÇÕES
    ========================================== */
:root {
    --bg-color-primary: #0A0A0A;
    --bg-color-secondary: #0D0D0D;
    --text-color-primary: #FFFFFF;
    --text-color-secondary: #A0A0A0;
    --accent-orange: #FF6B00;
    --accent-blue: #00A3FF;
    --gradient-main: linear-gradient(90deg, #FF6B00 0%, #00A3FF 100%);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-color-primary); color: #fff; line-height: 1.6; overflow-x: hidden; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Utilitários */
.gradient-text { background: var(--gradient-main); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; }
.section-heading { text-align: center; font-size: clamp(2rem, 5vw, 2.5rem); margin-bottom: 50px; font-weight: 800; }
.orange { color: var(--accent-orange); }
.glass-card { background: var(--glass-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 16px; }

/* ==========================================
    2. NAVBAR E LOGO
    ========================================== */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 20px 0; }
.navbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; max-width: 1100px; margin: 0 auto; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 20px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { background: var(--accent-orange); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; }
.logo-badge { position: absolute; bottom: -4px; right: -4px; background: var(--accent-blue); width: 14px; height: 14px; border-radius: 50%; border: 2px solid #000; display: flex; align-items: center; justify-content: center; }
.logo-badge i { width: 8px !important; height: 8px !important; color: white; }
.logo-text { font-weight: 800; font-size: 1.2rem; }
.navbar-links { display: flex; gap: 25px; }
.navbar-links a { color: var(--text-color-secondary); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.navbar-links a:hover { color: white; }

/* ==========================================
    3. HERO E STATUS
    ========================================== */
.hero { padding: 160px 0 80px; text-align: center; }
.hero-title { font-size: clamp(2.5rem, 7vw, 4rem); font-weight: 800; margin-bottom: 20px; line-height: 1.1; animation: fadeInUp 0.8s forwards; }
.hero-subtitle { color: var(--text-color-secondary); max-width: 700px; margin: 0 auto 40px; font-size: 1.1rem; animation: fadeInUp 0.8s 0.2s forwards; opacity: 0; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; animation: fadeInUp 0.8s 0.4s forwards; opacity: 0; }
.hero-stats { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s 0.6s forwards; opacity: 0; }
.stat-icon-circle { background: var(--accent-blue); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.stat-card { display: flex; align-items: center; gap: 15px; padding: 15px 25px; }
.stat-info { text-align: left; }
.stat-info span { display: block; color: var(--text-color-secondary); font-size: 0.8rem; }

/* ==========================================
    4. BENEFÍCIOS
    ========================================== */
.benefits { padding: 100px 0; position: relative; overflow: hidden; }
.section-subheading { text-align: center; color: var(--text-color-secondary); max-width: 600px; margin: -30px auto 60px; font-size: 1.1rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { padding: 40px; text-align: left; transition: var(--transition-smooth); display: flex; flex-direction: column; gap: 15px; }
.benefit-card:hover { transform: translateY(-10px); border-color: var(--accent-orange); background: rgba(255, 107, 0, 0.05); }
.feature-icon { background: var(--accent-orange); width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2); }
.feature-icon i { color: white; width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1.4rem; font-weight: 700; }
.benefit-card p { color: var(--text-color-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ==========================================
    5. COMO FUNCIONA (CONECTORES)
    ========================================== */
.how-it-works { padding: 80px 0; }
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step-card { flex: 1; min-width: 260px; text-align: center; padding: 20px; }
.step-number { background: var(--accent-orange); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 20px; font-size: 1.2rem; }
.steps-connector { width: 80px; height: 2px; background: var(--gradient-main); opacity: 0.3; flex-shrink: 0; }

/* ==========================================
    6. PREÇOS (CARD PREMIUM)
    ========================================== */
.pricing { padding: 80px 0; background: var(--bg-color-secondary); }
.pricing-cards-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.pricing-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px; border-radius: 25px; width: 100%; max-width: 380px; position: relative; transition: 0.3s; }
.pricing-card.popular { border: 2px solid var(--accent-orange); background: rgba(255,107,0,0.02); }
.pricing-card:hover { transform: translateY(-10px); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent-orange); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }
.price { font-size: 3rem; font-weight: 800; margin: 20px 0; }
.price span { font-size: 1.5rem; }
.price small { display: block; font-size: 0.9rem; color: var(--text-color-secondary); margin-top: 5px; font-weight: 400; }
.old-price { color: var(--text-color-secondary); text-decoration: line-through; font-size: 0.9rem; }
.features { list-style: none; margin-bottom: 30px; }
.features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--text-color-secondary); }
.trial-text { text-align: center; font-size: 0.85rem; color: var(--text-color-secondary); margin-top: 15px; }

/* ==========================================
    7. DEPOIMENTOS E FAQ
    ========================================== */
.testimonials { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.testimonial-card { padding: 30px; transition: var(--transition-smooth); }
.user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.user-info img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--accent-orange); }

.faq { padding: 100px 0; background: var(--bg-color-secondary); }
.faq-grid { max-width: 800px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 15px; }
.faq-item { padding: 20px; cursor: pointer; }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.1rem; }
.faq-item p { margin-top: 15px; color: var(--text-color-secondary); border-top: 1px solid var(--glass-border); padding-top: 15px; }
.faq-item i { transition: 0.3s; color: var(--accent-orange); }
.faq-item[open] i { transform: rotate(180deg); }

/* ==========================================
    8. FOOTER
    ========================================== */
.footer { padding: 80px 0 40px; border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-desc { color: var(--text-color-secondary); margin: 20px 0; max-width: 300px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 15px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; transition: 0.3s; }
.footer-social a:hover { background: var(--accent-orange); border-color: var(--accent-orange); }
.footer-links h4 { margin-bottom: 25px; font-size: 1.1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-color-secondary); text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-orange); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-color-secondary); font-size: 0.9rem; }
.heart { color: red; }

/* Botões */
.btn-primary-gradient { background: var(--gradient-main); color: #fff; padding: 14px 28px; border-radius: 12px; text-align: center; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; border: none; cursor: pointer; }
.btn-secondary { background: transparent; border: 1px solid var(--glass-border); color: #fff; padding: 14px 28px; border-radius: 12px; text-decoration: none; transition: 0.3s; }
.btn-login { color: var(--text-color-secondary); text-decoration: none; font-size: 0.95rem; margin-right: 20px; }
.btn-primary-gradient:hover { transform: scale(1.02); filter: brightness(1.1); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand, .footer-social { justify-content: center; align-items: center; }
    .steps-connector, .navbar-links { display: none; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .benefits { padding: 60px 0; }
    .benefits-grid { grid-template-columns: 1fr; }
}

.btn-whatsapp {
    position: fixed;
    bottom: 25px; /* Distância da parte de baixo */
    right: 25px; /* Distância do lado direito */
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Cor verde do WhatsApp */
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Garante que o botão fique na frente de tudo */
    transition: transform 0.3s ease;
}

.btn-whatsapp img {
    width: 35px;
    height: 35px;
}

/* Efeito visual: o botão aumenta um pouquinho ao passar o mouse */
.btn-whatsapp:hover {
    transform: scale(1.1);
}