/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }

:root {
    --bg-body: #050505;
    --bg-card: #0f0f0f;
    --bg-card-hover: #161616;
    --gradiente-premium: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
    --gradiente-texto: linear-gradient(90deg, #ff8c00, #ff0080, #7928ca);
    --borda-sutil: 1px solid rgba(255, 255, 255, 0.08);
    --verde-zap: #25D366;
}

body { 
    background-color: var(--bg-body); 
    color: #f0f0f0; 
    overflow-x: hidden; 
    line-height: 1.6;
    padding-top: 40px; /* Espaço para a barra fixa não cobrir o site */
}

/* --- BARRA DE PROMOÇÃO (Ajustada para Mobile) --- */
.promo-bar {
    background: linear-gradient(90deg, #1a0b2e, #2d0b1e);
    color: #e0e0e0;
    text-align: center;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 500;
    position: fixed; top: 0; width: 100%; z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; /* Evita quebra de linha feia */
}
.promo-bar span { color: #ff0055; font-weight: 700; margin-left: 5px; }

/* --- HEADER --- */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 5%; 
    position: fixed; width: 100%; top: 38px; /* Fica logo abaixo da barra promo */
    background: rgba(5, 5, 5, 0.85); /* Mais escuro para ler melhor */
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: var(--borda-sutil);
    height: 60px;
}

.logo img { height: 32px; filter: brightness(1.1); }

nav ul { display: flex; list-style: none; gap: 30px; }
nav a { 
    color: #bbb; text-decoration: none; font-size: 0.85rem; font-weight: 500; 
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; 
}
nav a:hover { color: white; }

.btn-header {
    background: rgba(255, 255, 255, 0.1);
    color: white; padding: 6px 18px;
    border-radius: 4px; text-decoration: none;
    font-size: 0.75rem; font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.btn-header:hover { background: white; color: black; }

/* --- HERO SECTION (LAYOUT PC CORRIGIDO) --- */
.hero {
    padding: 140px 5% 100px; /* Mais espaço lateral */
    background: radial-gradient(circle at 70% 20%, #1a0525 0%, #050505 60%);
    display: flex; justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide em 2 colunas: Texto | Imagem */
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Garante texto na esquerda no PC */
}

.hero-text { text-align: left; }

.badge {
    background: rgba(255, 0, 85, 0.1); color: #ff0055;
    border: 1px solid rgba(255, 0, 85, 0.2);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 25px; display: inline-block;
}

h1 { 
    font-size: 3.5rem; line-height: 1.1; margin-bottom: 25px; 
    font-weight: 700; letter-spacing: -1px;
}
.text-gradient { 
    background: var(--gradiente-texto); 
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; 
}

.hero-sub { 
    color: #888; font-size: 1.1rem; margin-bottom: 40px; 
    max-width: 500px; /* Limita largura do texto para não ficar comprido demais */
    font-weight: 300;
}

.btn-cta {
    background: var(--gradiente-premium);
    color: white; padding: 18px 45px; border-radius: 50px;
    font-size: 1rem; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 30px -10px rgba(221, 36, 118, 0.5);
    transition: all 0.4s ease;
}
.btn-cta:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(221, 36, 118, 0.7); }

.hero-image img {
    width: 100%; max-width: 650px;
    filter: drop-shadow(0 0 50px rgba(121, 40, 202, 0.15));
    animation: float 6s ease-in-out infinite;
    display: block; margin: 0 auto;
}
@keyframes float { 0%, 100% {transform: translateY(0);} 50% {transform: translateY(-20px);} }

/* --- RECURSOS --- */
section { padding: 80px 20px; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 60px; font-weight: 600; letter-spacing: -0.5px; }
.features-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.feature-box {
    background: var(--bg-card); padding: 40px 30px; border-radius: 16px;
    width: 280px; border: var(--borda-sutil); transition: 0.4s;
}
.feature-box:hover { background: var(--bg-card-hover); transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }
.feature-box i { font-size: 1.8rem; background: linear-gradient(135deg, #fff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.feature-box h3 { font-size: 1.1rem; margin-bottom: 10px; color: white; }
.feature-box p { color: #666; font-size: 0.85rem; line-height: 1.7; }

/* --- DOWNLOAD --- */
.download-section { padding: 80px 20px; background: #080808; text-align: center; }
.download-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-download {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: #ccc;
    padding: 15px 35px; border-radius: 8px; text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: 0.3s; font-size: 0.9rem;
}
.btn-download:hover { background: white; color: black; border-color: white; }

/* --- PREÇOS (CORRIGIDO TAMANHO MOBILE) --- */
.pricing-section { padding: 80px 20px; background: #050505; }
.pricing-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; }

.price-card {
    background: var(--bg-card); border: var(--borda-sutil); border-radius: 24px;
    padding: 50px 40px; width: 100%; max-width: 360px; position: relative;
    display: flex; flex-direction: column; transition: 0.3s;
}

.price-card.destaque {
    background: linear-gradient(180deg, #13091a 0%, #0f0f0f 100%);
    border: 1px solid rgba(166, 0, 255, 0.3);
    box-shadow: 0 0 60px rgba(166, 0, 255, 0.08);
    transform: scale(1.05); z-index: 2;
}

.economy-tag {
    position: absolute; top: 20px; right: 20px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    color: #004422; font-weight: 700; font-size: 0.7rem;
    padding: 5px 12px; border-radius: 30px; text-transform: uppercase;
}

.price-title { color: #888; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.price-val { font-size: 3.2rem; font-weight: 700; color: white; margin: 10px 0 30px; }
.price-val span { font-size: 0.9rem; color: #555; font-weight: 400; margin-left: 5px; }
.old-price { font-size: 1.1rem; color: #444; text-decoration: line-through; display: block; margin-bottom: -5px; }

.features-list { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.features-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 12px; color: #bbb; font-size: 0.9rem; }
.features-list i { color: #a600ff; font-size: 0.8rem; }
.destaque .features-list i { color: #00ff88; }

/* Botão de Dúvida abaixo do preço */
.btn-suporte-zap {
    background: transparent !important; border: 1px solid #333 !important; color: #666 !important;
    font-size: 0.85rem !important; padding: 10px 25px !important; box-shadow: none !important;
}
.btn-suporte-zap:hover {
    border-color: #25D366 !important; color: #25D366 !important;
    background: rgba(37, 211, 102, 0.05) !important;
}

/* --- FOOTER (ESTILIZAÇÃO V3) --- */
footer { 
    background: #020202; border-top: 1px solid #111; 
    padding: 60px 5% 30px; font-size: 0.85rem; color: #555; 
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; max-width: 1200px; margin: 0 auto;
}
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #777; text-decoration: none; transition: 0.3s; display: block; }
.footer-links a:hover { color: white; transform: translateX(5px); }
.payment-icons { display: flex; gap: 15px; font-size: 1.8rem; margin-top: 15px; color: #444; }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 20px; border-top: 1px solid #111; font-size: 0.75rem; }

/* --- WHATSAPP FLUTUANTE (Discreto) --- */
.float-zap {
    position: fixed; bottom: 25px; right: 25px;
    background: rgba(20, 20, 20, 0.6); backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1); color: #888;
    width: 45px; height: 45px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; z-index: 2000; transition: all 0.4s ease; opacity: 0.6;
}
.float-zap:hover { opacity: 1; background: #25D366; color: white; transform: scale(1.1); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }

/* --- AJUSTES MOBILE (AQUI ESTÁ A CORREÇÃO DE TAMANHOS) --- */
@media (max-width: 768px) {
    /* Promo Bar menor */
    .promo-bar { font-size: 0.7rem; padding: 6px; }
    
    /* Header ajustado para não ser cortado */
    header { top: 30px; padding: 10px 15px; height: 50px; }
    .logo img { height: 26px; }
    .btn-header { padding: 4px 12px; font-size: 0.7rem; }
    
    /* Layout Hero Mobile (Empilhado) */
    .hero { padding-top: 100px; text-align: center; }
    .hero-grid { display: flex; flex-direction: column; gap: 30px; }
    .hero-text { order: 1; text-align: center; margin: 0 auto; }
    .hero-image { order: 2; margin-top: 0; }
    .hero-image img { max-width: 90%; }
    
    /* Fontes menores no celular */
    h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 0.95rem; }
    
    /* Preços: Fonte reduzida para não quebrar linha */
    .price-card { padding: 30px 20px; }
    .price-val { font-size: 2.4rem; margin: 15px 0; } /* Era 3.2rem, agora 2.4rem */
    .price-val span { font-size: 0.8rem; }
    .price-card.destaque { transform: scale(1); } /* Remove zoom no celular */
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .payment-icons { justify-content: center; }
    
    /* Esconde menu de navegação no mobile */
    nav ul { display: none; }
}




