/* --- Variáveis de Cores --- */
:root {
    --primary-color: #3a21d8;    /* Azul Principal */
    --secondary-color: #7ff300;  /* Verde Neon */
    --dark-blue: #1c0f6e;        /* Azul Escuro (Top Bar/Footer/Menu) */
    --dark-bg: #1a1a1a;          /* Neutro Escuro */
    --text-color: #333333;       /* Texto Geral */
    --light-bg: #f4f4f4;         /* Fundo Claro */
    --white: #ffffff;            /* Branco */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Reset Básico --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- 1. CABEÇALHO (Top Bar) --- */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 0.9rem;
    padding: 10px 0;
    font-weight: 600;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i { color: var(--white); transition: 0.3s; }
.top-bar-info span:hover i, .top-bar-info span:hover { color: var(--secondary-color); }

.social-icons a { color: var(--white); margin-left: 15px; font-size: 1.1rem; }
.social-icons a:hover { color: var(--secondary-color); }

/* --- 2. CABEÇALHO (Navbar Principal) --- */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo a { display: flex; align-items: center; height: 100%; }
.logo img { max-height: 70px; width: auto; }

/* Menu */
.nav-menu ul { display: flex; gap: 25px; }
.nav-menu a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-blue); /* Azul escuro */
}
.nav-menu a:hover, .nav-menu a.active { color: var(--secondary-color); }

/* Botão Área do Cliente */
.btn-client {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    border: 2px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-client:hover { background-color: var(--white); color: var(--primary-color); }

.mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--dark-blue); }

/* --- MAIN CONTENT & RODAPÉ --- */
main { flex: 1; }

.main-footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p, .footer-col li, .footer-col a { color: var(--white); }
.footer-col a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-col i { color: var(--secondary-color); margin-right: 8px; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}
.footer-bottom a { font-weight: bold; color: var(--white); }
.footer-bottom a:hover { color: var(--secondary-color); text-decoration: underline; }

/* --- RESPONSIVIDADE (Nav) --- */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-toggle { display: block; }
    .nav-menu {
        position: absolute; top: 90px; left: 0; width: 100%;
        background: var(--white);
        flex-direction: column; align-items: center;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
        max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    }
    .nav-menu.active { max-height: 400px; }
    .nav-menu ul { flex-direction: column; padding: 20px 0; width: 100%; text-align: center; }
    .nav-menu li { margin: 10px 0; }
    .cta-container { display: none; }
}

/* =========================================
   SEÇÕES ESPECÍFICAS
   ========================================= */

/* --- HERO & INFO STRIP (Já existentes, mantidos) --- */
.hero-section {
    position: relative; height: 85vh; width: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--white); overflow: hidden;
}
.hero-video {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: -2; object-fit: cover;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(28, 15, 110, 0.8), rgba(58, 33, 216, 0.7)); z-index: -1;
}
.hero-content h1 { font-size: 3.5rem; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
.hero-content p { font-size: 1.3rem; margin-bottom: 35px; max-width: 800px; margin: 0 auto 35px; }

.btn-hero {
    padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1.1rem;
    text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero.primary { background-color: var(--secondary-color); color: var(--dark-blue); border: 2px solid var(--secondary-color); }
.btn-hero.primary:hover { background-color: transparent; color: var(--secondary-color); }
.btn-hero.outline { border: 2px solid var(--white); color: var(--white); }
.btn-hero.outline:hover { background-color: var(--white); color: var(--primary-color); }
.hero-btns { display: flex; gap: 20px; justify-content: center; }

.info-strip { background-color: var(--light-bg); padding: 40px 0; border-bottom: 1px solid #e0e0e0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.info-item { display: flex; align-items: center; gap: 15px; }
.icon-box { width: 60px; height: 60px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.icon-box i { font-size: 1.5rem; color: var(--primary-color); }
.info-text strong { display: block; font-size: 1.1rem; color: var(--dark-blue); }

/* --- PLANOS RESIDENCIAIS (Estilos Base) --- */
.plans-section { padding: 80px 0; background-color: var(--white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-color); font-weight: 800; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.plans-grid.two-plans { max-width: 900px; margin: 0 auto; }

.plan-card {
    background: var(--white); border: 1px solid #eee; border-radius: 20px; padding: 40px 30px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s;
    position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(58, 33, 216, 0.1); border-color: var(--primary-color); }
.plan-card.featured {
    border: 2px solid var(--primary-color); background: linear-gradient(to bottom, #ffffff, #f9f9ff);
    transform: scale(1.05); z-index: 2; box-shadow: 0 15px 50px rgba(58, 33, 216, 0.15);
}
.plan-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.featured-tag { position: absolute; top: 0; left: 0; width: 100%; background: var(--primary-color); color: var(--white); font-weight: bold; font-size: 0.8rem; padding: 8px 0; text-transform: uppercase; letter-spacing: 1px; }

.tech-badge { background: #e0e0ff; color: var(--primary-color); padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; margin-bottom: 10px; display: inline-block; }
.plan-header h3 { font-size: 2.5rem; color: var(--dark-blue); margin: 10px 0 0; }
.plan-price { margin: 25px 0; color: var(--primary-color); }
.plan-price .value { font-size: 4rem; font-weight: 800; line-height: 1; }
.plan-price .currency { font-size: 1.2rem; vertical-align: top; }
.plan-price .cents { font-size: 1.2rem; font-weight: bold; }
.plan-price .period { display: block; font-size: 0.9rem; color: #888; }
.plan-features { text-align: left; margin-bottom: 20px; padding: 0 10px; }
.plan-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; color: #555; font-size: 0.95rem; }
.plan-features i { color: var(--secondary-color); font-size: 1.1rem; min-width: 20px; text-align: center; }

/* Botões Planos */
.btn-plan { margin-top: auto; display: inline-block; width: 100%; padding: 15px; background: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); border-radius: 50px; font-weight: bold; text-transform: uppercase; transition: 0.3s; }
.btn-plan:hover { background: var(--primary-color); color: var(--white); }
.btn-plan.featured-btn { background: var(--primary-color); color: var(--white); border: none; box-shadow: 0 5px 15px rgba(58, 33, 216, 0.4); }
.btn-plan.featured-btn:hover { background: var(--secondary-color); color: var(--dark-blue); }

/* Toggle Vantagens */
.advantages-wrapper { margin-bottom: 30px; width: 100%; }
.btn-advantages { background: none; border: none; color: var(--primary-color); font-weight: bold; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 5px; width: 100%; padding: 10px; text-transform: uppercase; transition: 0.3s; }
.btn-advantages:hover { color: var(--dark-blue); }
.btn-advantages.active i { transform: rotate(180deg); }
.advantages-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #f9f9f9; border-radius: 10px; text-align: left; }
.advantages-content ul { padding: 15px; }
.advantages-content li { margin-bottom: 8px; font-size: 0.9rem; color: #444; display: flex; align-items: center; gap: 8px; }
.advantages-content li strong { color: var(--primary-color); }


/* --- CONSULTA COBERTURA (NOVO) --- */
.coverage-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    color: var(--white);
}
.coverage-box {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
}
.coverage-text { flex: 1; min-width: 300px; }
.coverage-text h2 { font-size: 2.2rem; margin-bottom: 10px; color: var(--secondary-color); }
.coverage-form {
    flex: 1; min-width: 300px; display: flex; gap: 10px; flex-wrap: wrap;
}
.coverage-form .form-group { flex: 1; min-width: 150px; }
.coverage-form input {
    width: 100%; padding: 15px; border-radius: 8px; border: none; outline: none;
}
.btn-check {
    padding: 15px 30px; background-color: var(--secondary-color); color: var(--dark-blue); border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.btn-check:hover { background-color: var(--white); }

/* --- EMPRESARIAL (NOVO) --- */
.business-section { padding: 80px 0; background: var(--light-bg); }
.business-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.biz-card {
    background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s; border-top: 5px solid var(--primary-color);
}
.biz-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.biz-icon {
    font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px;
}
.biz-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--dark-blue); }
.biz-features { margin: 20px 0; }
.biz-features li { margin-bottom: 10px; color: #555; display: flex; align-items: center; gap: 10px; }
.biz-features i { color: var(--secondary-color); }
.btn-biz {
    display: inline-block; padding: 10px 25px; border: 1px solid var(--primary-color); color: var(--primary-color);
    border-radius: 5px; font-weight: bold; text-transform: uppercase; font-size: 0.9rem; transition: 0.3s;
}
.btn-biz:hover { background: var(--primary-color); color: var(--white); }

/* --- QUEM SOMOS SNIPPET (NOVO) --- */
.about-snippet { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { border-radius: 20px; box-shadow: 20px 20px 0 var(--secondary-color); }
.about-content h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 20px; }
.about-content p { color: #555; margin-bottom: 20px; font-size: 1.05rem; }
.stats-row { display: flex; gap: 40px; margin: 30px 0; }
.stat-item strong { display: block; font-size: 2.5rem; color: var(--dark-blue); font-weight: 800; line-height: 1; }
.stat-item span { font-size: 0.9rem; color: #777; text-transform: uppercase; }
.btn-link { color: var(--primary-color); font-weight: bold; border-bottom: 2px solid var(--secondary-color); padding-bottom: 2px; }
.btn-link:hover { color: var(--dark-blue); border-color: var(--dark-blue); }

/* --- QUEM SOMOS COMPLETO (NOVO) --- */
.about-full { padding: 80px 0; background: var(--white); }
.about-header-block { text-align: center; margin-bottom: 50px; }
.about-header-block h2 { font-size: 3rem; color: var(--dark-blue); }
.divider { width: 80px; height: 4px; background: var(--secondary-color); margin: 10px auto; }
.full-text { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #444; line-height: 1.8; }
.full-text p { margin-bottom: 20px; }

/* --- MISSÃO, VISÃO, VALORES (NOVO) --- */
.mvv-section { padding: 60px 0; background: var(--light-bg); border-top: 1px solid #ddd; }
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.mvv-card { background: var(--white); padding: 30px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.mvv-icon { width: 70px; height: 70px; background: var(--primary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.mvv-card h3 { margin-bottom: 15px; color: var(--dark-blue); }
.mvv-card ul { text-align: left; padding-left: 10px; }
.mvv-card li { list-style: disc; margin-left: 15px; margin-bottom: 5px; color: #555; }

/* --- CONTATO (NOVO) --- */
.contact-section { padding: 80px 0; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.contact-info-side { background: var(--primary-color); padding: 50px; color: var(--white); }
.contact-info-side h3 { font-size: 2rem; margin-bottom: 15px; }
.contact-info-side p { margin-bottom: 40px; opacity: 0.9; }
.contact-methods .method { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.contact-methods i { font-size: 1.5rem; color: var(--secondary-color); }
.contact-form-side { padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #333; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; outline: none; transition: 0.3s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); }
.btn-submit { background: var(--primary-color); color: var(--white); padding: 15px 30px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; width: 100%; transition: 0.3s; }
.btn-submit:hover { background: var(--dark-blue); }

@media (max-width: 768px) {
    .about-grid, .contact-wrapper, .coverage-box { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .hero-content h1 { font-size: 2.2rem; }
    .coverage-form { width: 100%; }
}