/* ============================================
   BELOMINAS SEGUROS — DESIGN SYSTEM
   ============================================ */

:root {
  /* brand */
  --wine-deep: #2A0E11;
  --wine: #4A1519;
  --wine-mid: #6B1F25;
  --red: #C8302E;
  --red-bright: #E84840;
  --red-soft: rgba(200, 48, 46, 0.08);
  --red-soft-2: rgba(200, 48, 46, 0.14);

  /* cream */
  --cream: #F5F0E2;
  --cream-soft: #FAF7EE;
  --cream-dark: #E8DFC8;

  /* neutrals */
  --white: #FFFFFF;
  --gray-50: #F8F8F7;
  --gray-100: #F0EFEC;
  --gray-200: #E2E0DA;
  --gray-300: #C9C5BD;
  --gray-400: #9A938A;
  --gray-500: #6B6359;
  --gray-600: #4A433C;
  --gray-700: #2E2924;
  --ink: #1A1612;

  /* status */
  --green: #1F7A4A;
  --blue: #1E5BA8;
  --gold: #C99A2E;

  /* type */
  --display: 'Manrope', system-ui, -apple-system, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* layout */
  --container: 1280px;
  --container-narrow: 980px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* effects */
  --shadow-sm: 0 1px 2px rgba(26, 22, 18, 0.06), 0 1px 3px rgba(26, 22, 18, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 22, 18, 0.08), 0 2px 4px rgba(26, 22, 18, 0.04);
  --shadow-lg: 0 12px 36px rgba(26, 22, 18, 0.12), 0 4px 12px rgba(26, 22, 18, 0.06);
  --shadow-xl: 0 24px 60px rgba(42, 14, 17, 0.18), 0 8px 24px rgba(42, 14, 17, 0.08);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ============ TYPE ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.08;
  color: var(--ink);
}

.h-display { font-family: var(--display); font-weight: 800; letter-spacing: -0.032em; line-height: 1.02; }
.h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.035em; }
.h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); line-height: 1.05; letter-spacing: -0.028em; }
.h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); line-height: 1.18; letter-spacing: -0.022em; }
.h4 { font-size: 1.2rem; line-height: 1.25; letter-spacing: -0.018em; }
.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.6;
  color: var(--gray-600);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: '';
  width: 13px; height: 11px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'><path d='M7 1L13 11H1Z' fill='currentColor'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'><path d='M7 1L13 11H1Z' fill='currentColor'/></svg>") no-repeat center / contain;
}
.eyebrow-light { color: var(--red-bright); }
.eyebrow-cream { color: var(--cream-dark); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1), background 0.18s, box-shadow 0.22s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(0.98) !important; }

.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 1px 2px rgba(200, 48, 46, 0.18); }
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200, 48, 46, 0.32); }
.btn-dark { background: var(--wine-deep); color: var(--cream); }
.btn-dark:hover { background: var(--wine); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(42, 14, 17, 0.32); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1.5px solid rgba(245, 240, 226, 0.28); }
.btn-ghost-light:hover { background: rgba(245, 240, 226, 0.1); border-color: rgba(245, 240, 226, 0.5); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--gray-200); }
.btn-ghost-dark:hover { background: var(--gray-50); border-color: var(--wine-deep); color: var(--wine-deep); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: white; box-shadow: 0 1px 2px rgba(37, 211, 102, 0.18); }
.btn-wa:hover { background: #1FB855; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.88rem; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: var(--display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: -0.022em;
  color: var(--wine-deep);
}
.brand-mark { width: 36px; height: 32px; flex-shrink: 0; }
.brand small { font-weight: 600; opacity: 0.7; margin-left: 0.1rem; font-size: 0.95rem; }

.nav-links {
  display: flex; gap: 2rem; align-items: center;
  font-size: 0.93rem; font-weight: 500; color: var(--gray-700);
}
.nav-links > a, .nav-links .dropdown > a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.18s;
}
.nav-links > a::after, .nav-links .dropdown > a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links > a:hover, .nav-links .dropdown > a:hover { color: var(--red); }
.nav-links > a:hover::after, .nav-links .dropdown > a:hover::after,
.nav-links > a.active::after, .nav-links .dropdown > a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); font-weight: 600; }
.nav-links .has-sub { cursor: pointer; }
.nav-links .has-sub::before {
  content: ''; display: inline-block; width: 7px; height: 7px;
  margin-right: 0.45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.55;
  vertical-align: middle;
}
/* dropdown — mega-menu Pattini-style */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
  width: min(720px, calc(100vw - 40px));
  padding: 1.5rem;
  z-index: 50;
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0s linear 0.18s;
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s, transform 0.18s, visibility 0s;
}
.dropdown-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}
.dropdown-menu-head h4 {
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-500); font-weight: 600;
}
.dropdown-menu-head a {
  font-size: 0.85rem; font-weight: 600;
  color: var(--red); display: inline-flex; gap: 0.3rem; align-items: center;
}
.dropdown-menu-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.dropdown-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink);
  transition: background 0.15s;
  border: 1px solid transparent;
}
.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--ink);
  border-color: var(--gray-100);
}
.dropdown-item-icon {
  width: 36px; height: 36px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
  flex-shrink: 0;
}
.dropdown-item:hover .dropdown-item-icon {
  background: var(--red-soft);
  color: var(--red);
}
.dropdown-item-icon svg { width: 18px; height: 18px; }
.dropdown-item-body strong {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: 0.95rem; color: var(--ink);
  line-height: 1.2; margin-bottom: 0.15rem;
}
.dropdown-item-body small {
  display: block; font-size: 0.78rem;
  color: var(--gray-500); line-height: 1.35;
}
.dropdown-menu-foot {
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
  display: flex; gap: 0.7rem; align-items: center; justify-content: space-between;
  background: var(--cream-soft);
  margin: 1.2rem -1.5rem -1.5rem;
  padding: 1.2rem 1.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.dropdown-menu-foot p {
  font-size: 0.88rem; color: var(--gray-600); margin: 0;
  line-height: 1.4; flex: 1;
}
.dropdown-menu-foot strong { color: var(--wine-deep); font-weight: 700; }

.nav-cta { display: flex; gap: 0.65rem; align-items: center; }
.nav-phone {
  font-family: var(--display); font-weight: 700; color: var(--wine-deep);
  font-size: 0.98rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: 0.2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: 0.2s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
}

.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--white); padding: 2rem var(--gutter); z-index: 99;
  flex-direction: column; gap: 0.5rem; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 1rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: 1.05rem; font-weight: 500; color: var(--ink);
}
.mobile-menu .btn { margin-top: 1.5rem; }

/* ============ INSURER MARQUEE ============ */
.insurer-marquee-section {
  background: var(--white);
  padding: 3rem 0 3.5rem;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.insurer-marquee-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 2rem;
}
.insurer-marquee-label strong {
  color: var(--wine-deep);
  font-weight: 700;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  height: 64px;
  min-width: 200px;
  opacity: 0.7;
  filter: saturate(0.6);
  transition: opacity 0.25s, filter 0.25s, transform 0.25s;
}
.marquee-item:hover {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.05);
}
.marquee-item svg {
  width: auto;
  height: 38px;
  max-width: 240px;
  display: block;
}
.marquee-item img {
  height: 40px;
  max-width: 160px;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 640px) {
  .marquee-item { padding: 0 1.5rem; min-width: 160px; height: 56px; }
  .marquee-item svg { height: 30px; }
}
/* ============ INSURER STRIP ============ */
.insurer-strip {
  background: var(--gray-50);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.insurer-strip-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.insurer-strip-label strong {
  color: var(--wine-deep);
  font-weight: 800;
}
.insurer-strip-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}
.insurer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 100%;
  max-width: 120px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.9rem;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.insurer-item:hover { color: var(--wine-deep); }
.insurer-item img {
  display: block;
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.22s;
}
.insurer-item:hover img { transform: scale(1.05); }
@media (max-width: 1024px) {
  .insurer-strip-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 540px) {
  .insurer-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .insurer-item { height: 36px; max-width: 100px; }
  .insurer-item img { max-height: 36px; }
}

.hero-light {
  background: var(--wine-deep);
  color: var(--cream);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.hero-light .hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  z-index: 0;
}
.hero-light .hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(112deg, var(--wine-deep) 0%, rgba(42, 14, 17, 0.92) 50%, rgba(42, 14, 17, 0.55) 100%);
}
.hero-light::before { content: none; }
.hero-light .container { position: relative; z-index: 1; }
.hero-light-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-mega-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(245, 240, 226, 0.08);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 226, 0.2);
}
.hero-mega-eyebrow::before {
  content: '';
  width: 13px; height: 11px;
  background: var(--red-bright);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'><path d='M7 1L13 11H1Z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'><path d='M7 1L13 11H1Z'/></svg>") no-repeat center / contain;
}
.hero-mega-eyebrow strong { color: var(--red-bright); font-weight: 800; }
.h-mega {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.9rem, 7.8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin-top: 1.5rem;
}
.h-mega em { color: var(--red-bright); font-style: normal; }
.hero-light .lead {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--cream-dark);
  max-width: 52ch;
  line-height: 1.55;
}
.hero-light .lead strong { color: var(--cream); font-weight: 700; }


/* quote pill — Pattini-style selector + button */
.quote-pill {
  display: flex; align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px;
  margin-top: 2.2rem;
  max-width: 560px;
  box-shadow: 0 1px 2px rgba(26, 22, 18, 0.06), 0 4px 14px -6px rgba(26, 22, 18, 0.06);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  text-align: left;
}
.quote-pill:hover { border-color: var(--gray-300); box-shadow: 0 2px 4px rgba(26, 22, 18, 0.08), 0 10px 26px -8px rgba(26, 22, 18, 0.1); }
.quote-pill:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft), 0 10px 26px -8px rgba(200, 48, 46, 0.18);
}
.text-center > .quote-pill,
.container-narrow > .quote-pill,
.container-narrow .reveal > .quote-pill { margin-left: auto; margin-right: auto; }
.quote-pill:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft), var(--shadow-md);
}
.quote-pill-select {
  flex: 1; position: relative;
}
.quote-pill select {
  width: 100%;
  border: none; background: transparent;
  padding: 0.95rem 2.5rem 0.95rem 1.3rem;
  font-family: var(--body); font-size: 1rem; font-weight: 500;
  color: var(--ink);
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}
.quote-pill-select::after {
  content: ''; position: absolute;
  right: 1.2rem; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gray-500);
  border-bottom: 2px solid var(--gray-500);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.quote-pill button {
  background: var(--wine-deep); color: var(--cream);
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  font-family: var(--body); font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 0.22s;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(42, 14, 17, 0.18);
}
.quote-pill button:hover { background: var(--wine); transform: translateX(3px); box-shadow: 0 8px 18px rgba(42, 14, 17, 0.32); }
.quote-pill button svg { width: 16px; height: 16px; transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1); }
.quote-pill button:hover svg { transform: translateX(2px); }
.hero-light-mini {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(245, 240, 226, 0.18);
  flex-wrap: wrap;
}
.hero-light-mini-item .n {
  font-family: var(--display); font-weight: 800;
  font-size: 1.7rem; line-height: 1;
  color: var(--cream); letter-spacing: -0.03em;
}
.hero-light-mini-item .n em { color: var(--red-bright); font-style: normal; }
.hero-light-mini-item .n-prefix { color: var(--red-bright); }
.hero-light-mini-item .l {
  font-family: var(--mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cream-dark); margin-top: 0.35rem; font-weight: 600;
  opacity: 0.85;
}

/* "Mais de" prefix above big numbers */
.n-prefix {
  display: block;
  font-family: var(--mono); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.stats-strip-item .n-prefix { color: var(--red-bright); margin-bottom: 0.55rem; }
.about-stat .n-prefix { color: var(--red); }
.section-dark .about-stat .n-prefix { color: var(--red-bright); }
.hero-light-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background-size: cover; background-position: center;
  box-shadow: 0 30px 70px -20px rgba(42, 14, 17, 0.32), 0 12px 30px -10px rgba(42, 14, 17, 0.18);
  position: relative; overflow: hidden;
}
.hero-light-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(165deg, transparent 45%, rgba(42, 14, 17, 0.55) 100%);
}
.hero-light-img-badge {
  position: absolute; bottom: 1.7rem; left: 1.7rem; right: 1.7rem;
  z-index: 1; color: var(--cream);
}
.hero-light-img-badge .y {
  font-family: var(--display); font-weight: 800;
  font-size: 2.4rem; letter-spacing: -0.035em; line-height: 1;
}
.hero-light-img-badge .y em { color: var(--red-bright); font-style: normal; }
.hero-light-img-badge .t {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-top: 0.5rem; opacity: 0.92;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero-light-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-light-img { aspect-ratio: 4/3; max-width: 600px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .quote-pill { flex-direction: column; gap: 6px; padding: 8px; border-radius: var(--radius-lg); }
  .quote-pill-select, .quote-pill button { width: 100%; }
  .quote-pill button { justify-content: center; }
  .hero-light-mini { gap: 1.5rem; }
}
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--wine-deep);
  color: var(--cream);
  padding: 5rem 0 4rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--wine-deep) 0%, rgba(42, 14, 17, 0.85) 50%, rgba(42, 14, 17, 0.55) 100%);
}
.hero-inner { position: relative; z-index: 1; width: 100%; }
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center;
}
.hero h1 { color: var(--cream); margin-top: 1.5rem; max-width: 16ch; }
.hero h1 em { color: var(--red-bright); font-style: normal; }
.hero-sub { margin-top: 1.5rem; color: var(--cream-dark); max-width: 52ch; font-size: 1.1rem; line-height: 1.55; }
.hero-cta { margin-top: 2.2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 226, 0.14);
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
}
.hero-trust-label { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cream-dark); opacity: 0.75; }
.hero-trust-logos { display: flex; gap: 1.8rem; flex-wrap: wrap; font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--cream); opacity: 0.85; }

.hero-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.hero-card-eyebrow { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); font-weight: 600; }
.hero-card h3 { font-size: 1.4rem; margin-top: 0.8rem; line-height: 1.2; }
.hero-card p { margin-top: 0.6rem; color: var(--gray-600); font-size: 0.95rem; }
.hero-card-stats { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.hero-card-stat .n { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--wine-deep); letter-spacing: -0.03em; }
.hero-card-stat .l { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; font-weight: 500; }
.hero-card-btn { margin-top: 1.5rem; width: 100%; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: 0; padding: 4rem 0 3rem; }
}

/* ============ SECTIONS ============ */
section { scroll-margin-top: 90px; }
.section { padding: 6rem 0; }
.section-tight { padding: 4rem 0; }
.section-gray { background: var(--gray-50); }
.section-cream { background: var(--cream-soft); }
.section-dark { background: var(--wine-deep); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }

.section-head { max-width: 64ch; margin-bottom: 3.5rem; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 1.1rem; }
.section-head h2 em { color: var(--red); font-style: normal; }
.section-dark .section-head h2 em { color: var(--red-bright); }
.section-head p { margin-top: 1.2rem; }

/* road-marking divider — signature road theme */
.road-divider {
  height: 4px;
  background-image: linear-gradient(90deg, currentColor 50%, transparent 50%);
  background-size: 24px 4px;
  background-repeat: repeat-x;
  color: var(--gray-200);
  margin: 0;
  opacity: 0.8;
}
.section-dark .road-divider { color: rgba(245, 240, 226, 0.18); }

/* ============ STATS STRIP ============ */
.stats-strip { background: var(--wine-deep); color: var(--cream); padding: 3.5rem 0; position: relative; }
.stats-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-bright) 50%, var(--red) 100%);
  opacity: 0.7;
}
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-strip-item { padding: 0 1.8rem; border-right: 1px solid rgba(245, 240, 226, 0.14); }
.stats-strip-item:last-child { border-right: none; padding-right: 0; }
.stats-strip-item:first-child { padding-left: 0; }
.stats-strip-n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--cream);
}
.stats-strip-n em { color: var(--red-bright); font-style: normal; }
.stats-strip-l {
  font-family: var(--mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.7rem; color: var(--cream-dark); opacity: 0.85;
  font-weight: 600;
}
@media (max-width: 720px) {
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stats-strip-item { border-right: none; padding: 0; }
}

/* ============ SEGUROS GRID (HOME) ============ */
.seguros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.seguro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 22, 18, 0.04);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s;
  border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
}
.seguro-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -12px rgba(42, 14, 17, 0.18), 0 8px 16px -6px rgba(42, 14, 17, 0.08);
  border-color: var(--gray-200);
}
.seguro-card-img {
  display: block;
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  background-color: var(--wine);
  position: relative;
}
.seguro-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 14, 17, 0.45) 100%);
}
.seguro-card-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: var(--red); color: white;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.7rem; border-radius: 4px; font-weight: 600;
}
.seguro-card-tag-secondary { background: var(--wine); }
.seguro-card-body { padding: 1.65rem 1.55rem 1.55rem; flex: 1; display: flex; flex-direction: column; }
.seguro-card h3 { font-size: 1.28rem; letter-spacing: -0.022em; }
.seguro-card h3 a { color: inherit; transition: color 0.2s; }
.seguro-card:hover h3 a { color: var(--red); }
.seguro-card p { margin-top: 0.6rem; color: var(--gray-600); font-size: 0.94rem; line-height: 1.55; flex: 1; }
.seguro-card-cov { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.seguro-card-tag-small {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.06em;
  padding: 0.28rem 0.6rem; background: var(--red-soft); color: var(--red);
  border-radius: 4px; font-weight: 700;
}
.seguro-card-actions {
  margin-top: 1.35rem;
  display: flex; gap: 0.6rem; align-items: center; justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid var(--gray-100);
}
.seguro-card-link {
  color: var(--gray-600); font-weight: 600; font-size: 0.9rem;
  transition: color 0.2s;
  letter-spacing: -0.005em;
}
.seguro-card-link:hover { color: var(--wine-deep); }
.seguro-card-cotar {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--red);
  color: var(--white) !important;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 0.85rem;
  letter-spacing: -0.005em;
  transition: background 0.2s, transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(200, 48, 46, 0.18);
}
.seguro-card-cotar svg { width: 14px; height: 14px; transition: transform 0.22s cubic-bezier(0.34, 1.45, 0.64, 1); }
.seguro-card-cotar:hover { background: var(--red-bright); transform: translateX(3px); box-shadow: 0 6px 18px rgba(200, 48, 46, 0.32); }
.seguro-card-cotar:hover svg { transform: translateX(2px); }
@media (max-width: 980px) { .seguros-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .seguros-grid { grid-template-columns: 1fr; } }

/* ============ DIFERENCIAIS ============ */
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.diff-card {
  background: var(--white); padding: 2rem 1.8rem;
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  transition: border-color 0.22s, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.diff-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -14px rgba(200, 48, 46, 0.2);
}
.diff-icon {
  width: 52px; height: 52px;
  background: var(--red-soft); color: var(--red);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.22s, color 0.22s;
}
.diff-card:hover .diff-icon { background: var(--red); color: var(--white); }
.diff-icon svg { width: 26px; height: 26px; }
.diff-card h3 { font-size: 1.08rem; letter-spacing: -0.02em; }
.diff-card p { margin-top: 0.6rem; color: var(--gray-600); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 980px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============ PROCESS ============ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 32px; left: 0; right: 0;
  height: 2px; background: var(--gray-200); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  color: var(--red); margin-bottom: 1.3rem;
}
.section-gray .step-num, .section-cream .step-num { background: var(--white); }
.step h3 { font-size: 1.15rem; }
.step p { margin-top: 0.6rem; color: var(--gray-600); font-size: 0.92rem; line-height: 1.55; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

/* ============ FOR WHOM ============ */
.forwhom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.forwhom-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 22, 18, 0.04);
  border: 1px solid var(--gray-100);
  display: grid; grid-template-columns: 200px 1fr; min-height: 200px;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s;
}
.forwhom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -14px rgba(42, 14, 17, 0.14);
  border-color: var(--gray-200);
}
.forwhom-img {
  background-size: cover; background-position: center;
  background-color: var(--wine);
}
.forwhom-body { padding: 1.8rem; display: flex; flex-direction: column; justify-content: center; }
.forwhom-card h3 { font-size: 1.28rem; letter-spacing: -0.022em; }
.forwhom-card p { margin-top: 0.7rem; color: var(--gray-600); font-size: 0.93rem; line-height: 1.55; }
@media (max-width: 880px) { .forwhom-grid { grid-template-columns: 1fr; } .forwhom-card { grid-template-columns: 1fr; } .forwhom-img { aspect-ratio: 16/8; } }

/* ============ ABOUT BLOCK ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow-lg); }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2rem; }
.about-stat { padding: 1.2rem; background: var(--gray-50); border-radius: var(--radius); border-left: 3px solid var(--red); }
.section-dark .about-stat { background: rgba(245, 240, 226, 0.06); }
.about-stat .n { font-family: var(--display); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.03em; }
.about-stat .l { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-top: 0.3rem; font-weight: 600; }
.section-dark .about-stat .l { color: var(--cream-dark); opacity: 0.75; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } .about-img { max-width: 500px; aspect-ratio: 4/3; } }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 2px rgba(26, 22, 18, 0.04);
  display: flex; flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testimonial:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(42, 14, 17, 0.12); }
.testimonial-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.testimonial-text { color: var(--gray-700); font-size: 0.97rem; line-height: 1.65; flex: 1; }
.testimonial-author { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 0.85rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--wine); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 1rem; }
.testimonial-name { font-weight: 600; font-size: 0.93rem; letter-spacing: -0.01em; }
.testimonial-role { font-size: 0.83rem; color: var(--gray-500); }
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============ CTA BIG ============ */
.cta-big {
  background: var(--wine-deep); color: var(--cream);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-big-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.15; }
.cta-big-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, var(--wine-deep) 30%, rgba(42, 14, 17, 0.7) 100%); }
.cta-big-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.cta-big h2 { color: var(--cream); }
.cta-big h2 em { color: var(--red-bright); font-style: normal; }
.cta-big p { color: var(--cream-dark); margin-top: 1.2rem; font-size: 1.05rem; max-width: 50ch; }
.cta-big-actions { margin-top: 2rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cta-big-direct {
  background: rgba(245, 240, 226, 0.06); border: 1px solid rgba(245, 240, 226, 0.14);
  padding: 2rem; border-radius: var(--radius-lg);
}
.cta-big-direct h4 { color: var(--cream); margin-bottom: 1.2rem; font-size: 1.05rem; }
.cta-big-direct-row { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; align-items: flex-start; }
.cta-big-direct-row svg { width: 20px; height: 20px; color: var(--red-bright); flex-shrink: 0; margin-top: 2px; }
.cta-big-direct-row a, .cta-big-direct-row span { color: var(--cream); font-size: 0.93rem; line-height: 1.5; }
.cta-big-direct-row a:hover { color: var(--red-bright); }
@media (max-width: 880px) { .cta-big-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ============ FORM ============ */
.form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.field label {
  display: block; font-family: var(--display); font-weight: 600;
  font-size: 0.85rem; color: var(--ink); margin-bottom: 0.45rem;
}
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 0.96rem; font-family: var(--body);
  padding: 0.85rem 1rem;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); color: var(--ink);
  transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: var(--white);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 1.1rem; font-size: 1rem; margin-top: 0.5rem; }
.form-note { margin-top: 1rem; font-size: 0.82rem; color: var(--gray-500); text-align: center; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success-icon { width: 64px; height: 64px; background: var(--red-soft); color: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.form-success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--gray-600); }
.form.is-sent .form-content { display: none; }
.form.is-sent .form-success { display: block; }
@media (max-width: 720px) { .form { padding: 1.8rem; } .form-row { grid-template-columns: 1fr; } }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.3rem 0;
}
.faq-q {
  font-family: var(--display); font-weight: 700; font-size: 1.08rem;
  cursor: pointer; padding-right: 2rem; position: relative; line-height: 1.4;
  color: var(--ink);
}
.faq-q::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 14px; height: 14px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: translateY(-70%) rotate(45deg); transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  color: var(--gray-600); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 1rem; }

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--wine-deep); color: var(--cream);
  padding: 4rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.28; }
.page-header-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, var(--wine-deep) 0%, rgba(42, 14, 17, 0.85) 50%, rgba(42, 14, 17, 0.6) 100%); }
.page-header-inner { position: relative; z-index: 1; }
.breadcrumb { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.05em; color: var(--cream-dark); opacity: 0.7; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb-sep::before { content: '›'; margin: 0 0.2rem; }
.page-header h1 { color: var(--cream); margin-top: 1rem; max-width: 18ch; }
.page-header h1 em { color: var(--red-bright); font-style: normal; }
.page-header .lead { color: var(--cream-dark); margin-top: 1.2rem; max-width: 56ch; }

/* ============ COVERAGE LIST ============ */
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.coverage-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1.35rem 1.45rem;
  display: flex; gap: 0.95rem; align-items: flex-start;
  transition: border-color 0.22s, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.coverage-item:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(200, 48, 46, 0.18);
}
/* triangle bullet — signature element from the brand mark */
.coverage-check {
  width: 16px; height: 14px;
  flex-shrink: 0;
  margin-top: 6px;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14'><path d='M8 1L15 13H1Z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 14'><path d='M8 1L15 13H1Z'/></svg>") no-repeat center / contain;
  display: block;
  border-radius: 0;
}
.coverage-check svg { display: none; }
.coverage-item h4 { font-size: 0.98rem; letter-spacing: -0.015em; }
.coverage-item p { font-size: 0.88rem; color: var(--gray-600); margin-top: 0.3rem; line-height: 1.55; }
@media (max-width: 640px) { .coverage-grid { grid-template-columns: 1fr; } }

/* ============ TWO COL CONTENT ============ */
.twocol { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: start; }
.twocol-img { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.twocol h2 { margin-top: 1rem; }
.twocol h2 em { color: var(--red); font-style: normal; }
.twocol p { margin-top: 1.2rem; color: var(--gray-700); line-height: 1.7; }
@media (max-width: 880px) { .twocol { grid-template-columns: 1fr; gap: 3rem; } .twocol-img { position: relative; top: auto; aspect-ratio: 4/3; max-width: 500px; } }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: var(--gray-400); padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--cream); margin-bottom: 1rem; }
.footer-brand small { font-weight: 600; opacity: 0.7; margin-left: 0.1rem; font-size: 0.95rem; }
.footer-tag { color: var(--gray-400); font-size: 0.93rem; line-height: 1.55; max-width: 30ch; }
.footer-social { margin-top: 1.5rem; display: flex; gap: 0.7rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(245, 240, 226, 0.08); display: flex; align-items: center; justify-content: center; color: var(--cream-dark); transition: all 0.2s; }
.footer-social a:hover { background: var(--red); color: white; }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 { font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cream); margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a { font-size: 0.92rem; color: var(--gray-400); }
.footer ul li a:hover { color: var(--red-bright); }
.footer-contact-row { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; align-items: flex-start; font-size: 0.92rem; }
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; color: var(--red-bright); }
.footer-contact-row a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 226, 0.08);
  padding-top: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--gray-500);
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid #25D366; border-radius: 50%; opacity: 0.5;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float::after { animation: none; }
}

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.hidden { display: none !important; }
