/* styles.css - VERSÃO FINAL COMPLETA */

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #E31E24;
    --dark-red: #B71C1C;
    --black: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(227, 30, 36, 0.15);
    --shadow-hover: 0 10px 40px rgba(227, 30, 36, 0.25);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   CABEÇALHO (HEADER) - LAYOUT 3 BLOCOS
   ========================================= */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espalha: Logo Esq | Menu Centro | Zap Dir */
    padding: 10px 30px;
    width: 100%;
    height: 90px; /* Altura fixa para manter alinhamento */
}

/* 1. LOGO (LADO ESQUERDO) */
.logo-area img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-area a {
    background: transparent !important;
    text-decoration: none;
}

/* 2. MENU CENTRAL + BOTÃO VERMELHO */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px; /* Espaço entre os links */
    margin: 0 auto; /* Ajuda a centralizar */
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

/* Estilo Específico do Botão "Área do Cliente" (Vermelho) */
.btn-area-cliente {
    background-color: #D32F2F;
    color: white !important;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.btn-area-cliente:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

/* 3. BOTÃO WHATSAPP (LADO DIREITO) */
.btn-whatsapp-final {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
    white-space: nowrap;
}

.btn-whatsapp-final:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-final img {
    width: 24px;
    height: 24px;
}

/* Hamburger (para mobile) */
.hamburger {
    display: none; /* Escondido no PC */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* =========================================
   HERO SECTION (FUNDO E IMAGEM)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Sua imagem de fundo */
    background-image: url('https://i.ibb.co/xtCw0vS6/tela-site.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; 
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    font-weight: bold;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px #000000, 0 0 10px #000000;
}

/* =========================================
   OUTRAS SEÇÕES (PLANOS, TURBO EM DIA, ETC)
   ========================================= */
/* Planos */
.planos {
    padding: 100px 0;
    background: var(--light-gray);
}
.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.plano-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}
.plano-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-hover);
}
.plano-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
}
.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
}
/* Preços e Detalhes */
.plano-header h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--black); }
.velocidade { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.5rem 0; }
.velocidade .numero { font-size: 4rem; font-weight: 900; color: var(--primary-red); line-height: 1; }
.velocidade .unidade { font-size: 1.3rem; font-weight: 700; color: var(--primary-red); }
.plano-price { display: flex; align-items: baseline; margin: 2rem 0; padding: 1.5rem 0; border-top: 2px solid #f5f5f5; border-bottom: 2px solid #f5f5f5; }
.value { font-size: 3.5rem; font-weight: 900; color: var(--black); }
.plano-features li { padding: 1rem 0; border-bottom: 1px solid #f5f5f5; display: flex; align-items: center; gap: 0.8rem; }
.btn-plano { width: 100%; background: var(--primary-red); color: var(--white); padding: 1rem; border-radius: var(--border-radius); text-decoration: none; display: inline-block; text-align: center; font-weight: bold; margin-top: 1rem; }
.btn-plano:hover { background: var(--dark-red); }

/* Vantagens */
.vantagens { padding: 100px 0; background: var(--white); }
.vantagens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; }
.vantagem-card { text-align: center; padding: 2.5rem; background: var(--light-gray); border-radius: var(--border-radius); transition: var(--transition); }
.vantagem-card:hover { transform: translateY(-8px); border: 1px solid var(--primary-red); }
.vantagem-card .icon { font-size: 4rem; margin-bottom: 1.5rem; }

/* Turbo em Dia */
.turbo-em-dia {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.turbo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.turbo-title {
    text-align: center;
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 900;
    margin: 0 auto 25px auto;
    color: #ffffff;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(255,255,255,0.25);
}
.turbo-description { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.benefit-icon { background: var(--primary-red); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.btn-youtube { background: #ff0000; color: #fff; padding: 1.3rem 2.8rem; font-size: 1.5rem; font-weight: 900; text-transform: uppercase; border-radius: 14px; display: inline-flex; align-items: center; gap: 1rem; text-decoration: none; animation: pulseYoutube 1.8s infinite alternate; margin-top: 2rem; }
.gift-box { font-size: 15rem; animation: float 3s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes pulseYoutube { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }

/* Cobertura */
.cobertura { padding: 100px 0; background: var(--light-gray); }
.cobertura-form { max-width: 700px; margin: 0 auto; }
.cobertura-form form { display: flex; gap: 1rem; margin-bottom: 2rem; }
.cobertura-form input { flex: 1; padding: 1.2rem; border-radius: var(--border-radius); border: 3px solid #ddd; }
.cobertura-result { padding: 2rem; border-radius: var(--border-radius); text-align: center; font-weight: bold; display: none; }

/* Contato */
.contato { padding: 100px 0; background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contato-form input, .contato-form textarea { width: 100%; padding: 1.2rem; margin-bottom: 1.2rem; border: 3px solid #ddd; border-radius: var(--border-radius); }

/* Footer */
.footer { background: var(--black); color: var(--white); padding: 4rem 0 2rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { margin-bottom: 1rem; font-size: 2rem; font-weight: 900; }
.footer-section a { color: #ccc; text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #333; }

/* Animação Geral */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================
   RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 1200px) {
    .planos-grid { grid-template-columns: repeat(3, 1fr); }
    /* Esconde o menu escrito em telas médias/pequenas e mostra hamburger */
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 900px) {
    .planos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar { padding: 10px 15px; }
    .btn-whatsapp-final span { display: none; } /* Esconde texto no celular */
    .btn-whatsapp-final { padding: 10px; border-radius: 50%; } /* Vira bolinha */
    
    .turbo-content { flex-direction: column-reverse; }
    .turbo-title { text-align: left; }
    .contato-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .planos-grid { grid-template-columns: 1fr; }
}/* --- CORREÇÃO DOS BENEFÍCIOS (LISTA) --- */

.turbo-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre cada linha da lista */
    margin: 20px 0;
}

/* CADA ITEM DA LISTA (LINHA) */
.benefit {
    display: flex;           /* <--- O COMANDO MÁGICO: Coloca lado a lado */
    align-items: center;     /* Centraliza o texto na altura da bolinha */
    gap: 15px;               /* Distância entre a bolinha e o texto */
    text-align: left;        /* Garante que o texto comece na esquerda */
}

/* A BOLINHA COM O CHECK */
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 30px;             /* Largura fixa */
    height: 30px;            /* Altura fixa */
    
    background-color: var(--primary-red); /* Vermelho */
    color: white;            /* Check branco */
    border-radius: 50%;      /* Faz virar bolinha */
    font-weight: bold;
    
    flex-shrink: 0;          /* <--- IMPORTANTE: Impede a bolinha de amassar se o texto for grande */
}

/* O TEXTO */
.benefit span:last-child {
    font-size: 1.1rem;
    color: #ffffff;          /* Texto branco para fundo escuro */
    line-height: 1.2;
}/* Container da lista de redes sociais */
.social-links {
    display: flex;
    flex-direction: column; /* <--- ISSO COLOCA UM EMBAIXO DO OUTRO */
    gap: 15px;              /* Espaço entre os botões */
    max-width: 300px;       /* Largura máxima dos botões */
}

/* Estilo do Botão */
.social-btn {
    display: flex;          /* Alinha ícone e texto na horizontal */
    align-items: center;    /* Centraliza verticalmente */
    padding: 12px 20px;
    background-color: #f5f5f5; /* Fundo cinza claro */
    color: #333;            /* Cor do texto */
    text-decoration: none;  /* Tira o sublinhado */
    border-radius: 10px;    /* Bordas arredondadas */
    font-weight: 600;       /* Negrito */
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

/* Estilo do Ícone dentro do botão */
.social-btn i {
    width: 30px;            /* Largura fixa para alinhar os textos */
    font-size: 1.4rem;      /* Tamanho do ícone */
    margin-right: 10px;     /* Espaço entre ícone e texto */
    text-align: center;
}

/* --- EFEITOS DE COR AO PASSAR O MOUSE (HOVER) --- */

/* Efeito Geral (Move para a direita) */
.social-btn:hover {
    transform: translateX(10px);
    color: white;
    border-color: transparent;
}

/* Cores específicas das marcas */
.social-btn.youtube:hover {
    background-color: #FF0000; /* Vermelho YouTube */
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Degradê Instagram */
}

.social-btn.tiktok:hover {
    background-color: #000000; /* Preto TikTok */
}/* Container que segura os botões */
.hero-buttons {
    display: flex;
    flex-direction: row; /* O SEGREDO: Isso força ficarem lado a lado */
    justify-content: center; /* Centraliza o conjunto na tela */
    align-items: center;
    gap: 20px; /* Espaço entre o botão branco e o transparente */
    
    width: 100%;
    background-color: transparent; /* Fundo transparente */
    padding: 20px 0;
}

/* Estilo geral (forma dos botões) */
.btn-box {
    text-decoration: none;
    padding: 15px 30px; /* Aumentei para ficar "gordinho" como na foto */
    border-radius: 8px; /* Cantos arredondados visíveis */
    
    font-family: sans-serif;
    text-transform: uppercase;
    font-weight: 700; /* Negrito forte */
    font-size: 14px;
    white-space: nowrap; /* Não deixa o texto quebrar linha */
    transition: 0.3s ease;
}

/* Botão ESQUERDO (Branco Sólido) */
.btn-solido {
    background-color: #ffffff;
    color: #c02727; /* Vermelho escuro no texto */
    border: 2px solid #ffffff; /* Borda branca para manter o tamanho igual */
}
.btn-solido:hover {
    background-color: #f0f0f0; /* Cinza bem claro ao passar o mouse */
    border-color: #f0f0f0;
}

/* Botão DIREITO (Contorno Branco) */
.btn-contorno {
    background-color: transparent;
    color: #ffffff; /* Texto branco */
    border: 2px solid #ffffff; /* Borda branca grossa */
}
.btn-contorno:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Fundo branco transparente ao passar o mouse */
}/* Isso esconde imagens ou SVGs intrusos dentro do container */
.hero-buttons img, 
.hero-buttons svg {
    display: none !important;
}