/* =========================================
   KCB - Serviços de Injeção Eletrônica e Ar Condicionado LTDA
   style.css - Folha de Estilos Principal
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&family=Barlow+Condensed:wght@500;700;800&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --azul:       #0a1628;
  --azul-med:   #112240;
  --azul-claro: #1a3a6b;
  --laranja:    #e8601c;
  --laranja-lt: #f4874a;
  --cinza:      #f5f6f8;
  --cinza-med:  #d0d5de;
  --texto:      #1e2535;
  --texto-cl:   #4a5568;
  --branco:     #ffffff;
  --sombra:     0 4px 24px rgba(10,22,40,0.12);
  --sombra-lg:  0 12px 48px rgba(10,22,40,0.18);
  --borda:      1px solid #dee3ec;
  --raio:       8px;
  --raio-lg:    16px;
  --fonte-h:    'Barlow Condensed', sans-serif;
  --fonte-b:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--fonte-b);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--laranja); text-decoration: none; transition: color .2s; }
a:hover { color: var(--laranja-lt); }

img { max-width: 100%; display: block; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--raio);
  font-family: var(--fonte-b);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all .25s;
  text-decoration: none;
}

.btn-primary {
  background: var(--laranja);
  color: var(--branco);
}
.btn-primary:hover {
  background: var(--laranja-lt);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,96,28,.35);
}

.btn-outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--branco);
  color: var(--branco);
}

.btn-dark {
  background: var(--azul);
  color: var(--branco);
}
.btn-dark:hover {
  background: var(--azul-claro);
  color: var(--branco);
  transform: translateY(-2px);
}

.section-tag {
  display: inline-block;
  font-family: var(--fonte-b);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--fonte-h);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title.white { color: var(--branco); }

.section-lead {
  font-size: 1.08rem;
  color: var(--texto-cl);
  max-width: 640px;
  margin-bottom: 48px;
}

.section-lead.white { color: rgba(255,255,255,.8); }

/* ---- HEADER ---- */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--azul);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--laranja);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--branco);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--fonte-h);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
}
.logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--branco);
  background: rgba(255,255,255,.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.header-phone {
  font-size: .88rem;
  font-weight: 700;
  color: var(--laranja);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: .3s;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(232,96,28,.12) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,96,28,.15);
  border: 1px solid rgba(232,96,28,.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--laranja-lt);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--fonte-h);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--branco);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title span { color: var(--laranja); }

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat-num {
  font-family: var(--fonte-h);
  font-size: 2rem;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
}

.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--raio-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-family: var(--fonte-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--laranja);
  border-radius: 2px;
}

.service-list { list-style: none; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--laranja);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
  color: var(--branco);
}

/* ---- INFO BAR ---- */
.info-bar {
  background: var(--laranja);
  padding: 16px 0;
}

.info-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--branco);
  font-size: .9rem;
  font-weight: 600;
}

/* ---- SOBRE (HOME SNIPPET) ---- */
.sobre-home {
  padding: 96px 0;
  background: var(--branco);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-text p {
  color: var(--texto-cl);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.sobre-text p strong { color: var(--azul); }

.sobre-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  background: var(--cinza);
  border-radius: var(--raio);
  padding: 20px;
  border-left: 3px solid var(--laranja);
}

.highlight-num {
  font-family: var(--fonte-h);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
}

.highlight-label {
  font-size: .82rem;
  color: var(--texto-cl);
  margin-top: 4px;
}

.sobre-img-block {
  position: relative;
}

.sobre-img-main {
  width: 100%;
  border-radius: var(--raio-lg);
  background: linear-gradient(135deg, var(--azul-med) 0%, var(--azul-claro) 100%);
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sobre-img-icon {
  font-size: 8rem;
  opacity: .15;
}

.sobre-img-overlay {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--laranja);
  border-radius: var(--raio-lg);
  padding: 28px 32px;
  color: var(--branco);
  box-shadow: var(--sombra-lg);
}

.sobre-img-overlay strong {
  font-family: var(--fonte-h);
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.sobre-img-overlay span { font-size: .85rem; opacity: .85; }

/* ---- SERVIÇOS ---- */
.servicos {
  padding: 96px 0;
  background: var(--cinza);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.servico-card {
  background: var(--branco);
  border-radius: var(--raio-lg);
  padding: 36px 30px;
  box-shadow: var(--sombra);
  transition: transform .25s, box-shadow .25s;
  border: 1px solid transparent;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
  border-color: var(--laranja);
}

.servico-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-lt) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.servico-nome {
  font-family: var(--fonte-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.servico-desc {
  font-size: .93rem;
  color: var(--texto-cl);
  line-height: 1.75;
}

/* ---- DIFERENCIAIS ---- */
.diferenciais {
  padding: 96px 0;
  background: var(--azul);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(232,96,28,.08) 0%, transparent 60%);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.diferencial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--raio-lg);
  padding: 36px 28px;
  transition: background .25s, border-color .25s;
}

.diferencial-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,96,28,.4);
}

.diferencial-num {
  font-family: var(--fonte-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(232,96,28,.25);
  line-height: 1;
  margin-bottom: 8px;
}

.diferencial-titulo {
  font-family: var(--fonte-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.25;
}

.diferencial-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
}

/* ---- PROCESSO ---- */
.processo {
  padding: 96px 0;
  background: var(--branco);
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--laranja) 0%, var(--azul-claro) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--branco);
  border: 3px solid var(--laranja);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--laranja);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(232,96,28,.08);
}

.step-title {
  font-family: var(--fonte-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-desc {
  font-size: .88rem;
  color: var(--texto-cl);
  line-height: 1.7;
}

/* ---- AUTORIDADE ---- */
.autoridade {
  padding: 96px 0;
  background: var(--cinza);
}

.autoridade-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: center;
}

.autoridade-text p {
  color: var(--texto-cl);
  margin-bottom: 18px;
  line-height: 1.8;
}

.autoridade-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.aut-num-card {
  background: var(--branco);
  border-radius: var(--raio-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--sombra);
}

.aut-num-card strong {
  display: block;
  font-family: var(--fonte-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--laranja);
  line-height: 1;
}

.aut-num-card span {
  display: block;
  font-size: .8rem;
  color: var(--texto-cl);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- EDUCATIVO ---- */
.educativo {
  padding: 96px 0;
  background: var(--branco);
}

.educativo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.educativo-content h3 {
  font-family: var(--fonte-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.educativo-content p {
  color: var(--texto-cl);
  line-height: 1.8;
  margin-bottom: 16px;
}

.edu-tips {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  border-radius: var(--raio-lg);
  padding: 36px 30px;
  position: sticky;
  top: 96px;
}

.edu-tips-title {
  font-family: var(--fonte-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.edu-tip-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.edu-tip-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.edu-tip-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  margin-top: 2px;
}

.edu-tip-text strong {
  display: block;
  color: var(--branco);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.edu-tip-text p {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-home {
  padding: 96px 0;
  background: var(--cinza);
}

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--branco);
  border-radius: var(--raio);
  margin-bottom: 16px;
  box-shadow: var(--sombra);
  overflow: hidden;
}

.faq-question {
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--azul);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--laranja);
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--texto-cl);
  line-height: 1.8;
  font-size: .95rem;
}

/* ---- CTA FINAL ---- */
.cta-final {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,96,28,.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: var(--fonte-h);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.cta-final p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.cta-info-item span { font-size: 1.3rem; }

/* ---- FOOTER ---- */
#footer {
  background: #060e1c;
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.footer-cnpj {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  font-weight: 600;
  letter-spacing: .05em;
}

.footer-heading {
  font-family: var(--fonte-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--laranja); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fci-icon {
  width: 32px;
  height: 32px;
  background: rgba(232,96,28,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fci-text {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

.fci-text a { color: rgba(255,255,255,.55); }
.fci-text a:hover { color: var(--laranja); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--laranja); }

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--azul);
  border-top: 3px solid var(--laranja);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -8px 32px rgba(0,0,0,.3);
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a { color: var(--laranja-lt); }

.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-accept {
  background: var(--laranja);
  color: var(--branco);
  border: none;
  padding: 10px 24px;
  border-radius: var(--raio);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--laranja-lt); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 20px;
  border-radius: var(--raio);
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}
.cookie-decline:hover {
  color: var(--branco);
  border-color: rgba(255,255,255,.5);
}

/* ---- INNER PAGES ---- */
.page-hero {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-claro) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(232,96,28,.1) 0%, transparent 60%);
}

.page-hero-inner { position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--laranja); }
.breadcrumb span { color: rgba(255,255,255,.3); }

.page-title {
  font-family: var(--fonte-h);
  font-size: 3rem;
  font-weight: 800;
  color: var(--branco);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
}

.page-content {
  padding: 80px 0;
  background: var(--branco);
}

.prose {
  max-width: 820px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--fonte-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin: 40px 0 16px;
}

.prose h3 {
  font-family: var(--fonte-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin: 28px 0 12px;
}

.prose p {
  color: var(--texto-cl);
  line-height: 1.85;
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  margin: 16px 0 24px 24px;
  color: var(--texto-cl);
}

.prose li {
  margin-bottom: 8px;
  line-height: 1.75;
}

.prose strong { color: var(--azul); }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.prose th {
  background: var(--azul);
  color: var(--branco);
  padding: 12px 16px;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
}

.prose td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cinza-med);
  font-size: .9rem;
  color: var(--texto-cl);
}

.prose tr:nth-child(even) td { background: var(--cinza); }

/* ---- SOBRE PAGE ---- */
.sobre-timeline {
  padding: 80px 0;
  background: var(--cinza);
}

.timeline { max-width: 800px; margin: 0 auto; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--laranja) 0%, var(--azul-claro) 100%);
}

.timeline-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding-left: 64px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: var(--laranja);
  border-radius: 50%;
  border: 3px solid var(--cinza);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: var(--branco);
}

.timeline-year {
  font-family: var(--fonte-h);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--laranja);
  flex-shrink: 0;
  min-width: 60px;
}

.timeline-content h4 {
  font-family: var(--fonte-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: .9rem;
  color: var(--texto-cl);
  line-height: 1.7;
}

/* ---- CONTATO PAGE ---- */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0;
}

.contato-info h3 {
  font-family: var(--fonte-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contato-info p {
  color: var(--texto-cl);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--cinza);
  border-radius: var(--raio-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--sombra); }

.cc-icon {
  width: 48px;
  height: 48px;
  background: var(--laranja);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cc-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--texto-cl);
  margin-bottom: 4px;
}

.cc-value {
  font-weight: 700;
  color: var(--azul);
  font-size: 1rem;
}

.cc-sub { font-size: .82rem; color: var(--texto-cl); margin-top: 2px; }

.mapa-block {
  background: var(--cinza);
  border-radius: var(--raio-lg);
  overflow: hidden;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cinza-med);
  position: relative;
}

.mapa-placeholder {
  text-align: center;
  color: var(--texto-cl);
}

.mapa-placeholder .icon { font-size: 3rem; margin-bottom: 12px; }
.mapa-placeholder p { font-size: .9rem; }

.horarios {
  background: var(--azul);
  border-radius: var(--raio-lg);
  padding: 32px;
  margin-top: 28px;
}

.horarios h4 {
  font-family: var(--fonte-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.horario-row:last-child { border-bottom: none; }
.horario-row strong { color: var(--branco); }

/* ---- FAQ PAGE ---- */
.faq-full .faq-list { max-width: 100%; }

.faq-category {
  font-family: var(--fonte-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  margin: 48px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--laranja);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---- POLITICA / TERMOS / COOKIES ---- */
.legal-page { padding: 80px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.6rem; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-img-block { display: none; }
  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .processo-steps { grid-template-columns: 1fr; gap: 28px; }
  .processo-steps::before { display: none; }
  .autoridade-grid { grid-template-columns: 1fr; }
  .educativo-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  nav { display: none; }
  .hamburger { display: flex; }
  nav.open { 
    display: flex; 
    flex-direction: column; 
    position: absolute; 
    top: 72px; 
    left: 0; right: 0;
    background: var(--azul-med);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  #header { position: relative; }
  .header-inner { position: relative; }
  .page-title { font-size: 2rem; }
}
