/* --- 1. Reset e Configurações Globais --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    scroll-behavior: smooth; 
}

body { 
    background-color: #000b1a; /* ALTERADO: Azul meia-noite profundo */
    color: #fff; 
    overflow-x: hidden; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* --- 2. Chuva de Partículas --- */
#particles-container { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
    z-index: 9999; 
}

#particles-container span { 
    position: absolute; 
    background: rgba(0, 195, 255, 0.4); 
    border-radius: 50%; 
    top: -10px; 
    animation: fall linear forwards; 
}

@keyframes fall { 
    to { transform: translateY(105vh); } 
}

/* --- 3. NOVO: ESTILO DO CUPOM RELÂMPAGO --- */
#coupon-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 11, 26, 0.9); /* ALTERADO: Overlay azul escuro */
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.coupon-card {
    background: #001529; /* ALTERADO: Card azul marinho */
    border: 2px solid #00c3ff;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 195, 255, 0.5);
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.coupon-header {
    background: linear-gradient(135deg, #004d99, #00c3ff);
    padding: 25px;
    color: #fff;
}

.coupon-header i { font-size: 2.5rem; margin-bottom: 10px; display: block; filter: drop-shadow(0 0 5px #fff); }

.coupon-body { padding: 30px; }

.prize-badge {
    background: rgba(0, 195, 255, 0.1);
    border: 2px dashed #00c3ff;
    padding: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00c3ff;
    margin: 20px 0;
    border-radius: 10px;
    text-shadow: 0 0 10px rgba(0, 195, 255, 0.5);
}

.timer-wrapper { margin-bottom: 25px; font-size: 0.9rem; color: #888; }
#countdown { font-size: 1.3rem; color: #ff3333; font-weight: bold; text-shadow: 0 0 5px rgba(255, 51, 51, 0.3); }

.btn-coupon-action {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    transition: 0.3s;
    border: 2px solid transparent;
}

.btn-coupon-action:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); border-color: #fff; }

.btn-skip {
    background: transparent;
    border: none;
    color: #555;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.85rem;
    transition: 0.3s;
}
.btn-skip:hover { color: #00c3ff; }

/* --- 4. Header e Top Bar --- */
.top-bar { 
    background: #001529; 
    padding: 10px 0; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1001; 
    border-bottom: 1px solid #002d59; 
}

.top-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 0.85rem; 
}

.social-icons a { 
    color: #fff; 
    text-decoration: none; 
    margin-right: 15px; 
    transition: 0.3s; 
}

.social-icons a:hover { color: #00c3ff; }

header { 
    background: rgba(0, 11, 26, 0.95); /* ALTERADO: Azul muito escuro */
    padding: 10px 0; 
    position: fixed; 
    width: 100%; 
    top: 41px; 
    z-index: 1000; 
    border-bottom: 2px solid #00c3ff; 
}

.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo img { 
    height: 80px; 
    transition: 0.3s;
    border-radius: 8px;
}

.logo-brilhante {
    animation: neonPulse 2s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.4);
}

@keyframes neonPulse {
    0% { box-shadow: 0 0 5px rgba(0, 195, 255, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 195, 255, 0.6); }
    100% { box-shadow: 0 0 5px rgba(0, 195, 255, 0.3); }
}

nav ul { display: flex; list-style: none; gap: 20px; }
nav ul li a { color: #fff; text-decoration: none; font-weight: bold; transition: 0.3s; }
nav ul li a:hover { color: #00c3ff; }

/* --- 5. Hero Section --- */
.hero { 
    height: 70vh; 
    position: relative; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    margin-top: 90px; 
}

.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }

.hero-overlay { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0, 11, 26, 0.6); /* ALTERADO: Overlay azulado */
    z-index: 1; 
}

.hero-content { position: relative; z-index: 2; }

.hero-content h1 { 
    font-size: 3rem; 
    margin-bottom: 30px; 
    text-shadow: 2px 2px 10px #000; 
}

.cta-main { 
    background: #00c3ff; 
    color: #000; 
    padding: 15px 40px; 
    border-radius: 40px; 
    text-decoration: none; 
    font-weight: bold; 
    transition: 0.3s; 
    display: inline-block; 
}

.cta-main:hover { background: #fff; transform: translateY(-5px); }

/* --- 6. Fundo Mesclado Tech --- */
.mesclado-bg {
    background: linear-gradient(135deg, #000b1a 0%, #001f3d 50%, #000b1a 100%); /* ALTERADO: Gradiente de azuis */
    border-bottom: 1px solid #00264d;
}

/* --- 7. Seção de Planos --- */
.planos-section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; text-transform: uppercase; }

.planos-grid-mj { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}

.plan-card-mj { 
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    color: #333; 
    text-align: center; 
    transition: 0.3s; 
    position: relative; 
}

.plan-card-mj:hover { transform: translateY(-10px); }
.highlight-card { border: 4px solid #00c3ff; }

.popular-tag { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background: #00c3ff; 
    color: #fff; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 10px; 
    font-weight: bold; 
}

.plan-header { 
    background: linear-gradient(to right, #004d99, #00c3ff); 
    color: white; 
    padding: 30px; 
    font-size: 1.8rem; 
    font-weight: 900; 
}

.plan-body { padding: 30px; }
.price { font-size: 2.5rem; font-weight: bold; margin-bottom: 20px; color: #000; }

.plan-body ul { list-style: none; text-align: left; margin-bottom: 25px; }
.plan-body ul li { padding: 8px 0; border-bottom: 1px solid #eee; color: #555; }
.plan-body ul li i { color: #00c3ff; margin-right: 10px; }

.btn-contratar { 
    display: block; 
    background: #007bff; 
    color: white; 
    text-decoration: none; 
    padding: 12px; 
    border-radius: 30px; 
    font-weight: bold; 
    transition: 0.3s; 
}

.btn-contratar:hover { background: #00c3ff; }

/* --- 8. Vantagens --- */
.diferenciais-mj { padding: 100px 0; text-align: center; }
.title-dif-mj { font-size: 2.8rem; color: #fff; margin-bottom: 50px; text-transform: uppercase; }

.dif-grid-mj { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    padding: 0 20px; 
}

.dif-card-mj { 
    background-color: rgba(0, 21, 41, 0.8); /* ALTERADO: Fundo azul marinho semi-transparente */
    border: 2px solid #004466; 
    border-radius: 20px; 
    padding: 40px; 
    transition: all 0.3s ease; 
    cursor: pointer; 
}

.dif-icon-mj { font-size: 3.5rem; color: #fff; margin-bottom: 25px; transition: 0.3s; }
.dif-card-mj h3 { font-size: 1.5rem; margin-bottom: 15px; color: #fff; }
.dif-card-mj p { color: #bbb; line-height: 1.5; }

.dif-card-mj:hover { border-color: #00c3ff; box-shadow: 0 0 30px rgba(0, 195, 255, 0.6); transform: translateY(-10px); }
.dif-card-mj:hover .dif-icon-mj, .dif-card-mj:hover h3, .dif-card-mj:hover p { color: #00c3ff !important; }

/* --- 9. NOVO: SEÇÃO DE DEPOIMENTOS (CARROSSEL) --- */
.depoimentos-slider {
    padding: 20px 0 60px;
    cursor: grab;
}

.depoimento-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
    height: auto;
    display: flex;
    flex-direction: column;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 195, 255, 0.1);
}

.depoimento-perfil {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar-cliente {
    width: 60px; height: 60px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #888;
}

.cliente-info h4 { color: #333; font-size: 1.1rem; margin-bottom: 5px; }
.estrelas { color: #ffb400; font-size: 0.8rem; }
.depoimento-card p { color: #555; font-style: italic; line-height: 1.6; font-size: 0.95rem; flex-grow: 1; }

.swiper-pagination-bullet { background: #00c3ff !important; opacity: 0.5; }
.swiper-pagination-bullet-active { opacity: 1; width: 20px !important; border-radius: 5px !important; }

/* Setas Neon Posicionadas nas Laterais */
.neon-nav-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(0, 11, 26, 0.8) !important; /* ALTERADO: Azul escuro */
    border: 2px solid #00c3ff !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 1.2rem !important;
    transition: 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.4) !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
}

.neon-nav-btn:hover { background: #00c3ff !important; color: #000 !important; box-shadow: 0 0 25px rgba(0, 195, 255, 0.8) !important; }
.swiper-button-prev:after, .swiper-button-next:after { display: none; }

.swiper-button-prev { left: -60px !important; }
.swiper-button-next { right: -60px !important; }

@media (max-width: 1100px) {
    .swiper-button-prev { left: 10px !important; }
    .swiper-button-next { right: 10px !important; }
}

/* --- 10. NOVO: SEÇÃO DE ATENDIMENTO E MAPA --- */
.atendimento-section {
    padding: 80px 0;
    background: #000b1a; /* ALTERADO: Azul escuro ao invés de preto total */
}

.atendimento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mapa-container {
    border: 2px solid #00c3ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 195, 255, 0.3);
}

.info-atendimento {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #00c3ff;
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.info-card i {
    color: #00c3ff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-card h3 {
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.info-card p, .info-card li {
    color: #bbb;
    list-style: none;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* --- 11. Footer --- */
.main-footer { background: #fff; color: #333; padding: 60px 0 0; border-top: 6px solid #00c3ff; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; }
.footer-logo { height: 90px; }
.btn-footer-whatsapp { background: #007bff; color: white; text-decoration: none; padding: 12px 30px; border-radius: 35px; font-weight: bold; transition: 0.3s; }
.bottom-bar { background: #000b1a; color: #888; padding: 20px 0; text-align: center; } /* ALTERADO: Fundo do copyright */

/* --- 12. Som e WhatsApp --- */
.sound-control-wrapper { position: fixed; bottom: 110px; right: 30px; display: flex; align-items: center; gap: 10px; z-index: 10000; }
.volume-slider { width: 0; height: 5px; -webkit-appearance: none; background: #00c3ff; border-radius: 5px; outline: none; transition: 0.3s ease; opacity: 0; }
.sound-control-wrapper:hover .volume-slider { width: 100px; opacity: 1; }
.volume-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: #fff; border-radius: 50%; cursor: pointer; }

.sound-float { width: 50px; height: 50px; background: rgba(0, 31, 63, 0.2); border: 1px solid #00c3ff; border-radius: 50%; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(5px); transition: 0.3s; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 10000; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }


/* Estilos Exclusivos para a Página de Atendimento */
.atendimento-page {
    min-height: 100vh;
    color: #fff;
}

.header-atendimento {
    background: rgba(0, 11, 26, 0.9);
    padding: 15px 0;
    border-bottom: 2px solid #00c3ff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.btn-voltar {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #00c3ff;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-voltar:hover { background: #00c3ff; color: #000; }
.atendimento-full { padding-top: 140px; padding-bottom: 60px; }

.neon-border {
    border: 1px solid #00c3ff !important;
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.3);
    background: rgba(0, 15, 30, 0.8) !important; /* ALTERADO: Fundo azul escuro */
    border-radius: 15px;
}

/* --- (O resto do código permanece igual, focando na estrutura de atendimento já enviada) --- */

/* Estilos Exclusivos para a Página de Atendimento */
.atendimento-page {
    min-height: 100vh;
    color: #fff;
}

.header-atendimento {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    border-bottom: 2px solid #00c3ff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.btn-voltar {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #00c3ff;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.btn-voltar:hover { background: #00c3ff; color: #000; }
.atendimento-full { padding-top: 140px; padding-bottom: 60px; }

.neon-border {
    border: 1px solid #00c3ff !important;
    box-shadow: 0 0 15px rgba(0, 195, 255, 0.3);
    background: rgba(10, 10, 10, 0.8) !important;
    border-radius: 15px;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.btn-whats-page {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #25d366; color: #fff; text-decoration: none; padding: 20px; border-radius: 12px;
    font-weight: bold; font-size: 1.1rem; transition: 0.3s;
}

.btn-whats-page:hover { transform: scale(1.03); box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); }

.canais-atendimento-container { margin-bottom: 50px; text-align: center; }
.canais-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; }

.canal-item {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; color: #fff; width: 130px; padding: 20px 10px; transition: 0.4s;
}

.canal-item .icon-circle {
    width: 70px; height: 70px; background: #fff; color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    margin-bottom: 15px; transition: 0.3s;
}

.canal-item:hover { transform: translateY(-10px); }
.canal-item:hover .icon-circle { background: #00c3ff; color: #fff; box-shadow: 0 0 20px #00c3ff; }

/* --- AJUSTE DOS LINKS DE SUPORTE --- */
.link-suporte {
    display: flex; align-items: center; gap: 10px; padding: 15px 0;
    color: #333 !important; text-decoration: none !important;
    font-weight: 600; transition: 0.3s ease; border-bottom: 1px solid #eee; width: 100%;
}

.link-suporte i { color: #00c3ff; font-size: 1.2rem; width: 25px; text-align: center; }
.link-suporte:hover { color: #00c3ff !important; padding-left: 10px; background: rgba(0, 195, 255, 0.05); }

/* --- 13. REGRAS PARA CELULAR (RESPONSIVIDADE) --- */
@media (max-width: 768px) {
    .top-bar { display: none; }
    header { top: 0; padding: 5px 0; }
    .logo img { height: 50px; }
    .footer-logo { height: 60px; }
    nav ul { gap: 10px; }
    nav ul li a { font-size: 0.8rem; }
    .hero { height: 60vh; margin-top: 60px; }
    .hero-content h1 { font-size: 1.8rem; }
    .planos-grid-mj, .dif-grid-mj { grid-template-columns: 1fr; gap: 20px; }
    .section-title, .title-dif-mj { font-size: 1.8rem; }
    .footer-grid { flex-direction: column; text-align: center; gap: 20px; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 25px; }
    .sound-control-wrapper { bottom: 85px; right: 20px; }
    .volume-slider { display: none; }
    
    .atendimento-grid { grid-template-columns: 1fr; }
    .mapa-container { height: 300px; }
    .canais-grid { gap: 15px; }
    .canal-item { width: 45%; }

    .coupon-card { width: 95%; }
    .prize-badge { font-size: 1.2rem; }
}

/* --- 14. NOVO: SEÇÃO DESTAQUE FIBRA (ESTILO GABISAT) --- */
.fibra-highlight {
    padding: 80px 0;
    background-color: #fff; /* Fundo branco para destacar a imagem como no exemplo */
    overflow: hidden;
}

.highlight-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.highlight-image, .highlight-text {
    flex: 1;
    min-width: 320px;
}

.image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

/* Etiqueta Laranja no topo da imagem */
.badge-fibra {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #ff8c00;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Card azul flutuante (conforme a imagem enviada) */
.floating-card {
    position: absolute;
    bottom: -25px;
    left: 20px;
    background: #0046ff; /* Azul vibrante da Gabisat */
    color: white;
    padding: 30px;
    border-radius: 20px;
    width: 85%;
    box-shadow: 0 15px 35px rgba(0,70,255,0.4);
    z-index: 10;
}

.floating-card p {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff !important; /* Forçando branco sobre o azul */
    text-align: left;
}

.icons-row {
    display: flex;
    gap: 20px;
    font-size: 1.4rem;
    opacity: 0.9;
}

/* Estilização do texto à direita */
.highlight-text h2 {
    font-size: 2.5rem;
    color: #001529; /* Azul escuro para contraste no fundo branco */
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.highlight-text p {
    font-size: 1.1rem;
    color: #444 !important; /* Cor de leitura fácil */
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: left;
}

.highlight-cta {
    text-align: left;
}

/* Ajuste de Responsividade para esta seção */
@media (max-width: 768px) {
    .highlight-flex {
        flex-direction: column-reverse; /* Imagem fica embaixo do texto no mobile */
        text-align: center;
        gap: 60px;
    }
    
    .highlight-text h2 { font-size: 2rem; }
    
    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: -40px;
        padding: 20px;
    }
    
    .floating-card p { font-size: 1.2rem; }
    
    .highlight-text p, .highlight-cta {
        text-align: center;
    }
}
