/* ============================================================
   LANPE SEGUROS — Stylesheet v3  |  Editorial Mobile-first
   Fonte: Poppins 400 / 600 / 700
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  /* Paleta azul da marca — preserved */
  --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;

  /* Utilitários */
  --green:      #25D366;
  --green-dark: #1ebe57;

  /* Sistema de raios */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-pill: 9999px;

  /* Sombras — flat system */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);

  /* Transições */
  --t-fast: 0.15s ease;
  --t-base: 0.22s ease;
  --t-slow: 0.35s ease;
  --t-menu: 0.40s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --header-h:   70px;
  --section-py: 96px;
  --container:  1200px;
}

/* ── 2. RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1a2433;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'Poppins', sans-serif; }
body.menu-open { overflow: hidden; }

/* ── 3. HEADER ─────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--c-900);
  display: flex; align-items: center;
  transition: box-shadow var(--t-slow), background var(--t-slow);
}
header.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 28px rgba(0,0,0,0.32);
  background: rgba(25,41,64,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}

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

/* Desktop nav — centrado */
nav {
  display: flex; align-items: center; gap: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  color: rgba(255,255,255,0.80);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 0.845rem; font-weight: 600;
  white-space: nowrap; background: none; border: none;
  transition: background var(--t-fast), color var(--t-fast);
  letter-spacing: 0.01em;
}
.nav-link:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 0;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 6px;
  min-width: 246px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 1px 0 rgba(0,0,0,0.04);
  border: 1px solid var(--c-50);
  display: none; z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block; padding: 10px 16px;
  border-radius: var(--r-sm);
  color: var(--c-700); font-size: 0.84rem; font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast);
}
.dropdown-item:hover { background: var(--c-25); color: var(--c-500); }

/* CTA nav desktop */
.nav-cta {
  background: var(--c-500); color: #fff;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-size: 0.845rem; font-weight: 700;
  border: none;
  transition: background var(--t-base);
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--c-400); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 10px; margin-right: -10px;
  width: 44px; height: 44px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 4. MENU MOBILE — redesign completo ──────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-900);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Estado fechado — desliza de cima para baixo */
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform var(--t-menu),
    opacity 0.30s ease,
    visibility 0.40s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Cabeçalho interno do menu — logo + fechar */
.mm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mm-logo img { height: 38px; width: auto; }

.mm-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.mm-close span {
  position: absolute;
  width: 17px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
}
.mm-close span:first-child { transform: rotate(45deg); }
.mm-close span:last-child  { transform: rotate(-45deg); }
.mm-close:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
}

/* Corpo do menu — scrollável */
.mm-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 12px;
}

/* Links principais (Início, Blog, Cotação) */
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  padding: 0 24px;
  min-height: 58px;
  font-size: 1rem; font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link::after {
  content: "›";
  font-size: 1.2rem; font-weight: 300;
  color: rgba(255,255,255,0.28);
  flex-shrink: 0;
}
.mobile-nav-link:hover,
.mobile-nav-link:active { background: rgba(255,255,255,0.05); }

/* Rótulo de seção */
.mobile-section-label {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px 10px;
  color: var(--c-300);
  font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.8px;
}
.mobile-section-label::after {
  content: "";
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.09);
}

/* Sub-links (itens de categoria) */
.mobile-sub-link {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.72);
  padding: 0 24px 0 38px;
  min-height: 52px;
  font-size: 0.9rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--t-fast), color var(--t-fast);
  -webkit-tap-highlight-color: transparent;
}
.mobile-sub-link::after {
  content: "›";
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.mobile-sub-link:hover,
.mobile-sub-link:active { background: rgba(255,255,255,0.05); color: #fff; }

/* Rodapé do menu — CTAs fixos no fundo */
.mm-footer {
  padding: 16px 20px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0;
}
.mm-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--green); color: #fff;
  padding: 16px 20px;
  border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700;
  transition: background var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.mm-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mm-cta-btn:hover { background: var(--green-dark); }

.mm-contact-link {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  padding: 14px 20px;
  border-radius: var(--r-pill);
  font-size: 0.87rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color var(--t-base), color var(--t-base), background var(--t-base);
}
.mm-contact-link:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.04);
}

/* ── 5. BOTÃO LATERAL FIXO ──────────────────────────────────── */
#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;
  cursor: pointer; z-index: 900;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: right var(--t-slow), background var(--t-base);
  white-space: nowrap; display: none;
}
#lateral-btn.visible { display: block; }
#lateral-btn:hover   { background: var(--c-400); }

/* ── 6. FLOAT WHATSAPP ──────────────────────────────────────── */
#float-wa {
  position: fixed; bottom: 24px; right: 20px; 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.40);
  transition: background var(--t-base), transform var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
#float-wa:hover { background: var(--green-dark); transform: scale(1.06); }
#float-wa svg   { width: 28px; height: 28px; }

/* ── 7. UTILITIES ───────────────────────────────────────────── */
.section       { padding: var(--section-py) 28px; }
.section-inner { max-width: var(--container); margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center;
  background: var(--c-50); color: var(--c-600);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.70rem; font-weight: 700;
  letter-spacing: 0.7px; margin-bottom: 18px;
  text-transform: uppercase;
  border: 1px solid var(--c-100);
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 700; color: var(--c-900);
  margin-bottom: 16px; line-height: 1.14;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 1rem; color: #5a6478;
  max-width: 580px; line-height: 1.74;
}

/* ── 8. BOTÕES GLOBAIS ──────────────────────────────────────── */
.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 700;
  border: none; transition: background var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.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 18px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700;
  transition: background var(--t-base);
}
.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 28px;
  border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.32);
  transition: border-color var(--t-base), background var(--t-base);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--c-500); color: #fff;
  padding: 12px 26px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 700;
  border: none; transition: background var(--t-base);
}
.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: 11px 24px; border-radius: var(--r-pill);
  font-size: 0.875rem; font-weight: 700;
  border: 1.5px solid var(--c-300);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.btn-outline-blue:hover { background: var(--c-500); color: #fff; border-color: var(--c-500); }

.btn-tel {
  display: flex; align-items: center; gap: 8px;
  background: var(--c-50); color: var(--c-700);
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700;
  transition: background var(--t-base);
  border: 1px solid var(--c-100);
}
.btn-tel:hover { background: var(--c-100); }

/* ── 9. HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--c-900);
  padding: calc(var(--header-h) + 72px) 28px 88px;
  min-height: 100svh;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 65% 55%, rgba(47,98,154,0.24) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5% 85%, rgba(36,67,104,0.28) 0%, transparent 60%);
}
.hero-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: var(--c-200);
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: 0.77rem; font-weight: 600; margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 700; color: #fff;
  line-height: 1.10; margin-bottom: 22px;
  max-width: 740px;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.05rem; color: var(--c-100);
  max-width: 540px; line-height: 1.78; margin-bottom: 40px;
}

.hero-btns  { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 64px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.hero-stat strong {
  display: block; font-size: 1.85rem; font-weight: 700; color: #fff;
  letter-spacing: -0.035em; line-height: 1;
}
.hero-stat span { font-size: 0.77rem; color: var(--c-200); margin-top: 5px; display: block; }

/* ── 10. SOBRE ──────────────────────────────────────────────── */
.about { background: var(--c-25); }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 72px; align-items: center;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px;
}
.about-feature {
  background: #fff; border-radius: var(--r-md); padding: 20px;
  border: 1px solid var(--c-100);
  border-left: 3px solid var(--c-400);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.about-feature:hover { border-color: var(--c-300); box-shadow: var(--shadow-xs); }
.about-feature strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--c-800); margin-bottom: 5px; }
.about-feature span   { font-size: 0.78rem; color: #6b7a94; line-height: 1.55; }

/* Painel de stats */
.about-img-wrap {
  background: var(--c-900);
  border-radius: var(--r-xl); padding: 48px 40px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.05);
}
.about-img-wrap .stat-big {
  text-align: left; color: #fff;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about-img-wrap .stat-big:first-child { padding-top: 0; }
.about-img-wrap .stat-big:last-child  { padding-bottom: 0; border-bottom: none; }
.about-img-wrap .stat-big strong {
  display: block; font-size: 3.2rem; font-weight: 700;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.about-img-wrap .stat-big span { font-size: 0.85rem; color: var(--c-200); }

/* ── 11. CARDS DE SEGUROS ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px; margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-100);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-300);
  box-shadow: var(--shadow-sm);
}

.card-img          { height: 196px; overflow: hidden; flex-shrink: 0; }
.card-img img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body   { padding: 22px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card-title  { font-size: 0.97rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; letter-spacing: -0.01em; }
.card-desc   { font-size: 0.84rem; color: #6b7a94; line-height: 1.65; margin-bottom: 18px; flex: 1; }
.card-link   {
  color: var(--c-500); font-size: 0.82rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap var(--t-fast), color var(--t-fast);
  letter-spacing: 0.01em;
}
.card:hover .card-link { gap: 9px; color: var(--c-400); }

/* ── 12. PARCEIRAS ──────────────────────────────────────────── */
.partners { background: #fff; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--c-50);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 48px;
  gap: 0;
}
.partner-logo {
  background: #fff;
  padding: 22px 16px;
  display: flex; align-items: center; justify-content: center;
  height: 92px;
  border-right: 1px solid var(--c-50);
  border-bottom: 1px solid var(--c-50);
  transition: background var(--t-base);
}
.partner-logo:hover { background: var(--c-25); }
.partner-logo img {
  max-height: 40px; max-width: 100%; object-fit: contain;
  filter: grayscale(15%);
  transition: filter var(--t-base);
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ── 13. HOME CTA ───────────────────────────────────────────── */
.home-cta {
  background: var(--c-900);
  text-align: center; padding: 104px 28px;
  position: relative; overflow: hidden;
}
.home-cta::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(47,98,154,0.22) 0%, transparent 70%);
}
.home-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: #fff;
  margin-bottom: 16px; letter-spacing: -0.03em; position: relative;
}
.home-cta p  {
  color: var(--c-100); font-size: 1rem; max-width: 500px;
  margin: 0 auto 36px; line-height: 1.74; position: relative;
}

/* ── 14. PÁGINAS DE PRODUTO — header e capa ─────────────────── */
.page-header {
  background: var(--c-900);
  padding: 44px 28px 52px; margin-top: var(--header-h);
}
.page-header-inner { max-width: var(--container); margin: 0 auto; }
.breadcrumb       { color: var(--c-300); font-size: 0.77rem; margin-bottom: 18px; }
.breadcrumb a     { color: var(--c-300); transition: color var(--t-fast); }
.breadcrumb a:hover { color: #fff; }
.page-header h1   {
  font-size: clamp(1.65rem, 3.5vw, 2.6rem); font-weight: 700; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.03em; line-height: 1.12;
}
.page-header p    { color: var(--c-100); font-size: 1rem; max-width: 600px; line-height: 1.65; }

.cover-img { width: 100%; height: 320px; object-fit: cover; display: block; }

/* ── 15. PÁGINAS DE PRODUTO — conteúdo ──────────────────────── */
.insurance-body   { max-width: var(--container); margin: 0 auto; padding: 60px 28px; }
.insurance-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.insurance-main h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--c-800);
  margin: 36px 0 14px; letter-spacing: -0.015em;
}
.insurance-main h2:first-child { margin-top: 0; }
.insurance-main p  { color: #444; line-height: 1.82; font-size: 0.95rem; }
.insurance-main ul { padding-left: 18px; color: #444; font-size: 0.94rem; line-height: 1.9; }

.coverage-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px;
}
.coverage-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--c-25); border-radius: var(--r-sm); padding: 12px 14px;
  border: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.coverage-item:hover { background: var(--c-50); border-color: var(--c-100); }
.coverage-item .check { color: var(--c-400); font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }
.coverage-item span   { font-size: 0.84rem; color: var(--c-800); font-weight: 600; line-height: 1.42; }

.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.55; }
.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: 6px; }
.faq-item { border: 1px solid var(--c-100); border-radius: var(--r-md); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 18px 20px;
  background: #fff; border: none;
  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 var(--t-fast);
  line-height: 1.42;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:hover { background: var(--c-25); }
.faq-arrow { flex-shrink: 0; transition: transform 0.28s ease; color: var(--c-400); font-size: 1rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 0.88rem; color: #555; line-height: 1.78; }
.faq-item.open .faq-answer { display: block; }

/* Aprenda mais */
.learn-more {
  background: var(--c-25); border-radius: var(--r-md); padding: 28px 24px; margin: 32px 0;
  border-left: 3px solid var(--c-400);
}
.learn-more h3 { font-size: 0.95rem; 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.87rem; 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: var(--r-xl); padding: 28px;
  color: #fff; position: sticky; top: calc(var(--header-h) + 20px);
}
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.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: 1px solid rgba(255,255,255,0.20);
  padding: 12px; border-radius: var(--r-pill);
  font-size: 0.87rem; font-weight: 600;
  margin-bottom: 20px;
  transition: border-color var(--t-base), background var(--t-base);
}
.sidebar-btn-outline:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.04); }
.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: var(--c-900);
  padding: 84px 28px; text-align: center;
}
.insurance-cta h2 { font-size: 1.65rem; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -0.025em; }
.insurance-cta p  { color: var(--c-100); font-size: 0.97rem; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.72; }

/* ── 16. BLOG ────────────────────────────────────────────────── */
.blog-header { background: var(--c-900); padding: 84px 28px 52px; margin-top: var(--header-h); }
.blog-header h1 { font-size: 2.3rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.035em; }
.blog-header p  { color: var(--c-100); font-size: 1rem; max-width: 540px; }
.blog-body      { max-width: var(--container); margin: 0 auto; padding: 56px 28px; }

.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--c-100); background: #fff;
  color: var(--c-600); font-size: 0.82rem; font-weight: 700;
  cursor: pointer; transition: all var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.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: 20px; }
.blog-card      {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--c-100);
  transition: transform var(--t-base), border-color var(--t-base);
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--c-300); }
.blog-card-img-placeholder { height: 186px; background: var(--c-50); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px 22px; }
.blog-card-tag  {
  display: inline-block; background: var(--c-50); color: var(--c-600);
  padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 0.71rem; font-weight: 700; margin-bottom: 12px;
  letter-spacing: 0.3px; border: 1px solid var(--c-100);
}
.blog-card-body h3  { font-size: 0.97rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; letter-spacing: -0.01em; }
.blog-card-body p   { font-size: 0.84rem; color: #6b7a94; line-height: 1.65; margin-bottom: 16px; }
.blog-card-footer   { display: flex; justify-content: space-between; align-items: center; }
.blog-card-date     { font-size: 0.75rem; color: #9aa3b2; }
.blog-card-link     { font-size: 0.82rem; font-weight: 700; color: var(--c-500); }

/* ── 17. COTAÇÃO ────────────────────────────────────────────── */
.cotacao-header   { background: var(--c-900); padding: 84px 28px 52px; margin-top: var(--header-h); }
.cotacao-header h1 { font-size: 2.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.035em; }
.cotacao-header p  { color: var(--c-100); font-size: 1rem; max-width: 540px; }

.cotacao-body   { max-width: 1100px; margin: 0 auto; padding: 56px 28px; }
.cotacao-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }

.cotacao-form-card { background: #fff; border-radius: var(--r-xl); padding: 36px; border: 1px solid var(--c-100); }
.cotacao-form-card h2 { font-size: 1.2rem; font-weight: 700; color: var(--c-800); margin-bottom: 28px; letter-spacing: -0.015em; }

.form-group        { margin-bottom: 20px; }
.form-group label  { display: block; font-size: 0.82rem; font-weight: 700; color: var(--c-700); margin-bottom: 7px; letter-spacing: 0.01em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--c-100); border-radius: var(--r-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: #333;
  transition: border-color var(--t-base); 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 {
  width: 100%; padding: 15px 20px;
  background: var(--green); color: #fff;
  border: none; border-radius: var(--r-pill);
  font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--t-base);
  -webkit-tap-highlight-color: transparent;
}
.btn-submit svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-submit:hover { background: var(--green-dark); }

.cotacao-info-card { background: var(--c-900); border-radius: var(--r-xl); padding: 32px; color: #fff; position: sticky; top: calc(var(--header-h) + 20px); }
.cotacao-info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; }
.info-point  { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.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.87rem; color: var(--c-100); line-height: 1.55; font-weight: 600; }

/* ── 18. CONTATO ────────────────────────────────────────────── */
.contato-header   { background: var(--c-900); padding: 84px 28px 52px; margin-top: var(--header-h); }
.contato-header h1 { font-size: 2.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.035em; }
.contato-header p  { color: var(--c-100); font-size: 1rem; max-width: 540px; }

.contato-body  { max-width: 1000px; margin: 0 auto; padding: 64px 28px; }
.contato-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; margin-bottom: 56px; }

.contato-card {
  background: #fff; border-radius: var(--r-xl); padding: 32px;
  border: 1px solid var(--c-100); text-align: center;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.contato-card:hover { transform: translateY(-3px); border-color: var(--c-300); box-shadow: var(--shadow-sm); }
.contato-card-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: var(--c-50); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.4rem; border: 1px solid var(--c-100); }
.contato-card h3   { font-size: 0.97rem; font-weight: 700; color: var(--c-800); margin-bottom: 8px; }
.contato-card .desc  { font-size: 0.84rem; color: #6b7a94; line-height: 1.55; 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.72; max-width: 540px; margin: 0 auto; }

/* ── 19. ASSISTÊNCIA 24h ────────────────────────────────────── */
.assistencia-header   { background: var(--c-900); padding: 84px 28px 52px; margin-top: var(--header-h); }
.assistencia-header h1 { font-size: 2.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: -0.035em; }
.assistencia-header p  { color: var(--c-100); font-size: 1rem; max-width: 600px; line-height: 1.65; }

.assistencia-body { max-width: 1100px; margin: 0 auto; padding: 56px 28px; }
.assistencia-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }

.assistencia-card {
  background: #fff; border-radius: var(--r-xl); padding: 28px;
  border: 1px solid var(--c-100);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.assistencia-card:hover { transform: translateY(-3px); border-color: var(--c-300); box-shadow: var(--shadow-sm); }
.assistencia-card .seg-logo { height: 44px; margin-bottom: 16px; object-fit: contain; }
.assistencia-card h3   { font-size: 0.93rem; font-weight: 700; color: var(--c-800); margin-bottom: 14px; }
.assistencia-btns { display: flex; flex-direction: column; gap: 8px; }
.note-text        { font-size: 0.77rem; color: #9aa3b2; padding: 6px 12px; }

/* ── 20. EDUCATIVO GRID ─────────────────────────────────────── */
.educativo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px; margin-top: 12px;
}
.educativo-grid a {
  display: block; background: var(--c-25); border-radius: var(--r-sm);
  padding: 13px 15px; color: var(--c-800);
  font-size: 0.87rem; font-weight: 600;
  border: 1px solid var(--c-100);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.educativo-grid a:hover { background: var(--c-50); color: var(--c-500); border-color: var(--c-200); }

/* ── 21. CARDS DE APÓLICE ───────────────────────────────────── */
.apolice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 12px; }
.apolice-card {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 1px solid var(--c-100); border-radius: var(--r-lg);
  padding: 20px 18px; text-align: left; cursor: pointer;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  font-family: 'Poppins', sans-serif;
}
.apolice-card:hover { border-color: var(--c-400); transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.apolice-card-title { font-size: 1.1rem; font-weight: 700; color: var(--c-800); letter-spacing: -0.01em; }
.apolice-card-sub   { font-size: 0.79rem; color: #6b7a94; 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.71rem; font-weight: 600; border-radius: var(--r-pill); padding: 3px 10px; margin-top: 4px; }
.apolice-card-arrow { font-size: 0.77rem; color: var(--c-400); font-weight: 600; margin-top: 6px; }

/* ── 22. MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,20,35,0.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--r-xl); max-width: 580px; width: 100%;
  max-height: 90vh; overflow-y: auto; padding: 36px 32px 32px;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.4rem; line-height: 1;
  color: var(--c-400); cursor: pointer; padding: 4px 8px; border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.modal-close:hover { color: var(--c-800); background: var(--c-50); }
.modal-title    { font-size: 1.45rem; font-weight: 700; color: var(--c-800); margin: 0 0 6px; letter-spacing: -0.025em; }
.modal-subtitle { font-size: 0.87rem; color: #555; margin: 0 0 12px; line-height: 1.52; }
.modal-badge    { display: inline-block; background: var(--c-50); border: 1px solid var(--c-100); color: var(--c-600); font-size: 0.71rem; font-weight: 600; border-radius: var(--r-pill); padding: 3px 10px; margin-bottom: 20px; }
.modal-section  { margin-top: 20px; }
.modal-section h4 { font-size: 0.87rem; 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.72; margin: 0; }

/* ── 23. SINISTROS ──────────────────────────────────────────── */
.guide-title  { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 700; color: var(--c-800); margin: 0 0 10px; letter-spacing: -0.025em; }
.guide-intro  { color: #555; font-size: 0.94rem; line-height: 1.78; margin: 0 0 28px; max-width: 600px; }
.insurance-main h3 { font-size: 0.97rem; font-weight: 700; color: var(--c-700); margin: 24px 0 8px; }

.sinistro-aviso {
  background: var(--c-25); border: 1px solid var(--c-200);
  border-left: 3px solid var(--c-500); border-radius: var(--r-sm);
  padding: 20px 20px 16px; margin-bottom: 28px;
}
.sinistro-aviso p         { font-size: 0.9rem; color: #444; line-height: 1.72; margin: 0 0 14px; }
.sinistro-aviso-btn       { display: inline-block; background: var(--c-500); color: #fff; padding: 10px 20px; border-radius: var(--r-pill); font-size: 0.87rem; font-weight: 600; transition: background var(--t-base); }
.sinistro-aviso-btn:hover { background: var(--c-400); }
.sinistro-atencao         { background: #fffbea; border: 1px solid #e8d255; border-radius: var(--r-sm); padding: 12px 16px; margin-top: 20px; font-size: 0.84rem; color: #6b5000; line-height: 1.6; }

.prazo-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 12px; }
.prazo-card  { background: #fff; border: 1px solid var(--c-100); border-radius: var(--r-sm); padding: 16px; }
.prazo-card-label { font-size: 0.69rem; font-weight: 700; color: var(--c-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.prazo-card-value { font-size: 0.87rem; font-weight: 600; color: var(--c-800); line-height: 1.5; }

/* ── 24. PÁGINAS ESTÁTICAS ──────────────────────────────────── */
.static-header   { background: var(--c-900); padding: 84px 28px 52px; margin-top: var(--header-h); }
.static-header h1 { font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: -0.030em; }
.static-body      { max-width: 800px; margin: 0 auto; padding: 56px 28px; }
.static-section   { margin-bottom: 40px; }
.static-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--c-800); margin-bottom: 12px; }
.static-section p  { font-size: 0.93rem; color: #555; line-height: 1.78; }

/* ── 25. FOOTER ─────────────────────────────────────────────── */
footer        { background: var(--c-900); color: #fff; padding: 72px 28px 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid  { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 56px; }
.footer-col h4 {
  font-size: 0.70rem; font-weight: 700; color: var(--c-300);
  text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 18px;
}
.footer-col p  { font-size: 0.83rem; color: var(--c-100); line-height: 1.78; margin-bottom: 18px; }
.footer-logo   { height: 34px; width: auto; margin-bottom: 18px; }
.footer-contact a {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-200); font-size: 0.82rem; font-weight: 500;
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: #fff; }
.footer-links  { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links li a   { color: var(--c-100); font-size: 0.82rem; transition: color var(--t-fast); }
.footer-links li a:hover { color: #fff; }
.footer-links .sep   { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 4px 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p             { font-size: 0.77rem; color: var(--c-200); }
.footer-bottom-links         { display: flex; gap: 24px; }
.footer-bottom-links a       { font-size: 0.77rem; color: var(--c-200); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVIDADE — Mobile-first
   ══════════════════════════════════════════════════════════════ */

/* ── DESKTOP GRANDE (≤ 1280px) ──────────────────────────────── */
@media (max-width: 1280px) {
  .partners-grid { grid-template-columns: repeat(7, 1fr); }
}

/* ── TABLET LARGO (≤ 1024px) ────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .partners-grid { grid-template-columns: repeat(5, 1fr); }
  .footer-grid   { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ── TABLET (≤ 900px) — hamburger ativa ─────────────────────── */
@media (max-width: 900px) {
  nav        { display: none; }
  .hamburger { display: flex; }
  .nav-cta   { display: none; }

  .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; gap: 44px; }
  .about-features   { grid-template-columns: 1fr 1fr; }
  .about-img-wrap   {
    flex-direction: row; flex-wrap: wrap;
    padding: 32px 28px; gap: 0;
  }
  .about-img-wrap .stat-big {
    padding: 0 24px; border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex: 1; text-align: center; min-width: 100px;
  }
  .about-img-wrap .stat-big:first-child { padding-left: 0; }
  .about-img-wrap .stat-big:last-child  { border-right: none; padding-right: 0; }

  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ── TABLET ESTREITO (≤ 768px) ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 68px; }

  .section       { padding: var(--section-py) 20px; }
  .header-inner  { padding: 0 20px; }
  .cards-grid    { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .blog-articles { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .cover-img     { height: 260px; }
  .insurance-body { padding: 48px 20px; }
  .blog-body, .cotacao-body, .contato-body, .assistencia-body { padding: 48px 20px; }
  .about-features { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE (≤ 640px) ──────────────────────────────────────── */
@media (max-width: 640px) {
  :root {
    --header-h:   62px;
    --section-py: 56px;
  }

  .header-inner { padding: 0 16px; }
  .logo img { max-height: 40px; }

  /* Hero */
  .hero {
    padding: calc(var(--header-h) + 44px) 20px 60px;
    min-height: 100svh;
    min-height: 100vh;
    align-items: flex-start;
  }
  .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.5rem); max-width: 100%; }
  .hero p  { font-size: 0.96rem; max-width: 100%; }
  .hero-btns {
    flex-direction: column; gap: 10px; margin-bottom: 48px;
  }
  .hero-btns .btn-wa,
  .hero-btns .btn-outline {
    width: 100%; justify-content: center;
    padding: 16px 20px; font-size: 0.9rem;
  }
  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.10);
  }
  .hero-stat {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.10);
    padding: 0 6px;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat strong { font-size: 1.45rem; }
  .hero-stat span   { font-size: 0.67rem; }

  /* Sobre */
  .about-features { grid-template-columns: 1fr; gap: 10px; }
  .about-img-wrap {
    padding: 24px 20px;
    flex-direction: row; justify-content: space-around;
    flex-wrap: wrap; gap: 8px;
  }
  .about-img-wrap .stat-big { border-right: none; text-align: center; padding: 10px; min-width: auto; flex: auto; }
  .about-img-wrap .stat-big strong { font-size: 2.4rem; }

  /* Cards — 1 coluna */
  .cards-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .card-img   { height: 200px; }
  .card-body  { padding: 18px 16px 16px; }

  /* Partners — 3 colunas */
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo  { height: 72px; padding: 14px 10px; }
  .partner-logo img { max-height: 34px; }

  /* Home CTA */
  .home-cta { padding: 72px 20px; }
  .home-cta h2 { font-size: 1.55rem; }

  /* Páginas de produto */
  .cover-img     { height: 220px; }
  .page-header   { padding: 28px 16px 36px; }
  .page-header h1 { font-size: 1.65rem; }
  .insurance-body { padding: 36px 16px; }

  /* Coverage grid */
  .coverage-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-question { padding: 16px 16px; font-size: 0.875rem; }

  /* Blog */
  .blog-header { padding: 64px 20px 44px; }
  .blog-body     { padding: 40px 16px; }
  .blog-articles { grid-template-columns: 1fr; }
  .blog-filters  { gap: 6px; }
  .filter-btn    { padding: 7px 14px; font-size: 0.79rem; }

  /* Cotação */
  .cotacao-header { padding: 64px 20px 44px; }
  .cotacao-body      { padding: 36px 16px; }
  .cotacao-form-card { padding: 24px 18px; border-radius: var(--r-lg); }
  .cotacao-info-card { padding: 24px 18px; border-radius: var(--r-lg); }

  /* Contato */
  .contato-header { padding: 64px 20px 44px; }
  .contato-body  { padding: 48px 16px; }
  .contato-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }

  /* Assistência */
  .assistencia-header { padding: 64px 20px 44px; }
  .assistencia-body { padding: 40px 16px; }
  .assistencia-grid { grid-template-columns: 1fr; }

  /* Apólice cards */
  .apolice-cards { grid-template-columns: 1fr; }

  /* Modal */
  .modal-box { padding: 28px 20px 24px; }

  /* Static */
  .static-header { padding: 64px 20px 44px; }
  .static-body   { padding: 40px 16px; }

  /* Blog header */
  .blog-header h1 { font-size: 1.9rem; }
  .cotacao-header h1,
  .contato-header h1,
  .assistencia-header h1 { font-size: 1.9rem; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 20px; }
  footer         { padding: 52px 16px 0; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 18px 0; gap: 8px; }
  .footer-bottom-links { justify-content: center; }

  /* Botão lateral */
  #lateral-btn { display: none !important; }
}

/* ── MOBILE PEQUENO (≤ 480px) ──────────────────────────────── */
@media (max-width: 480px) {
  .cards-grid { gap: 10px; }
  .card-img   { height: 185px; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-logo  { height: 64px; padding: 12px 8px; }
  .partner-logo img { max-height: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col:first-child { margin-bottom: 4px; }
  .blog-articles { grid-template-columns: 1fr; }
  .contato-cards { grid-template-columns: 1fr; }
  .apolice-cards { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 1.6rem; }
}

/* ── MOBILE MUITO PEQUENO (≤ 380px) ────────────────────────── */
@media (max-width: 380px) {
  :root { --header-h: 58px; }
  .hero h1       { font-size: 1.68rem; }
  .section-title { font-size: 1.5rem; }
  .hero-stat strong { font-size: 1.25rem; }
  .btn-wa        { padding: 12px 18px; font-size: 0.85rem; }
  .filter-btn    { padding: 6px 11px; font-size: 0.75rem; }
  .header-inner  { padding: 0 14px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .mm-header     { padding: 0 16px; }
  .mm-body .mobile-nav-link,
  .mm-body .mobile-sub-link { padding-left: 18px; }
  .mm-body .mobile-sub-link { padding-left: 28px; }
}
