/* ══════════════════════════════════════════════════════════════
   TEMPLUM CORPORATE — mesmo sistema visual do templumseguros.com.br
   Base: navy + verde Templum · Destaque TIM: azul #014791
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1f3c; --navy-mid: #162d52;
  --green: #2e7d32; --green-light: #4caf50; --green-accent: #56c87a;
  --cream: #ffffff; --cream-dark: #f5f2eb;
  --text-dark: #0d1f3c; --text-muted: #5a6a7a;
  --white: #ffffff; --radius: 12px; --radius-sm: 8px;
  /* ── cores TIM (conferir no manual de marca do parceiro) ── */
  --tim-blue: #014791; --tim-blue-light: #1f6ec2; --tim-red: #ea0028;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 72px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-mark {
  display: block; height: 56px; aspect-ratio: 640 / 334;
  background: url(logo-corporate-branca.png) left center/contain no-repeat;
}
.footer-brand .logo-mark { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px;
  padding: 0.5rem 1rem; display: flex; align-items: center; gap: 5px;
  border-radius: var(--radius-sm); transition: color 0.2s, background 0.2s;
}
.nav-item > a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-item > a .arrow { font-size: 10px; opacity: 0.6; transition: transform 0.2s; display: inline-block; }
.nav-item:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 230px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 300;
  border: 1px solid rgba(255,255,255,0.08);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 0.65rem 0.85rem; border-radius: 8px;
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.dropdown-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.35rem 0.5rem; }

.btn-nav {
  background: var(--green-accent); color: var(--navy) !important;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 600 !important; font-size: 14px !important;
  margin-left: 0.5rem; transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--green-light) !important; }

/* ── HERO SLIDER ── */
.hero { position: relative; height: 100vh; overflow: hidden; margin-top: 72px; }
.slider { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }

/* Fundos provisórios — troque por foto quando tiver (ver comentário no HTML) */
.slide-1 { background: linear-gradient(110deg, #0d1f3c 0%, #0b2f5e 55%, #014791 100%); }
.slide-2 { background: linear-gradient(110deg, #0d1f3c 0%, #12324f 50%, #0d3028 100%); }
.slide-3 { background: linear-gradient(110deg, #01305f 0%, #0d1f3c 55%, #0d3028 100%); }

.slide::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 45%, rgba(86,200,122,0.14) 0%, transparent 62%);
}
/* malha de conexão discreta, remete a rede/telecom */
.slide::after {
  content: ''; position: absolute; inset: 0; opacity: 0.28;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 85% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 85% 50%, black 0%, transparent 70%);
}

.slide-content { position: relative; z-index: 1; max-width: 700px; padding: 0 2.5rem; }
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(86,200,122,0.15); border: 1px solid rgba(86,200,122,0.3);
  color: var(--green-accent); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1.5rem;
}
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 1.25rem;
}
.slide-content h1 em { font-style: normal; color: var(--green-accent); }
.slide-content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; max-width: 540px; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--green-accent); color: var(--navy);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none;
  display: inline-block; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; text-decoration: none;
  display: inline-block; transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-1px); }

.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.dot.active { background: var(--green-accent); transform: scale(1.3); }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 1.5rem; z-index: 10; pointer-events: none; }
.arrow-btn { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; pointer-events: all; transition: background 0.2s; }
.arrow-btn:hover { background: rgba(255,255,255,0.2); }

/* ── NÚMEROS ── */
.numeros { background: var(--navy); padding: 1.5rem 2.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.numeros-grid { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.numero-item { display: flex; align-items: center; gap: 0.75rem; }
.numero-valor { font-size: 1.4rem; font-weight: 700; color: var(--green-accent); line-height: 1; white-space: nowrap; }
.numero-label { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.3; }
.numero-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ── SEÇÃO GENÉRICA ── */
.secao { padding: 80px 2.5rem; }
.secao-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.bg-white { background: var(--cream); }
.bg-cream { background: var(--cream-dark); }
.bg-navy  { background: var(--navy); }

/* ── FAIXA REVENDA AUTORIZADA TIM ── */
.tim-faixa { position: relative; background: linear-gradient(110deg, #0d1f3c 0%, #072a52 55%, #014791 100%); padding: 70px 2.5rem; overflow: hidden; }
.tim-faixa::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 45%; background: radial-gradient(circle at 80% 50%, rgba(86,200,122,0.16) 0%, transparent 60%); pointer-events: none; }
.tim-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.tim-texto { max-width: 580px; }
.tim-texto h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 0.85rem; line-height: 1.2; }
.tim-texto p { color: rgba(255,255,255,0.75); line-height: 1.8; font-size: 15px; }
.tim-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem 3rem; flex-shrink: 0; box-shadow: 0 12px 40px rgba(0,0,0,0.25); text-align: center; }
.tim-card-logos { display: flex; align-items: center; justify-content: center; gap: 1.6rem; }
.tim-card-logos img { display: block; height: auto; }
.tim-card-logos .lg-templum { width: 170px; }
.tim-card-logos .lg-tim { width: 112px; }
.tim-card-divisor { width: 1px; align-self: stretch; min-height: 62px; background: rgba(13,31,60,0.14); }
.tim-card span { display: block; margin-top: 1rem; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }

/* ── CARDS DE SOLUÇÃO ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.produto-card { border-radius: var(--radius); overflow: hidden; background: var(--cream-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.produto-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.card-img { width: 100%; min-height: 190px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.card-img.fibra { background: linear-gradient(135deg, #0d1f3c, #014791); }
.card-img.movel { background: linear-gradient(135deg, #0d1f3c, #0d3028); }
.card-img.avanc { background: linear-gradient(135deg, #072a52, #1a5c30); }
.card-img svg { width: 62px; height: 62px; stroke: rgba(255,255,255,0.9); fill: none; stroke-width: 1.4; }
.card-body { padding: 1.35rem 1.35rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.card-lista { list-style: none; margin-bottom: 1.2rem; flex: 1; display: flex; flex-direction: column; gap: 0.45rem; }
.card-lista li { font-size: 13px; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.card-lista li::before { content: '—'; color: var(--green); flex-shrink: 0; }
.card-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.btn-card-primary { background: var(--navy); color: var(--white); padding: 9px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.btn-card-primary:hover { background: var(--navy-mid); }
.btn-card-sec { border: 1.5px solid var(--navy); color: var(--navy); padding: 9px 18px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; text-decoration: none; transition: background 0.2s; }
.btn-card-sec:hover { background: var(--cream-dark); }

/* ── PLANOS ── */
.planos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1050px; margin: 0 auto; align-items: stretch; }
.plano {
  background: var(--white); border: 1px solid rgba(13,31,60,0.1);
  border-radius: var(--radius); padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.plano:hover { box-shadow: 0 12px 36px rgba(13,31,60,0.12); transform: translateY(-4px); }
.plano.destaque { border: 2px solid var(--tim-blue); box-shadow: 0 12px 40px rgba(1,71,145,0.16); }
.plano-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--tim-blue); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plano-nome { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tim-blue); margin-bottom: 0.75rem; }
.plano-velo { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plano-velo small { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plano-preco { margin: 1rem 0 1.35rem; padding-bottom: 1.35rem; border-bottom: 1px solid rgba(13,31,60,0.08); }
.plano-preco .de { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.plano-preco .valor { font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plano-preco .valor .cifra { font-size: 1rem; font-weight: 500; vertical-align: 0.5rem; margin-right: 2px; }
.plano-preco .valor .mes { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.plano ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.5rem; flex: 1; }
.plano ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.check-icon { width: 18px; height: 18px; min-width: 18px; background: var(--green-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.check-icon svg { width: 10px; height: 10px; }
.btn-plano { display: block; text-align: center; background: var(--navy); color: #fff; padding: 12px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.btn-plano:hover { background: var(--navy-mid); }
.plano.destaque .btn-plano { background: var(--tim-blue); }
.plano.destaque .btn-plano:hover { background: var(--tim-blue-light); }
.planos-nota { max-width: 1050px; margin: 1.75rem auto 0; font-size: 12.5px; color: var(--text-muted); line-height: 1.7; text-align: center; }

/* ── COMBO ── */
.combo-faixa { background: var(--cream-dark); padding: 80px 2.5rem; }
.combo-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.combo-texto h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.combo-texto p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 1.75rem; }
.btn-solido { display: inline-block; background: var(--navy); color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-solido:hover { background: var(--navy-mid); transform: translateY(-1px); }
.combo-visual { background: linear-gradient(135deg, var(--navy) 0%, #014791 100%); border-radius: var(--radius); padding: 2.25rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: 0 12px 40px rgba(13,31,60,0.16); }
.combo-linha { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 1rem 1.15rem; }
.combo-linha .ico { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: rgba(86,200,122,0.18); display: flex; align-items: center; justify-content: center; }
.combo-linha .ico svg { width: 20px; height: 20px; stroke: var(--green-accent); fill: none; stroke-width: 1.6; }
.combo-linha strong { display: block; color: #fff; font-size: 14.5px; font-weight: 600; margin-bottom: 2px; }
.combo-linha span { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }
.combo-mais { text-align: center; color: var(--green-accent); font-size: 20px; font-weight: 700; line-height: 1; }
.combo-selo { margin-top: 0.25rem; text-align: center; background: rgba(86,200,122,0.15); border: 1px solid rgba(86,200,122,0.3); color: var(--green-accent); border-radius: var(--radius-sm); padding: 0.85rem; font-size: 13.5px; font-weight: 600; }

/* ── POR QUE A TEMPLUM ── */
.porque-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.porque-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.25rem; }
.porque-inner > div > p { color: var(--text-muted); line-height: 1.8; font-size: 15px; margin-bottom: 1rem; }
.checklist { background: linear-gradient(135deg, var(--navy) 0%, #013a76 100%); border-radius: var(--radius); padding: 2rem 2.25rem; list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.5; }
.checklist li strong { color: #fff; display: block; margin-bottom: 2px; }
.checklist li span { color: rgba(255,255,255,0.62); font-size: 13.5px; display: block; line-height: 1.55; }
.checklist .check-icon { width: 22px; height: 22px; min-width: 22px; }
.checklist .check-icon svg { width: 12px; height: 12px; }

/* ── SEGMENTOS ── */
.segmentos-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; max-width: 860px; margin: 0 auto; }
.segmentos-tags span {
  background: var(--white); border: 1px solid rgba(13,31,60,0.1);
  color: var(--navy); font-size: 13.5px; font-weight: 500;
  padding: 9px 18px; border-radius: 100px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
}
.segmentos-tags span:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }

/* ── FORMULÁRIO ── */
.form-faixa { background: linear-gradient(110deg, #0d1f3c 0%, #0b2f5e 55%, #013a76 100%); padding: 80px 2.5rem; }
.form-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 3.5rem; align-items: center; }
.form-texto .section-label { color: var(--green-accent); }
.form-texto h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.form-texto p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 15px; margin-bottom: 1.25rem; }
.form-passos { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.form-passos li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 14px; }
.form-passos .num { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; background: rgba(86,200,122,0.18); color: var(--green-accent); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: 0 18px 50px rgba(0,0,0,0.25); }
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-card > p { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; }
.campo { margin-bottom: 1rem; }
.campo label { display: block; font-size: 12.5px; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.campo input, .campo select, .campo textarea {
  width: 100%; padding: 11px 13px; border: 1px solid rgba(13,31,60,0.15);
  border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--text-dark);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
}
.campo input:focus, .campo select:focus, .campo textarea:focus { outline: none; border-color: var(--green-accent); box-shadow: 0 0 0 3px rgba(86,200,122,0.15); }
.campo-duplo { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.btn-form { width: 100%; background: #25d366; color: #0d1f3c; border: none; padding: 14px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: background 0.2s, transform 0.15s; }
.btn-form:hover { background: #1fbe5a; transform: translateY(-1px); }
.btn-form svg { width: 19px; height: 19px; fill: #0d1f3c; }
.form-nota { font-size: 11.5px; color: var(--text-muted); text-align: center; margin-top: 0.85rem; line-height: 1.5; }

/* ── ONDE ESTAMOS ── */
.onde-estamos { background: var(--cream-dark); padding: 80px 2.5rem; }
.onde-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: stretch; }
.onde-texto { display: flex; flex-direction: column; justify-content: center; }
.onde-texto h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.onde-end { font-size: 16px; color: var(--text-dark); line-height: 1.7; margin-bottom: 0.5rem; font-weight: 500; }
.onde-ref { font-size: 14px; color: var(--text-muted); margin-bottom: 1.75rem; }
.onde-contatos { display: flex; gap: 1rem; flex-wrap: wrap; }
.onde-btn { background: var(--green); color: #fff; padding: 13px 26px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.onde-btn:hover { background: #256528; transform: translateY(-1px); }
.onde-mapa { min-height: 340px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(13,31,60,0.12); }
.onde-mapa iframe { display: block; width: 100%; height: 100%; min-height: 340px; }

/* ── CTA ── */
.cta { background: linear-gradient(110deg, #0d1f3c 0%, #072a52 55%, #014791 100%); padding: 90px 2.5rem; text-align: center; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3rem 2.5rem 2rem; }
.footer-top { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-info { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }

/* ── WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.35); z-index: 300; text-decoration: none; transition: transform 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MENU HAMBÚRGUER ── */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; padding: 8px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: all 0.3s; }
.menu-toggle.aberto span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.aberto span:nth-child(2) { opacity: 0; }
.menu-toggle.aberto span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-grid, .planos-grid { grid-template-columns: 1fr; max-width: 460px; }
  .plano.destaque { order: -1; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .logo-mark { height: 40px; }
  .slide-content { padding: 0 1.25rem; }
  .numeros { padding: 1.5rem 1.25rem; }
  .numeros-grid { flex-wrap: wrap; justify-content: center; gap: 1.5rem 1rem; }
  .numero-divider { display: none; }
  .numero-item { flex: 0 0 44%; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; }
  .numero-label { text-align: center; }
  .slider-arrows { display: none; }
  .slide-content h1 { font-size: clamp(2.1rem, 8.5vw, 3rem); }
  .secao { padding: 60px 1.25rem; }
  .tim-faixa, .combo-faixa, .form-faixa, .onde-estamos { padding: 55px 1.25rem; }
  .tim-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
  .tim-card { padding: 1.75rem 2rem; width: 100%; }
  .porque-inner, .combo-inner, .form-inner, .onde-inner { grid-template-columns: 1fr; gap: 2rem; }
  .onde-mapa { min-height: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta { padding: 60px 1.25rem; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: flex !important; flex-direction: column; align-items: stretch;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy); padding: 0 1.25rem;
    gap: 0.25rem; max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
  }
  .nav-links.aberto { max-height: 90vh; padding-top: 1rem; padding-bottom: 1.5rem; overflow-y: auto; }
  .nav-item { width: 100%; }
  .nav-item > a { padding: 0.85rem 0.5rem; font-size: 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; box-shadow: none; border: none; min-width: 0; padding: 0 0 0.5rem 1rem; display: block; }
  .nav-item:hover .dropdown { transform: none; }
  .dropdown a { padding: 0.55rem 0.5rem; font-size: 14px; }
  .nav-item > a .arrow { display: none; }
  .btn-nav { margin: 0.5rem 0 0; text-align: center; }
}
@media (max-width: 480px) {
  .campo-duplo { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════
   COMPONENTES DAS SUBPÁGINAS
   ══════════════════════════════════════════════════════════════ */

/* ── HERO INTERNO (menor que o da home) ── */
.subhero {
  position: relative; margin-top: 72px; overflow: hidden;
  padding: 90px 2.5rem 80px;
  background: linear-gradient(110deg, #0d1f3c 0%, #0b2f5e 55%, #014791 100%);
}
.subhero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.3;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse at 85% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 85% 50%, black 0%, transparent 70%);
}
.subhero-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 3.5rem; align-items: center; }
.subhero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.subhero h1 em { font-style: normal; color: var(--green-accent); }
.subhero p { color: rgba(255,255,255,0.75); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.75rem; max-width: 520px; }
.subhero .slide-btns { margin-top: 0.5rem; }

/* migalha */
.breadcrumb { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto 1.25rem; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ── CARTÃO DE OFERTA EM DESTAQUE (hero) ── */
.oferta-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 18px 50px rgba(0,0,0,0.3); }
.oferta-card .selo { display: inline-block; background: var(--tim-blue); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 1rem; }
.oferta-card .titulo { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--navy); line-height: 1; }
.oferta-card .sub { font-size: 13.5px; color: var(--text-muted); margin: 0.35rem 0 1.1rem; }
.oferta-card .linha-preco { border-top: 1px solid rgba(13,31,60,0.08); padding-top: 1.1rem; margin-bottom: 1.1rem; }
.oferta-card .de { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.oferta-card .por { font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; display: block; margin-top: 2px; }
.oferta-card .por .cifra { font-size: 1rem; font-weight: 500; vertical-align: 0.6rem; margin-right: 2px; }
.oferta-card .por .mes { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.oferta-card .obs { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; margin-top: 0.75rem; }

/* ── BARRAS DE VELOCIDADE ── */
.velo-lista { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.1rem; }
.velo-item { display: grid; grid-template-columns: 90px 1fr 110px; gap: 1rem; align-items: center; }
.velo-nome { font-size: 14px; font-weight: 600; color: var(--navy); text-align: right; }
.velo-trilho { background: rgba(13,31,60,0.07); border-radius: 100px; height: 26px; overflow: hidden; }
.velo-preenche { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--navy), var(--tim-blue)); display: flex; align-items: center; justify-content: flex-end; padding-right: 12px; color: #fff; font-size: 12px; font-weight: 600; min-width: 60px; }
.velo-item.destaque .velo-preenche { background: linear-gradient(90deg, var(--green), var(--green-accent)); color: var(--navy); }
.velo-preco { font-size: 14px; font-weight: 700; color: var(--navy); }
.velo-preco small { display: block; font-size: 11px; font-weight: 400; color: var(--text-muted); }

/* ── BARRA DE FRANQUIA (plano + bônus empilhado) ── */
.franquia-barra { display: flex; height: 30px; border-radius: 100px; overflow: hidden; background: rgba(13,31,60,0.06); margin: 0.5rem 0 0.15rem; }
.franquia-barra span { display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 600; color: #fff; white-space: nowrap; }
.franquia-barra .fq-plano { background: var(--navy); }
.franquia-barra .fq-bonus { background: var(--green-accent); color: var(--navy); }
.franquia-legenda { display: flex; gap: 1.1rem; font-size: 11.5px; color: var(--text-muted); }
.franquia-legenda i { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 5px; vertical-align: -1px; }

/* ── TABELA ── */
.tabela-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; border-radius: var(--radius); box-shadow: 0 2px 12px rgba(13,31,60,0.08); }
table.tabela { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14.5px; min-width: 520px; }
table.tabela thead th { background: var(--navy); color: #fff; text-align: left; padding: 14px 18px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
table.tabela td { padding: 14px 18px; border-top: 1px solid rgba(13,31,60,0.07); color: var(--text-muted); }
table.tabela td:first-child { color: var(--navy); font-weight: 600; }
table.tabela tbody tr:hover { background: var(--cream-dark); }
table.tabela .preco { color: var(--navy); font-weight: 700; white-space: nowrap; }
table.tabela tr.destaque { background: rgba(86,200,122,0.1); }
table.tabela tr.destaque td { border-top-color: rgba(86,200,122,0.3); }

/* ── AVISOS ── */
.aviso { max-width: 900px; margin: 2rem auto 0; display: flex; gap: 14px; align-items: flex-start; border-radius: var(--radius); padding: 1.15rem 1.35rem; font-size: 13.5px; line-height: 1.65; }
.aviso .ico { flex-shrink: 0; font-size: 17px; line-height: 1.3; }
.aviso.info { background: rgba(1,71,145,0.07); border: 1px solid rgba(1,71,145,0.18); color: #16406e; }
.aviso.atencao { background: rgba(234,167,0,0.08); border: 1px solid rgba(234,167,0,0.28); color: #6b4e00; }
.aviso.ok { background: rgba(86,200,122,0.12); border: 1px solid rgba(86,200,122,0.32); color: #1c5c32; }
.aviso strong { color: inherit; }

/* ── CHIPS DE CIDADE ── */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; max-width: 760px; margin: 0 auto; }
.chips span { background: var(--white); border: 1px solid rgba(13,31,60,0.12); color: var(--navy); font-size: 13.5px; font-weight: 500; padding: 8px 16px; border-radius: 100px; display: inline-flex; align-items: center; gap: 7px; }
.chips span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-accent); }

/* ── BLOCO DE DECISÃO (dois caminhos) ── */
.decisao { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.decisao-col { border-radius: var(--radius); padding: 1.85rem; border: 1.5px solid rgba(13,31,60,0.1); background: var(--white); }
.decisao-col.principal { border-color: var(--green-accent); background: rgba(86,200,122,0.05); }
.decisao-col h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.4rem; }
.decisao-col .quando { font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green); margin-bottom: 0.85rem; }
.decisao-col p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.decisao-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.decisao-col ul li { font-size: 13.5px; color: var(--text-muted); display: flex; gap: 8px; line-height: 1.5; }
.decisao-col ul li::before { content: '→'; color: var(--green); flex-shrink: 0; }

/* ── REGRA EM DESTAQUE (MEI) ── */
.regra { max-width: 900px; margin: 0 auto; background: linear-gradient(135deg, var(--navy) 0%, #013a76 100%); border-radius: var(--radius); padding: 2.25rem 2.5rem; color: #fff; }
.regra .section-label { color: var(--green-accent); }
.regra h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 1.5rem; line-height: 1.3; }
.regra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.regra-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); padding: 1.25rem; }
.regra-item .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--green-accent); line-height: 1; margin-bottom: 0.4rem; }
.regra-item p { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ── COMBO VISUAL (soma) ── */
.soma { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 1rem; align-items: center; }
.soma-card { background: var(--white); border: 1px solid rgba(13,31,60,0.1); border-radius: var(--radius); padding: 1.35rem; text-align: center; box-shadow: 0 2px 10px rgba(13,31,60,0.06); }
.soma-card .ico { width: 42px; height: 42px; margin: 0 auto 0.75rem; border-radius: 11px; background: rgba(86,200,122,0.16); display: flex; align-items: center; justify-content: center; }
.soma-card .ico svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.6; }
.soma-card strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 0.2rem; }
.soma-card span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.soma-op { font-size: 1.6rem; font-weight: 700; color: var(--green); }
.soma-card.total { background: var(--navy); border-color: var(--navy); }
.soma-card.total strong, .soma-card.total .valor { color: #fff; }
.soma-card.total span { color: rgba(255,255,255,0.6); }
.soma-card.total .valor { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin: 0.15rem 0 0.3rem; }

/* ── FAQ ── */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq details { background: var(--white); border: 1px solid rgba(13,31,60,0.1); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { padding: 1.1rem 1.35rem; font-size: 15px; font-weight: 600; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--green); font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { border-bottom: 1px solid rgba(13,31,60,0.08); }
.faq .resposta { padding: 1.1rem 1.35rem; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── VIGÊNCIA ── */
.vigencia { max-width: 1100px; margin: 2rem auto 0; text-align: center; font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ── ÍCONES EM FAIXA ── */
.icones-faixa { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.icone-bloco { text-align: center; padding: 1.5rem 1rem; }
.icone-bloco .ico { width: 54px; height: 54px; margin: 0 auto 0.9rem; border-radius: 14px; background: linear-gradient(135deg, var(--navy), var(--tim-blue)); display: flex; align-items: center; justify-content: center; }
.icone-bloco .ico svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.5; }
.icone-bloco strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 0.35rem; }
.icone-bloco p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .decisao, .regra-grid { grid-template-columns: 1fr; }
  .icones-faixa { grid-template-columns: 1fr 1fr; }
  .soma { grid-template-columns: 1fr; }
  .soma-op { text-align: center; }
}
@media (max-width: 768px) {
  .subhero { padding: 55px 1.25rem 50px; }
  .subhero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .velo-item { grid-template-columns: 74px 1fr; }
  .velo-preco { grid-column: 2; text-align: right; }
  .regra { padding: 1.75rem 1.35rem; }
  .icones-faixa { grid-template-columns: 1fr; }
}
