*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --azul:       #0070FF;
    --azul-dark:  #0050CC;
    --verde:      #AAEE00;
    --verde-dark: #88CC00;
    --laranja:    #FF8C00;
    --bg:         #07080F;
    --bg2:        #0D0F1A;
    --bg3:        #141628;
    --borda:      rgba(255,255,255,0.08);
    --texto:      #E8ECF0;
    --texto-2:    #8893A0;
    --branco:     #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--texto);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ───────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    border-bottom: 1px solid var(--borda);
    backdrop-filter: blur(20px);
    background: rgba(7,8,15,0.85);
    transition: all .3s;
}
.header .container {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 180px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 160px; width: auto; object-fit: contain; }
.logo-text { display: none; flex-direction: column; line-height: 1.1; }
.logo-blv  { font-size: 24px; font-weight: 900; color: var(--branco); letter-spacing: -1px; }
.logo-sub  { font-size: 10px; color: var(--verde); letter-spacing: 1px; text-transform: uppercase; }

.nav { display: flex; gap: 8px; }
.nav a {
    color: var(--texto-2); text-decoration: none;
    font-size: 14px; font-weight: 500;
    padding: 6px 14px; border-radius: 6px;
    transition: all .2s;
}
.nav a:hover { color: var(--branco); background: var(--borda); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn-central {
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    color: var(--branco);
    text-decoration: none; font-weight: 700; font-size: 13px;
    padding: 9px 18px; border-radius: 8px;
    border: none; transition: all .2s;
    box-shadow: 0 4px 15px rgba(0,112,255,.35);
}
.btn-central:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,112,255,.5); }

.btn-header {
    background: var(--verde); color: #07080F;
    text-decoration: none; font-weight: 700; font-size: 13px;
    padding: 9px 20px; border-radius: 8px;
    transition: all .2s;
}
.btn-header:hover { background: var(--verde-dark); transform: translateY(-1px); }

.menu-toggle {
    display: none; background: none; border: none;
    color: var(--texto); font-size: 22px; cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    display: none; flex-direction: column;
    background: var(--bg2); border-bottom: 1px solid var(--borda);
    position: fixed; top: 180px; left: 0; right: 0; z-index: 999;
    padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    color: var(--texto); text-decoration: none;
    padding: 12px 0; font-weight: 500;
    border-bottom: 1px solid var(--borda);
}
.mobile-link:last-child { border-bottom: none; }

/* ── HERO ─────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding-top: 180px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,112,255,.18) 0%, transparent 70%),
                radial-gradient(ellipse 60% 50% at 20% 80%, rgba(170,238,0,.08) 0%, transparent 60%);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--borda) 1px, transparent 1px),
                      linear-gradient(90deg, var(--borda) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    gap: 24px; max-width: 680px;
    padding: 80px 24px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(170,238,0,.1); border: 1px solid rgba(170,238,0,.3);
    color: var(--verde); padding: 6px 16px; border-radius: 100px;
    font-size: 13px; font-weight: 500; width: fit-content;
}
.hero-title {
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 900; line-height: 1.05; letter-spacing: -2px;
    color: var(--branco);
}
.gradient-text {
    background: linear-gradient(135deg, var(--azul), var(--verde));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc { font-size: 18px; color: var(--texto-2); max-width: 520px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    color: var(--branco); text-decoration: none; font-weight: 700;
    padding: 13px 28px; border-radius: 10px; border: none;
    font-size: 15px; cursor: pointer; display: inline-block;
    transition: all .25s; box-shadow: 0 4px 20px rgba(0,112,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,112,255,.5); }

.btn-outline {
    background: transparent; color: var(--texto);
    text-decoration: none; font-weight: 600;
    padding: 13px 28px; border-radius: 10px;
    border: 1px solid var(--borda); font-size: 15px;
    transition: all .25s; display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,.25); color: var(--branco); background: var(--borda); }

.hero-stats {
    display: flex; align-items: center; gap: 24px;
    background: rgba(255,255,255,.04); border: 1px solid var(--borda);
    border-radius: 14px; padding: 20px 28px; width: fit-content;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 22px; font-weight: 800; color: var(--branco); }
.stat-label { font-size: 12px; color: var(--texto-2); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 36px; background: var(--borda); }

/* Orbs animados */
.hero-visual { position: absolute; right: -100px; top: 50%; transform: translateY(-50%); z-index: 1; }
.orbit {
    position: absolute; border-radius: 50%; border: 1px solid;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: spin linear infinite;
}
.orbit-1 { width: 340px; height: 340px; border-color: rgba(0,112,255,.2); animation-duration: 20s; }
.orbit-2 { width: 500px; height: 500px; border-color: rgba(170,238,0,.12); animation-duration: 30s; animation-direction: reverse; }
.orbit-3 { width: 660px; height: 660px; border-color: rgba(0,112,255,.08); animation-duration: 40s; }
.orbit-dot {
    position: absolute; width: 10px; height: 10px; border-radius: 50%;
    top: 50%; left: 50%;
}
.dot-1 { background: var(--azul); box-shadow: 0 0 15px var(--azul); animation: orbit1 20s linear infinite; }
.dot-2 { background: var(--verde); box-shadow: 0 0 15px var(--verde); animation: orbit2 30s linear infinite reverse; }
.dot-3 { background: var(--laranja); box-shadow: 0 0 10px var(--laranja); animation: orbit3 40s linear infinite; }

@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes orbit1 {
    0%   { transform: translate(calc(-50% + 170px), -50%); }
    25%  { transform: translate(-50%, calc(-50% + 170px)); }
    50%  { transform: translate(calc(-50% - 170px), -50%); }
    75%  { transform: translate(-50%, calc(-50% - 170px)); }
    100% { transform: translate(calc(-50% + 170px), -50%); }
}
@keyframes orbit2 {
    0%   { transform: translate(calc(-50% + 250px), -50%); }
    25%  { transform: translate(-50%, calc(-50% + 250px)); }
    50%  { transform: translate(calc(-50% - 250px), -50%); }
    75%  { transform: translate(-50%, calc(-50% - 250px)); }
    100% { transform: translate(calc(-50% + 250px), -50%); }
}
@keyframes orbit3 {
    0%   { transform: translate(calc(-50% + 330px), -50%); }
    25%  { transform: translate(-50%, calc(-50% + 330px)); }
    50%  { transform: translate(calc(-50% - 330px), -50%); }
    75%  { transform: translate(-50%, calc(-50% - 330px)); }
    100% { transform: translate(calc(-50% + 330px), -50%); }
}

/* ── SEÇÕES COMUNS ────────────────────────── */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    color: var(--verde); font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800; color: var(--branco); letter-spacing: -1px;
    line-height: 1.15;
}

/* ── SERVIÇOS ─────────────────────────────── */
.servicos { background: var(--bg2); }

.servicos-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.servico-card {
    background: var(--bg3); border: 1px solid var(--borda);
    border-radius: 16px; padding: 32px; position: relative;
    transition: all .3s;
}
.servico-card:hover {
    border-color: rgba(0,112,255,.4);
    box-shadow: 0 0 40px rgba(0,112,255,.1);
    transform: translateY(-4px);
}
.featured-card {
    border-color: rgba(170,238,0,.3);
    background: linear-gradient(145deg, var(--bg3), rgba(170,238,0,.04));
}
.featured-card:hover { border-color: rgba(170,238,0,.6); box-shadow: 0 0 40px rgba(170,238,0,.1); }

.featured-badge {
    position: absolute; top: -12px; left: 24px;
    background: var(--verde); color: #07080F;
    font-size: 11px; font-weight: 800; letter-spacing: 1px;
    padding: 4px 14px; border-radius: 100px; text-transform: uppercase;
}
.card-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.blue { background: rgba(0,112,255,.15); color: var(--azul); }
.card-icon.green { background: rgba(170,238,0,.15); color: var(--verde); }

.servico-card h3 { font-size: 20px; font-weight: 700; color: var(--branco); margin-bottom: 10px; }
.servico-card p  { color: var(--texto-2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.card-features { list-style: none; margin-bottom: 24px; }
.card-features li {
    color: var(--texto-2); font-size: 13px;
    padding: 5px 0; border-bottom: 1px solid var(--borda);
}
.card-features li::before { content: '✓ '; color: var(--verde); font-weight: 700; }
.card-link { color: var(--azul); text-decoration: none; font-size: 14px; font-weight: 600; }
.card-link:hover { color: var(--verde); }

/* ── TECNOLOGIA ───────────────────────────── */
.tecnologia { background: var(--bg); }
.tech-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.tech-content .section-tag,
.tech-content h2 { text-align: left; display: block; }
.tech-content h2 { margin-bottom: 16px; }
.tech-desc { color: var(--texto-2); margin-bottom: 36px; font-size: 16px; }

.tech-items { display: flex; flex-direction: column; gap: 20px; }
.tech-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; background: var(--bg2);
    border: 1px solid var(--borda); border-radius: 12px;
    transition: border-color .3s;
}
.tech-item:hover { border-color: rgba(0,112,255,.3); }
.tech-icon { font-size: 28px; flex-shrink: 0; }
.tech-item h4 { color: var(--branco); font-weight: 600; margin-bottom: 4px; }
.tech-item p  { color: var(--texto-2); font-size: 13px; }

.tech-visual {
    background: var(--bg2); border: 1px solid var(--borda);
    border-radius: 20px; padding: 32px;
    display: flex; flex-direction: column; gap: 20px;
}
.speed-card { }
.speed-label { font-size: 12px; color: var(--texto-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.speed-bar {
    height: 6px; background: rgba(255,255,255,.06);
    border-radius: 100px; margin-bottom: 6px; overflow: hidden;
}
.speed-fill {
    height: 100%; border-radius: 100px;
    background: linear-gradient(90deg, var(--azul), #00BBFF);
    animation: grow .8s ease-out forwards;
}
.speed-fill.up  { background: linear-gradient(90deg, var(--verde), #DDFF66); }
.speed-fill.lat { background: linear-gradient(90deg, var(--laranja), #FFB84D); }
@keyframes grow { from { width: 0 !important; } }
.speed-val { font-size: 13px; font-weight: 600; color: var(--branco); }

.uptime-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(170,238,0,.08); border: 1px solid rgba(170,238,0,.2);
    border-radius: 10px; padding: 12px 16px; margin-top: 4px;
    color: var(--verde); font-size: 14px; font-weight: 600;
}
.uptime-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--verde); animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(170,238,0,.4); }
    50%      { box-shadow: 0 0 0 6px rgba(170,238,0,0); }
}

/* ── PLANOS ───────────────────────────────── */
.planos { background: var(--bg2); }
.planos-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: start;
}
.plano-card {
    background: var(--bg3); border: 1px solid var(--borda);
    border-radius: 16px; padding: 28px; position: relative;
    transition: all .3s;
}
.plano-card:hover { transform: translateY(-4px); border-color: rgba(0,112,255,.35); }
.plano-popular {
    border-color: rgba(170,238,0,.4);
    background: linear-gradient(160deg, var(--bg3), rgba(170,238,0,.05));
    box-shadow: 0 0 50px rgba(170,238,0,.08);
}
.plano-empresas {
    border-color: rgba(0,112,255,.3);
    background: linear-gradient(160deg, var(--bg3), rgba(0,112,255,.05));
}
.popular-tag {
    font-size: 11px; font-weight: 800; color: #07080F;
    background: var(--verde); padding: 4px 12px; border-radius: 100px;
    display: inline-block; margin-bottom: 16px;
}
.plano-header h3 { font-size: 20px; font-weight: 800; color: var(--branco); }
.plano-header p  { font-size: 12px; color: var(--texto-2); margin-top: 4px; }
.plano-speed { margin: 20px 0; }
.speed-num  { font-size: 48px; font-weight: 900; color: var(--branco); letter-spacing: -2px; }
.speed-unit { font-size: 16px; color: var(--texto-2); margin-left: 4px; font-weight: 500; }

.plano-features { list-style: none; margin-bottom: 24px; }
.plano-features li {
    font-size: 13px; color: var(--texto-2);
    padding: 7px 0; border-bottom: 1px solid var(--borda);
    display: flex; align-items: center; gap: 8px;
}
.plano-features li:last-child { border-bottom: none; }
.plano-features li.off { opacity: .35; }
.check { color: var(--verde); font-weight: 700; }

.btn-plano {
    display: block; width: 100%; text-align: center;
    padding: 11px; border-radius: 10px; font-weight: 700;
    font-size: 14px; text-decoration: none; border: 1px solid var(--borda);
    color: var(--texto); background: var(--borda); transition: all .25s; cursor: pointer;
}
.btn-plano:hover { border-color: rgba(255,255,255,.25); color: var(--branco); }
.btn-plano.popular {
    background: linear-gradient(135deg, var(--verde), var(--verde-dark));
    color: #07080F; border-color: transparent;
}
.btn-plano.popular:hover { opacity: .9; transform: translateY(-2px); }
.btn-plano.empresas {
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    color: var(--branco); border-color: transparent;
}

/* ── COBERTURA ────────────────────────────── */
.cobertura { background: var(--bg); }
.cobertura-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cobertura-content .section-tag,
.cobertura-content h2 { text-align: left; display: block; }
.cobertura-content h2 { margin-bottom: 16px; }
.cobertura-content p  { color: var(--texto-2); margin-bottom: 28px; }

.cep-form { display: flex; gap: 10px; margin-bottom: 16px; }
.cep-input {
    flex: 1; padding: 13px 18px; border-radius: 10px;
    background: var(--bg2); border: 1px solid var(--borda);
    color: var(--branco); font-size: 16px; font-family: inherit;
    transition: border-color .2s;
}
.cep-input:focus { outline: none; border-color: var(--azul); }
.cep-input::placeholder { color: var(--texto-2); }

.cep-result {
    font-size: 14px; padding: 0; min-height: 20px;
    transition: all .3s;
}
.cep-result.ok  { color: var(--verde); }
.cep-result.err { color: #FF5566; }

.cobertura-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.cob-card {
    background: var(--bg2); border: 1px solid var(--borda);
    border-radius: 14px; padding: 22px; transition: all .3s;
}
.cob-card:hover { border-color: rgba(0,112,255,.35); transform: translateY(-2px); }
.cob-icon { font-size: 28px; margin-bottom: 10px; }
.cob-card h4 { color: var(--branco); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.cob-card p  { color: var(--texto-2); font-size: 13px; }

/* ── CTA BANNER ───────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, rgba(0,112,255,.2), rgba(170,238,0,.1));
    border-top: 1px solid var(--borda); border-bottom: 1px solid var(--borda);
    text-align: center; padding: 80px 0;
}
.cta-banner h2 { font-size: clamp(28px,4vw,44px); font-weight: 800; color: var(--branco); margin-bottom: 14px; line-height: 1.2; }
.cta-banner p  { color: var(--texto-2); font-size: 18px; margin-bottom: 36px; }
.cta-buttons   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: #fff; font-weight: 700;
    padding: 13px 28px; border-radius: 10px; text-decoration: none;
    font-size: 15px; transition: all .25s;
    box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

.btn-outline-white {
    display: inline-block; background: transparent;
    color: var(--branco); text-decoration: none; font-weight: 600;
    padding: 13px 28px; border-radius: 10px; font-size: 15px;
    border: 1px solid rgba(255,255,255,.25); transition: all .25s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.08); }

/* ── CONTATO ──────────────────────────────── */
.contato { background: var(--bg2); }
.contato-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }

.contato-info { display: flex; flex-direction: column; gap: 14px; }
.info-card {
    display: flex; gap: 16px; align-items: flex-start;
    background: var(--bg3); border: 1px solid var(--borda);
    border-radius: 14px; padding: 20px; transition: border-color .3s;
}
.info-card:hover { border-color: rgba(0,112,255,.35); }
.info-icon { font-size: 24px; flex-shrink: 0; }
.info-card h4 { font-size: 13px; color: var(--texto-2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-card p  { color: var(--branco); font-size: 15px; font-weight: 500; line-height: 1.5; }

.contato-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 13px; color: var(--texto-2); font-weight: 500; }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg3); border: 1px solid var(--borda);
    border-radius: 10px; padding: 12px 16px;
    color: var(--branco); font-size: 15px; font-family: inherit;
    transition: border-color .2s; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--azul); box-shadow: 0 0 0 3px rgba(0,112,255,.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--texto-2); }
.form-group select { cursor: pointer; appearance: none; }
.btn-full { width: 100%; }

/* ── FOOTER ───────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--borda); padding: 60px 0 0; }
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--borda);
}
.footer-logo    { height: 48px; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-logo-text { font-size: 28px; font-weight: 900; color: var(--branco); margin-bottom: 14px; }
.footer-brand p { color: var(--texto-2); font-size: 14px; line-height: 1.7; max-width: 280px; }
.social-links   { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--bg2); border: 1px solid var(--borda);
    color: var(--texto-2); text-decoration: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; transition: all .2s;
}
.social-links a:hover { border-color: var(--azul); color: var(--azul); }

.footer-links h4 { font-size: 13px; font-weight: 700; color: var(--branco); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links a  { display: block; color: var(--texto-2); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--verde); }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; color: var(--texto-2); font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--texto-2); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--verde); }

/* ── ABAS DE PLANOS ───────────────────────── */
.planos-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.tab-btn {
    background: var(--bg3); border: 1px solid var(--borda);
    color: var(--texto-2); padding: 11px 24px; border-radius: 100px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all .25s; font-family: inherit;
}
.tab-btn:hover { color: var(--branco); border-color: rgba(255,255,255,.2); }
.tab-btn.active {
    background: linear-gradient(135deg, var(--azul), var(--azul-dark));
    border-color: transparent; color: var(--branco);
    box-shadow: 0 4px 20px rgba(0,112,255,.35);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.tres-col  { grid-template-columns: repeat(3, 1fr) !important; }
.quatro-col { grid-template-columns: repeat(4, 1fr) !important; }

/* Preço nos planos */
.plano-preco {
    display: flex; align-items: baseline; gap: 2px;
    margin: 0 0 20px;
}
.preco-val {
    font-size: 32px; font-weight: 800; color: var(--verde);
    line-height: 1;
}
.preco-cents { font-size: 18px; font-weight: 700; }
.preco-periodo { font-size: 13px; color: var(--texto-2); margin-left: 4px; }

/* Sub-tabs (Rádio / Fibra dentro de Residencial) */
.sub-tabs {
    display: flex; gap: 8px; justify-content: center;
    margin-bottom: 28px;
}
.sub-tab-btn {
    background: transparent; border: 1px solid var(--borda);
    color: var(--texto-2); padding: 8px 20px; border-radius: 8px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all .2s; font-family: inherit;
}
.sub-tab-btn:hover { color: var(--branco); border-color: rgba(255,255,255,.2); }
.sub-tab-btn.active {
    background: rgba(170,238,0,.15); border-color: rgba(170,238,0,.4);
    color: var(--verde);
}
.sub-tab-content { display: none; }
.sub-tab-content.active { display: block; }

/* Condomínios */
.condo-wrapper {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start;
}
.condo-info h3 {
    font-size: 32px; font-weight: 800; color: var(--branco);
    line-height: 1.2; margin-bottom: 16px;
}
.condo-info > p { color: var(--texto-2); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.condo-diferenciais { display: flex; flex-direction: column; gap: 16px; }
.diferencial {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--bg3); border: 1px solid var(--borda);
    border-radius: 12px; padding: 16px; transition: border-color .3s;
}
.diferencial:hover { border-color: rgba(0,112,255,.35); }
.dif-icon { font-size: 24px; flex-shrink: 0; }
.diferencial h4 { color: var(--branco); font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.diferencial p  { color: var(--texto-2); font-size: 13px; }

.condo-cta-box {
    background: linear-gradient(145deg, var(--bg3), rgba(0,112,255,.06));
    border: 1px solid rgba(0,112,255,.3);
    border-radius: 16px; padding: 32px; text-align: center;
}
.condo-cta-box h4 { font-size: 20px; color: var(--branco); margin-bottom: 12px; }
.condo-cta-box p  { color: var(--texto-2); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.btn-whatsapp-condo {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    width: 100%; background: #25D366; color: #fff; font-weight: 700;
    padding: 13px 20px; border-radius: 10px; text-decoration: none;
    font-size: 15px; transition: all .25s;
}
.btn-whatsapp-condo:hover { background: #1ebe5a; transform: translateY(-2px); }

/* Aviso PME */
.pme-aviso {
    text-align: center; margin-bottom: 28px;
    background: rgba(0,112,255,.08); border: 1px solid rgba(0,112,255,.25);
    border-radius: 10px; padding: 12px 20px;
    color: var(--texto-2); font-size: 14px;
}
.pme-aviso strong { color: var(--azul); }

/* ── ANIMAÇÕES ────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVO ───────────────────────────── */
@media (max-width: 1024px) {
    .planos-grid { grid-template-columns: repeat(2,1fr); }
    .tech-wrapper,
    .cobertura-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hero-visual { display: none; }
}
@media (max-width: 768px) {
    .nav, .btn-header { display: none; }
    .menu-toggle { display: block; }
    .servicos-grid { grid-template-columns: 1fr; }
    .planos-grid   { grid-template-columns: 1fr; }
    .contato-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .cta-banner { padding: 60px 0; }
    section { padding: 70px 0; }
}
@media (max-width: 480px) {
    .hero-content { padding: 60px 24px; }
    .hero-ctas { flex-direction: column; }
    .cep-form { flex-direction: column; }
    .cobertura-cards { grid-template-columns: 1fr; }
}
