/* ============================================================
   LANPE SEGUROS — Global Stylesheet
   Fonte: Poppins 400 / 600 / 700  |  Sem itálico
   ============================================================ */

/* ── Variáveis ─────────────────────────────────────────────── */
:root {
  --c-900: #192940;
  --c-800: #223A58;
  --c-700: #244368;
  --c-600: #274F7D;
  --c-500: #2F629A;
  --c-400: #407BB7;
  --c-300: #6498CC;
  --c-200: #9ABCDF;
  --c-100: #C9DAEE;
  --c-50:  #E7EEF7;
  --c-25:  #F3F6FC;
  --green:      #25D366;
  --green-dark: #1ebe57;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; font-weight: 400; color: #222; background: #fff; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ── Header ────────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--c-900); height: 68px;
  display: flex; align-items: center;
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

/* Logo */
.logo img { max-height: 56px; height: auto; width: auto; }

/* Desktop nav — centrado */
nav {
  display: flex; align-items: center; gap: 4px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  color: #fff; padding: 8px 14px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap; background: none; border: none;
  font-family: 'Poppins', sans-serif;
}
.nav-link:hover { background: var(--c-800); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 10px; padding: 8px;
  min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: none; z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 10px 14px; border-radius: 6px;
  color: var(--c-800); font-size: 0.85rem; font-weight: 600;
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--c-50); color: var(--c-500); }

/* Botão Contato (CTA fixo à direita — fora do <nav>) */
.nav-cta {
  background: var(--c-500); color: #fff;
  padding: 8px 18px; border-radius: 6px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--c-400); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--c-900); z-index: 999; overflow-y: auto; padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block; color: #fff; padding: 14px 24px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; border-bottom: 1px solid var(--c-800);
}
.mobile-nav-link:hover { background: var(--c-800); }
.mobile-section-label {
  padding: 12px 24px 4px; color: var(--c-200);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}
.mobile-sub-link {
  display: block; color: var(--c-100);
  padding: 10px 24px 10px 36px;
  font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border-bottom: 1px solid var(--c-800);
}
.mobile-sub-link:hover { background: var(--c-800); color: #fff; }

/* ── Botão lateral fixo (páginas de produto) ────────────────── */
#lateral-btn {
  position: fixed; right: -42px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background: var(--c-500); color: #fff;
  border: none; padding: 10px 20px;
  font-size: 0.8rem; font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer; z-index: 900;
  border-radius: 8px 8px 0 0;
  transition: right 0.3s, background 0.2s;
  white-space: nowrap; display: none;
}
#lateral-btn.visible { display: block; }
#lateral-btn:hover   { background: var(--c-400); }

/* ── Float WhatsApp ─────────────────────────────────────────── */
#float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer; transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
#float-wa:hover { background: var(--green-dark); transform: scale(1.08); }
#float-wa svg   { width: 30px; height: 30px; }

/* ── Utilities ──────────────────────────────────────────────── */
.section       { padding: 72px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag   {
  display: inline-block; background: var(--c-50); color: var(--c-500);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px;
}
.section-title { font-size: 2rem; font-weight: 700; color: var(--c-900); margin-bottom: 16px; line-height: 1.25; }
.section-sub   { font-size: 1rem; color: #555; max-width: 640px; line-height: 1.7; }

/* ── Botões globais ─────────────────────────────────────────── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 10px 20px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 700;
  cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s; text-decoration: none;
}
.btn-wa:hover { background: var(--green-dark); }
.btn-wa svg   { width: 18px; height: 18px; flex-shrink: 0; }

.btn-wa-sm {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.btn-wa-sm:hover { background: var(--green-dark); }
.btn-wa-sm svg   { width: 16px; height: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 26px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: 2px solid rgba(255,255,255,0.5);
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--c-500); color: #fff;
  padding: 12px 22px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; border: none;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s; text-decoration: none;
}
.btn-primary:hover { background: var(--c-400); }

.btn-outline-blue {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--c-500);
  padding: 12px 22px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; border: 2px solid var(--c-500);
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s; text-decoration: none;
}
.btn-outline-blue:hover { background: var(--c-500); color: #fff; }

.btn-tel {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-50); color: var(--c-700);
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.btn-tel:hover { background: var(--c-100); }

/* ── HOME — Hero ────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--c-900) 0%, var(--c-700) 100%);
  padding: 120px 20px 80px; min-height: 100vh;
  display: flex; align-items: center;
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  padding: 8px 18px; border-radius: 24px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1    { font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 22px; max-width: 700px; }
.hero p     { font-size: 1.08rem; color: var(--c-100); max-width: 580px; line-height: 1.75; margin-bottom: 36px; }
.hero-btns  { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-stat  { color: #fff; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--c-200); }
.hero-stat span   { font-size: 0.82rem; color: var(--c-100); }

/* ── HOME — Sobre ───────────────────────────────────────────── */
.about { background: var(--c-25); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature  { background: #fff; border-radius: 10px; padding: 18px; border-left: 4px solid var(--c-400); }
.about-feature strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--c-800); margin-bottom: 4px; }
.about-feature span   { font-size: 0.82rem; color: #666; }
.about-img-wrap {
  background: linear-gradient(135deg, var(--c-800), var(--c-500));
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  align-items: center; justify-content: center; min-height: 320px;
}
.about-img-wrap .stat-big { text-align: center; color: #fff; }
.about-img-wrap .stat-big strong { display: block; font-size: 3rem; font-weight: 700; }
.about-img-wrap .stat-big span   { font-size: 0.9rem; color: var(--c-100); }

/* ── HOME — Cards de serviços ───────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px; margin-top: 40px;
}
.card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }
.card-img              { height: 180px; overflow: hidden; }
.card-img img          { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body   { padding: 20px; }
.card-title  { font-size: 1rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; }
.card-desc   { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.card-link   { color: var(--c-500); font-size: 0.85rem; font-weight: 700; }

/* ── HOME — Seguradoras parceiras ───────────────────────────── */
.partners { background: var(--c-25); }
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px,1fr));
  gap: 16px; margin-top: 40px;
}
.partner-logo {
  background: #fff; border-radius: 10px; padding: 16px;
  display: flex; align-items: center; justify-content: center;
  height: 80px; box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.partner-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.partner-logo img   { max-height: 48px; max-width: 100%; object-fit: contain; }

/* ── HOME — CTA final ───────────────────────────────────────── */
.home-cta   { background: linear-gradient(135deg, var(--c-900), var(--c-700)); text-align: center; padding: 80px 20px; }
.home-cta h2 { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.home-cta p  { color: var(--c-100); font-size: 1rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Páginas de seguro — header e capa ──────────────────────── */
.page-header { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 36px 20px 40px; margin-top: 68px; }
.page-header-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb       { color: var(--c-200); font-size: 0.8rem; margin-bottom: 14px; }
.breadcrumb a     { color: var(--c-200); }
.breadcrumb a:hover { color: #fff; }
.page-header h1   { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; color: #fff; margin-bottom: 10px; }
.page-header p    { color: var(--c-100); font-size: 1rem; max-width: 640px; line-height: 1.6; }
.cover-img        { width: 100%; height: 300px; object-fit: cover; display: block; }

/* ── Páginas de seguro — conteúdo ───────────────────────────── */
.insurance-body   { max-width: 1200px; margin: 0 auto; padding: 48px 20px; }
.insurance-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.insurance-main h2 { font-size: 1.25rem; font-weight: 700; color: var(--c-800); margin: 32px 0 12px; }
.insurance-main h2:first-child { margin-top: 0; }
.insurance-main p  { color: #444; line-height: 1.75; font-size: 0.95rem; }
.insurance-main ul { padding-left: 20px; color: #444; font-size: 0.95rem; line-height: 1.85; }

.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px;
}
.coverage-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--c-25); border-radius: 8px; padding: 12px 14px;
}
.coverage-item .check { color: var(--c-400); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.coverage-item span   { font-size: 0.85rem; color: var(--c-800); font-weight: 600; line-height: 1.4; }

.vantagens-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.vantagens-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: #444; line-height: 1.5; }
.vantagens-list li .check { color: var(--c-400); flex-shrink: 0; margin-top: 2px; }

/* FAQ */
.faq-list     { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.faq-item     { border: 1px solid var(--c-100); border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 16px 18px;
  background: #fff; border: none;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--c-800);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover   { background: var(--c-25); }
.faq-arrow            { flex-shrink: 0; transition: transform 0.3s; color: var(--c-400); font-size: 1.1rem; }
.faq-item.open .faq-arrow    { transform: rotate(180deg); }
.faq-answer           { display: none; padding: 0 18px 16px; font-size: 0.88rem; color: #555; line-height: 1.7; }
.faq-item.open .faq-answer   { display: block; }

/* Seção "Aprenda mais" (internal linking — Fase 5) */
.learn-more {
  background: var(--c-25); border-radius: 12px; padding: 28px; margin: 32px 0;
  border-left: 4px solid var(--c-400);
}
.learn-more h3 { font-size: 1rem; font-weight: 700; color: var(--c-800); margin-bottom: 14px; }
.learn-more ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.learn-more ul a {
  font-size: 0.88rem; font-weight: 600; color: var(--c-500);
  display: flex; align-items: center; gap: 6px;
}
.learn-more ul a:hover { color: var(--c-700); }

/* Sidebar */
.sidebar-card { background: var(--c-900); border-radius: 14px; padding: 28px; color: #fff; position: sticky; top: 88px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: #fff; }
.sidebar-card .btn-wa { width: 100%; justify-content: center; margin-bottom: 10px; font-size: 0.88rem; }
.sidebar-btn-outline {
  display: block; width: 100%; text-align: center;
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 12px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; margin-bottom: 18px; transition: border-color 0.2s;
  text-decoration: none;
}
.sidebar-btn-outline:hover { border-color: #fff; }
.sidebar-contact { display: flex; flex-direction: column; gap: 10px; }
.sidebar-contact a { color: var(--c-200); font-size: 0.85rem; font-weight: 600; }
.sidebar-contact a:hover { color: #fff; }

/* CTA de produto */
.insurance-cta   { background: linear-gradient(135deg, var(--c-900), var(--c-700)); padding: 64px 20px; text-align: center; }
.insurance-cta h2 { font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.insurance-cta p  { color: var(--c-100); font-size: 0.95rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Blog ───────────────────────────────────────────────────── */
.blog-header { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 80px 20px 48px; margin-top: 68px; }
.blog-header h1 { font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.blog-header p  { color: var(--c-100); font-size: 1rem; }
.blog-body      { max-width: 1200px; margin: 0 auto; padding: 48px 20px; }
.blog-filters   { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn     { padding: 8px 18px; border-radius: 24px; border: 2px solid var(--c-100); background: #fff; color: var(--c-600); font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 700; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--c-500); color: #fff; border-color: var(--c-500); }
.blog-empty     { text-align: center; padding: 80px 20px; }
.blog-empty h3  { font-size: 1.3rem; font-weight: 700; color: var(--c-800); margin-bottom: 10px; }
.blog-empty p   { color: #666; font-size: 0.95rem; }
.blog-articles  { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.blog-card      { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.blog-card-img-placeholder { height: 180px; background: var(--c-50); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 20px; }
.blog-card-tag  { display: inline-block; background: var(--c-50); color: var(--c-500); padding: 4px 12px; border-radius: 12px; font-size: 0.75rem; font-weight: 700; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; }
.blog-card-body p  { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.blog-card-footer  { display: flex; justify-content: space-between; align-items: center; }
.blog-card-date    { font-size: 0.78rem; color: #999; }
.blog-card-link    { font-size: 0.82rem; font-weight: 700; color: var(--c-500); }

/* ── Cotação ────────────────────────────────────────────────── */
.cotacao-header   { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 80px 20px 48px; margin-top: 68px; }
.cotacao-header h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.cotacao-header p  { color: var(--c-100); font-size: 1rem; }
.cotacao-body      { max-width: 1100px; margin: 0 auto; padding: 48px 20px; }
.cotacao-layout    { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cotacao-form-card { background: #fff; border-radius: 14px; padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.cotacao-form-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--c-800); margin-bottom: 24px; }
.form-group        { margin-bottom: 18px; }
.form-group label  { display: block; font-size: 0.85rem; font-weight: 700; color: var(--c-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--c-100); border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: #333;
  transition: border-color 0.2s; outline: none; background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--c-400); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  max-width: 300px; width: 100%; padding: 15px 20px; background: var(--green); color: #fff; border: none; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s;
}
.btn-submit svg { width: 24px; height: 24px; flex-shrink: 0; }
.btn-submit:hover { background: var(--green-dark); }
.cotacao-info-card { background: var(--c-900); border-radius: 14px; padding: 32px; color: #fff; position: sticky; top: 88px; }
.cotacao-info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; color: #fff; }
.info-point  { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.info-dot    { width: 20px; height: 20px; border-radius: 50%; background: var(--c-400); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.info-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.info-point p { font-size: 0.88rem; color: var(--c-100); line-height: 1.5; font-weight: 600; }

/* ── Contato ────────────────────────────────────────────────── */
.contato-header   { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 80px 20px 48px; margin-top: 68px; }
.contato-header h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.contato-header p  { color: var(--c-100); font-size: 1rem; }
.contato-body      { max-width: 1000px; margin: 0 auto; padding: 56px 20px; }
.contato-cards     { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; margin-bottom: 48px; }
.contato-card      { background: #fff; border-radius: 14px; padding: 28px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); text-align: center; }
.contato-card-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--c-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.contato-card h3   { font-size: 1rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; }
.contato-card .desc  { font-size: 0.85rem; color: #666; line-height: 1.5; margin-bottom: 14px; }
.contato-card .value { font-size: 0.95rem; font-weight: 700; color: var(--c-700); margin-bottom: 18px; }
.contato-note      { text-align: center; color: #555; font-size: 0.95rem; line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* ── Assistência 24h ────────────────────────────────────────── */
.assistencia-header   { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 80px 20px 48px; margin-top: 68px; }
.assistencia-header h1 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.assistencia-header p  { color: var(--c-100); font-size: 1rem; max-width: 640px; line-height: 1.6; }
.assistencia-body      { max-width: 1100px; margin: 0 auto; padding: 48px 20px; }
.assistencia-grid      { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.assistencia-card      { background: #fff; border-radius: 14px; padding: 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.assistencia-card .seg-logo { height: 48px; margin-bottom: 16px; object-fit: contain; }
.assistencia-card h3   { font-size: 0.95rem; font-weight: 700; color: var(--c-800); margin-bottom: 14px; }
.assistencia-btns      { display: flex; flex-direction: column; gap: 8px; }
.note-text             { font-size: 0.78rem; color: #888; padding: 8px 14px; }

/* ── Educativo grid (transportes.html) ─────────────────────── */
.educativo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 12px; }
.educativo-grid a { display: block; background: var(--c-25); border-radius: 8px; padding: 14px 16px; color: var(--c-800); font-size: 0.88rem; font-weight: 600; border: 1px solid var(--c-100); transition: background 0.15s, color 0.15s; }
.educativo-grid a:hover { background: var(--c-50); color: var(--c-500); }

/* ── Cards de Apólice ───────────────────────────────────────── */
.apolice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 12px; }
.apolice-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--c-100); border-radius: 10px;
  padding: 20px 18px; text-align: left; cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  font-family: 'Poppins', sans-serif;
}
.apolice-card:hover { border-color: var(--c-400); box-shadow: 0 4px 16px rgba(47,98,154,0.12); transform: translateY(-2px); }
.apolice-card-title { font-size: 1.15rem; font-weight: 700; color: var(--c-800); }
.apolice-card-sub   { font-size: 0.8rem; color: #555; line-height: 1.5; flex: 1; }
.apolice-badge      { display: inline-block; background: var(--c-50); border: 1px solid var(--c-100); color: var(--c-600); font-size: 0.72rem; font-weight: 600; border-radius: 20px; padding: 3px 10px; margin-top: 4px; }
.apolice-card-arrow { font-size: 0.78rem; color: var(--c-400); font-weight: 600; margin-top: 6px; }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,35,0.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 12px; max-width: 580px; width: 100%;
  max-height: 88vh; overflow-y: auto; padding: 36px 32px 32px;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.5rem; line-height: 1;
  color: var(--c-400); cursor: pointer; padding: 4px 8px; border-radius: 4px;
  font-family: 'Poppins', sans-serif; transition: color 0.15s, background 0.15s;
}
.modal-close:hover { color: var(--c-800); background: var(--c-50); }
.modal-title       { font-size: 1.5rem; font-weight: 700; color: var(--c-800); margin: 0 0 6px; }
.modal-subtitle    { font-size: 0.88rem; color: #555; margin: 0 0 12px; line-height: 1.5; }
.modal-badge       { display: inline-block; background: var(--c-50); border: 1px solid var(--c-100); color: var(--c-600); font-size: 0.72rem; font-weight: 600; border-radius: 20px; padding: 3px 10px; margin-bottom: 20px; }
.modal-section     { margin-top: 20px; }
.modal-section h4  { font-size: 0.88rem; font-weight: 700; color: var(--c-700); text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 8px; }
.modal-section p   { font-size: 0.9rem; color: #444; line-height: 1.7; margin: 0; }
@media (max-width: 640px) {
  .apolice-cards { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px 24px; }
}

/* ── Página Sinistros ───────────────────────────────────────── */
.guide-title  { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 700; color: var(--c-800); margin: 0 0 10px; }
.guide-intro  { color: #555; font-size: 0.95rem; line-height: 1.7; margin: 0 0 28px; max-width: 640px; }
.insurance-main h3 { font-size: 1rem; font-weight: 700; color: var(--c-700); margin: 20px 0 8px; }
.sinistro-aviso { background: var(--c-25); border: 1px solid var(--c-200); border-left: 4px solid var(--c-500); border-radius: 8px; padding: 20px 20px 16px; margin-bottom: 32px; }
.sinistro-aviso p { font-size: 0.9rem; color: #444; line-height: 1.7; margin: 0 0 14px; }
.sinistro-aviso-btn { display: inline-block; background: var(--c-500); color: #fff; padding: 10px 20px; border-radius: 6px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: background 0.15s; }
.sinistro-aviso-btn:hover { background: var(--c-400); }
.sinistro-atencao { background: #fffbea; border: 1px solid #e8d255; border-radius: 6px; padding: 12px 16px; margin-top: 20px; font-size: 0.85rem; color: #6b5000; line-height: 1.6; }
.prazo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; margin-top: 12px; }
.prazo-card { background: #fff; border: 1px solid var(--c-100); border-radius: 8px; padding: 16px; }
.prazo-card-label { font-size: 0.7rem; font-weight: 700; color: var(--c-500); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.prazo-card-value { font-size: 0.88rem; font-weight: 600; color: var(--c-800); line-height: 1.5; }

/* ── Páginas estáticas (Política, Termos) ───────────────────── */
.static-header   { background: linear-gradient(135deg, var(--c-900), var(--c-800)); padding: 80px 20px 48px; margin-top: 68px; }
.static-header h1 { font-size: 2rem; font-weight: 700; color: #fff; }
.static-body      { max-width: 800px; margin: 0 auto; padding: 48px 20px; }
.static-section   { margin-bottom: 36px; }
.static-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--c-800); margin-bottom: 10px; }
.static-section p  { font-size: 0.92rem; color: #555; line-height: 1.75; }

/* ── Footer ─────────────────────────────────────────────────── */
footer          { background: var(--c-900); color: #fff; padding: 60px 20px 0; }
.footer-inner   { max-width: 1200px; margin: 0 auto; }
.footer-grid    { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.footer-col h4  { font-size: 0.88rem; font-weight: 700; color: var(--c-200); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col p   { font-size: 0.85rem; color: var(--c-100); line-height: 1.7; margin-bottom: 16px; }
.footer-logo    { height: 40px; width: auto; margin-bottom: 16px; }
.footer-contact a { display: block; color: var(--c-200); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.footer-contact a:hover { color: #fff; }
.footer-links   { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links li a   { color: var(--c-100); font-size: 0.85rem; }
.footer-links li a:hover { color: #fff; }
.footer-links .sep   { border: none; border-top: 1px solid var(--c-800); margin: 4px 0; }
.footer-bottom {
  border-top: 1px solid var(--c-800); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p             { font-size: 0.8rem; color: var(--c-200); }
.footer-bottom-links         { display: flex; gap: 20px; }
.footer-bottom-links a       { font-size: 0.8rem; color: var(--c-200); }
.footer-bottom-links a:hover { color: #fff; }

/* ── Responsivo ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }        /* CTA some no mobile — substituído pelo botão no menu */
  .insurance-layout { grid-template-columns: 1fr; }
  .sidebar-card     { display: none; }
  .cotacao-layout   { grid-template-columns: 1fr; }
  .cotacao-info-card { position: static; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .coverage-grid  { grid-template-columns: 1fr; }
  .hero           { padding: 100px 20px 60px; min-height: auto; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  #lateral-btn    { display: none !important; }
  .cover-img      { height: 220px; }
  .about-features { grid-template-columns: 1fr; }
  .contato-cards  { grid-template-columns: 1fr; }
  .assistencia-grid { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: repeat(auto-fill, minmax(110px,1fr)); }
  .cards-grid     { grid-template-columns: 1fr; }
  .section        { padding: 56px 16px; }
  .blog-body, .cotacao-body, .contato-body, .assistencia-body, .static-body { padding: 32px 16px; }
  .insurance-body { padding: 32px 16px; }
  .cotacao-form-card { padding: 24px 16px; }
  .cotacao-info-card { padding: 24px 16px; }
}

@media (max-width: 380px) {
  .hero h1        { font-size: 1.7rem; }
  .blog-filters   { gap: 6px; }
  .filter-btn     { padding: 6px 12px; font-size: 0.78rem; }
  .section-title  { font-size: 1.6rem; }
  .btn-wa         { padding: 9px 14px; font-size: 0.82rem; }
}
