/* ==========================================================
   AGE Fibra — Nubank-inspired styling
   Royalty Violet, pill forms, achromatic neutrals
   ========================================================== */

:root {
  /* Colors — AGE Fibra brand identity */
  --violet: #03257E;          /* Navy — primary CTA, brand */
  --violet-deep: #021b5e;     /* Navy darker hover */
  --violet-shadow: #010f3a;   /* Deepest navy */
  --violet-soft: #e9edf6;     /* Tinted navy bg */
  --violet-subtle: #6b7daf;   /* Mid navy */
  --yellow: #FFB600;          /* Pantone 7549 — accent */
  --yellow-soft: #fff5d6;
  --red: #F93822;             /* Pantone Bright Red — hot accent */
  --red-soft: #ffe7e2;
  --noir: #000000;
  --white: #ffffff;
  --ash: #f4f4f4;
  --ash-2: #ebebeb;
  --warm-gray: #BEC6C4;       /* Pantone 441 */
  --silver: #a2a2a2;
  --medium: #b3b3b3;
  --charcoal: #666666;
  --steel: #777777;
  --green: #16a34a;

  /* Type */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radii */
  --r-card: 12px;
  --r-image: 32px;
  --r-input: 24px;
  --r-pill: 999px;
  --r-default: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--noir);
  background: var(--white);
  font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
img { display: block; max-width: 100%; }

/* Layout */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: background-color .25s ease, color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(90deg, #F93822 0%, #FF7500 55%, #FFB600 100%);
  background-size: 180% 100%;
  background-position: 0% 50%;
  color: var(--white);
  transition: background-position .35s ease, transform .15s ease, box-shadow .25s ease;
  box-shadow: 0 6px 20px rgba(249,56,34,.25);
}
.btn-primary:hover { background-position: 100% 50%; box-shadow: 0 10px 28px rgba(255,117,0,.35); }
.btn-ghost { background: transparent; color: var(--noir); }
.btn-ghost:hover { background: var(--ash); }
.btn-secondary { background: rgba(65,65,64,.4); color: var(--white); padding: 0 32px; }
.btn-secondary:hover { background: rgba(65,65,64,.6); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn-lg { height: 56px; padding: 0 32px; font-size: 17px; }

/* Eyebrow */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--violet);
}
.eyebrow-light { color: rgba(255,255,255,.7); }

/* Typography helpers */
.h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.018em;
  font-weight: 500;
}
.lead { font-size: 18px; line-height: 1.5; color: var(--charcoal); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(3,37,126,.08);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.header.scrolled {
  border-color: rgba(3,37,126,.10);
  box-shadow: 0 10px 30px -20px rgba(3,37,126,.18);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo-mark {
  display: inline-flex; align-items: center;
  transition: transform .2s ease;
}
.logo-mark:hover { transform: scale(1.03); }
.logo-mark .square {
  background: #132e7c;
  border-radius: 12px;
  padding: 10px 16px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px;
  min-width: 52px;
  box-shadow: 0 6px 18px -8px rgba(19,46,124,.45);
}
.logo-mark .square img {
  height: 28px; width: auto; display: block;
}
.footer .logo-mark .square { background: #132e7c; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #03257E;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .2s, transform .2s;
}
.nav-link:hover {
  background: rgba(255,117,0,.06);
  color: #FF7500;
}
.nav-link:hover::after,
.nav-item.active .nav-link::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-item.active .nav-link { color: #FF7500; }
.nav-caret {
  font-size: 9px;
  opacity: .5;
  transition: transform .2s;
}
.nav-item:hover .nav-caret { transform: rotate(180deg); opacity: 1; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff;
  border: 1px solid rgba(3,37,126,.08);
  border-radius: 18px;
  box-shadow: 0 30px 60px -10px rgba(3,37,126,.22);
  padding: 10px;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-wide {
  columns: 3; column-gap: 10px;
  min-width: 720px;
  max-height: 70vh;
  overflow-y: auto;
}
.nav-dropdown a {
  display: block; padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #03257E;
  break-inside: avoid;
  transition: background .15s, color .15s, padding-left .2s;
}
.nav-dropdown a:hover {
  background: linear-gradient(135deg, rgba(255,117,0,.08), rgba(255,182,0,.06));
  color: #FF7500;
  padding-left: 18px;
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .header-customer {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 16px; height: 40px;
  color: #03257E;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 999px;
  border: 1.5px solid rgba(3,37,126,.10);
  transition: border-color .2s, background .2s, color .2s;
}
.header-cta .header-customer:hover {
  border-color: #03257E;
  background: rgba(3,37,126,.04);
}
.header-cta .header-customer svg { color: #FF7500; }
.header-cta .btn-primary {
  height: 40px; padding: 0 22px;
  background: linear-gradient(135deg, #FF7500, #F93822);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px -8px rgba(249,56,34,.45);
  transition: transform .2s, box-shadow .2s;
}
.header-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -8px rgba(249,56,34,.6);
}
.menu-toggle { display: none; }
.mobile-menu { display: none; }
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header.scrolled { border-color: var(--ash-2); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo-mark {
  display: inline-flex; align-items: center;
}
.logo-mark .square {
  background: #132e7c;
  border-radius: 12px;
  padding: 10px 16px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px;
  min-width: 52px;
}
.logo-mark .square img {
  height: 28px; width: auto; display: block;
}
.footer .logo-mark .square { background: #132e7c; }
/* legacy header rules (overrides disabled) */
.nav-legacy { display: flex; align-items: center; gap: 4px; }
/* legacy header rules — disabled (replaced by V2 above) */
.nav-dropdown-legacy a:hover { background: var(--ash); color: var(--violet); }
.header-cta-legacy { display: flex; gap: 8px; align-items: center; }
.menu-toggle-legacy { display: none; }
.mobile-menu-legacy { display: none; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: var(--r-pill);
    background: var(--ash);
  }
  .header-cta .btn:not(.btn-primary) { display: none; }
  .mobile-menu {
    display: block;
    position: fixed; inset: 80px 0 0 0;
    background: var(--white);
    overflow-y: auto;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 49;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu .group { padding: 8px 0; border-bottom: 1px solid var(--ash-2); }
  .mobile-menu .group-title { font-weight: 500; padding: 12px 0; font-size: 18px; letter-spacing: -0.018em; }
  .mobile-menu .group a { display: block; padding: 10px 0; color: var(--charcoal); font-size: 15px; }
}

/* ===== Top strip (gov-style cidades select) ===== */
.top-strip {
  background: var(--noir);
  color: var(--white);
  font-size: 13px;
  letter-spacing: -0.01em;
}
.top-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 40px; gap: 24px;
}
.top-links { display: flex; gap: 4px; align-items: center; }
.top-links a {
  padding: 0 12px; height: 28px;
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill);
  color: rgba(255,255,255,.85);
}
.top-links a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.top-strip .phone { font-weight: 500; color: var(--white); }
@media (max-width: 768px) { .top-strip { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  background: var(--noir);
  color: var(--white);
  padding: 96px 0 120px;
}
.hero {
  background: linear-gradient(135deg, #03257E 0%, #021b5e 60%, #010f3a 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 85% 15%, rgba(255,182,0,.35), transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(249,56,34,.25), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/imagery/hero-1.jpg');
  background-size: cover; background-position: center;
  opacity: .15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-pill);
  padding: 6px 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; background: #6dffb6; border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(109,255,182,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(109,255,182,.7); }
  70% { box-shadow: 0 0 0 12px rgba(109,255,182,0); }
  100% { box-shadow: 0 0 0 0 rgba(109,255,182,0); }
}
.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #F93822 0%, #FF7500 55%, #FFB600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
  max-width: 52ch;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* CEP input */
.cep-form {
  display: flex; align-items: center;
  background: var(--ash);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 20px;
  gap: 12px;
  max-width: 520px;
  width: 100%;
}
.cep-form .input-label {
  display: flex; flex-direction: column; flex: 1; min-width: 0;
}
.cep-form label {
  font-size: 12px; color: var(--charcoal);
  letter-spacing: 0.02em; text-transform: uppercase;
  font-weight: 500;
}
.cep-form input {
  border: 0; background: transparent; outline: none;
  color: var(--noir); font-family: inherit;
  font-size: 16px; font-weight: 500; padding: 2px 0;
  letter-spacing: -0.01em;
}
.cep-form input::placeholder { color: var(--medium); }

.hero-trust {
  display: flex; gap: 32px; flex-wrap: wrap; align-items: center;
  margin-top: 48px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}
.hero-trust strong { color: var(--white); font-weight: 500; }
.hero-trust .divider { width: 1px; height: 16px; background: rgba(255,255,255,.2); }

/* ===== Hero (Nubank style — bg image + CEP card) ===== */
.hero-nu {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  background: #0a1330;
  isolation: isolate;
}
.hero-nu-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-nu-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-nu-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(3,37,126,.9) 0%, rgba(3,37,126,.5) 32%, rgba(3,37,126,.12) 52%, rgba(0,0,0,0) 68%);
}
.hero-nu-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  min-height: 640px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-nu-left { color: #fff; }
.hero-nu-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-nu-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FFB600;
  box-shadow: 0 0 0 3px rgba(255,182,0,.25);
  animation: heroNuDot 1.8s ease-in-out infinite;
}
@keyframes heroNuDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,182,0,.6); }
  50%      { box-shadow: 0 0 0 8px rgba(255,182,0,0); }
}
.hero-nu-title {
  font-size: clamp(40px, 5.8vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 16ch;
}
.hero-nu-hl {
  background: linear-gradient(135deg, #FFB600 0%, #FF7500 60%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-nu-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 44ch;
  margin: 22px 0 0;
}
.hero-nu-actions {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-nu-action-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: #fff;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 14px 28px -8px rgba(249,56,34,.42);
  transition: transform .2s, box-shadow .2s;
}
.hero-nu-action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -8px rgba(249,56,34,.55);
}
.hero-nu-action-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  backdrop-filter: blur(6px);
}
.hero-nu-action-secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: #FFB600;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(255,182,0,.35);
}
.hero-nu-action-secondary svg { color: #FFB600; }

/* ===== CEP Coverage Modal ===== */
.cep-overlay {
  position: fixed; inset: 0;
  background: rgba(3, 10, 30, .65);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: grid; place-items: center;
  padding: 20px;
  animation: cepFade .25s ease;
  overflow-y: auto;
}
@keyframes cepFade { from { opacity: 0 } to { opacity: 1 } }
.cep-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
  animation: cepSlide .3s cubic-bezier(.2,.7,.2,1);
  margin: auto;
}
@keyframes cepSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cep-close {
  position: absolute; top: 16px; right: 18px;
  width: 36px; height: 36px;
  background: #f4f4f7; border: none; border-radius: 50%;
  color: #6b7280; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background .2s, color .2s;
}
.cep-close:hover { background: #03257E; color: #fff; }

.cep-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.cep-eyebrow svg { color: #FF7500; }
.cep-title {
  font-size: 26px; font-weight: 800;
  color: #03257E; line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.cep-sub {
  font-size: 14px; color: #6b7280;
  line-height: 1.5; margin: 0 0 20px;
}
.cep-form { display: flex; flex-direction: column; gap: 14px; }
.cep-field { display: flex; flex-direction: column; gap: 6px; }
.cep-field-label {
  font-size: 12px; font-weight: 700; color: #03257E;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cep-field input {
  height: 56px; padding: 0 18px;
  border-radius: 14px;
  border: 1.5px solid #e6e6ee;
  background: #f4f4f7;
  font-size: 17px; font-weight: 600;
  color: #03257E; letter-spacing: 0.02em;
  font-family: inherit;
  transition: all .2s;
}
.cep-field input:focus {
  outline: none; border-color: #FF7500;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,117,0,.12);
}
.cep-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  height: 56px;
  border: none; border-radius: 999px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: #fff; font-size: 14px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 14px 28px -8px rgba(249,56,34,.42);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.cep-cta-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -8px rgba(249,56,34,.55);
}
.cep-cta-primary:disabled { opacity: .5; cursor: not-allowed; }
.cep-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  height: 52px;
  border: 1.5px solid #03257E;
  background: #fff;
  color: #03257E;
  font-size: 14px; font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.cep-cta-secondary:hover { background: #03257E; color: #fff; }
.cep-hint {
  font-size: 12px; color: #9ca3af;
  margin: 0; text-align: center;
}
.cep-hint a { color: #03257E; font-weight: 600; }

/* Result states */
.cep-result { text-align: center; }
.cep-result-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.cep-icon-ok { background: rgba(22, 163, 74, .12); color: #16a34a; }
.cep-icon-warn { background: rgba(255, 182, 0, .15); color: #d97706; }
.cep-icon-info { background: rgba(3, 37, 126, .10); color: #03257E; }
.cep-result-title {
  font-size: 26px; font-weight: 800;
  color: #03257E; line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.cep-hl {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cep-hl-amber {
  background: linear-gradient(135deg, #FFB600 0%, #FF7500 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cep-hl-navy { color: #03257E; }
.cep-result-sub {
  font-size: 15px; color: #4b5563;
  margin: 0 0 14px;
}
.cep-result-sub strong { color: #03257E; }
.cep-result-msg {
  font-size: 14px; color: #4b5563;
  line-height: 1.55; margin: 0 0 20px;
  max-width: 40ch; margin-left: auto; margin-right: auto;
}
.cep-benefits {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
  background: #f4f7fb;
  border-radius: 14px; padding: 16px 20px;
}
.cep-benefits li { font-size: 14px; color: #03257E; font-weight: 600; }
.cep-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cep-back {
  background: transparent; border: none;
  color: #6b7280; font-size: 13px; font-weight: 600;
  cursor: pointer; padding: 6px;
}
.cep-back:hover { color: #03257E; }
.cep-lead { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cep-lead input {
  height: 52px; padding: 0 18px;
  border-radius: 14px;
  border: 1.5px solid #e6e6ee;
  background: #f4f4f7;
  font-size: 15px;
  font-family: inherit;
}
.cep-lead input:focus { outline: none; border-color: #FF7500; background: #fff; box-shadow: 0 0 0 4px rgba(255,117,0,.12); }
.cep-lead-ok {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(22,163,74,.10);
  color: #16a34a;
  padding: 16px; border-radius: 14px;
  font-size: 14px; font-weight: 600;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .cep-modal { padding: 32px 22px 24px; }
  .cep-title, .cep-result-title { font-size: 22px; }
}

/* CEP card */
.hero-nu-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
  display: flex; flex-direction: column;
  gap: 14px;
}
.hero-nu-card h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #03257E;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.hero-nu-card p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.hero-nu-field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.hero-nu-field-label {
  font-size: 12px;
  font-weight: 700;
  color: #03257E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-nu-field input {
  height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1.5px solid #e6e6ee;
  background: #f4f4f7;
  font-size: 17px;
  font-weight: 600;
  color: #03257E;
  letter-spacing: 0.02em;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.hero-nu-field input:focus {
  outline: none;
  border-color: #FF7500;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,117,0,.12);
}
.hero-nu-field input::placeholder { color: #9ca3af; font-weight: 500; letter-spacing: 0.04em; }
.hero-nu-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: #fff;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px -8px rgba(249,56,34,.42);
  transition: transform .2s, box-shadow .2s;
}
.hero-nu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -8px rgba(249,56,34,.55);
}
.hero-nu-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 4px;
  font-size: 13px; font-weight: 600;
  color: #03257E;
}
.hero-nu-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-nu-trust svg { color: #16a34a; }

@media (max-width: 900px) {
  .hero-nu { min-height: 0; }
  .hero-nu-wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 0;
  }
  .hero-nu-card { max-width: 100%; padding: 24px; }
}

/* ===== Hero Carousel (legacy, kept disabled) ===== */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.hc-track {
  display: flex;
  width: 100%;
  transition: transform 700ms cubic-bezier(.65,.05,.36,1);
}
.hc-slide {
  flex: 0 0 100%;
  display: block;
  line-height: 0;
}
.hc-slide img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.hc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  color: #03257E;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: background 180ms, transform 180ms;
  z-index: 3;
}
.hc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.hc-prev { left: 24px; }
.hc-next { right: 24px; }
.hc-dots {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.hc-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,.25);
  cursor: pointer;
  padding: 0;
  transition: width 220ms, background 220ms;
}
.hc-dot.active {
  width: 32px;
  background: #03257E;
}
@media (max-width: 767px) {
  .hc-arrow { width: 40px; height: 40px; font-size: 24px; }
  .hc-prev { left: 12px; }
  .hc-next { right: 12px; }
  .hc-dot.active { background: #fff; }
  .hc-dot { background: rgba(255,255,255,.45); }
}

/* ===== Capsule (Streaming e benefícios) ===== */
.capsule-section {
  position: relative;
  background: radial-gradient(ellipse at 70% 50%, #061B5C 0%, #020B36 60%, #01061F 100%);
  color: #fff;
  padding: 56px 0;
  overflow: hidden;
}
.capsule-bg { position: absolute; inset: 0; pointer-events: none; }
.cap-glow { position: absolute; border-radius: 50%; filter: blur(110px); }
.cap-glow-1 { width: 520px; height: 520px; right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(249,56,34,.18) 0%, transparent 70%); }
.cap-glow-2 { width: 380px; height: 380px; left: -80px; top: 20%;
  background: radial-gradient(circle, rgba(255,182,0,.10) 0%, transparent 70%); }
.cap-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at right, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at right, #000 20%, transparent 70%);
}

.capsule-wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 32px;
  min-height: 420px;
}
.capsule-h2 { color: #fff; margin-top: 12px; font-size: 44px; letter-spacing: -0.02em; }
.capsule-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: max-content;
}
.capsule-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
}
.capsule-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.capsule-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px 0 18px;
}
.capsule-sub {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 0 24px;
}
.capsule-sub strong { color: #FFB600; font-weight: 700; }
.eyebrow-light {
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FFB600;
  box-shadow: 0 0 0 4px rgba(255,182,0,.18);
}
.capsule-cta { margin-top: 32px; }
.capsule-tag {
  margin-top: 36px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  backdrop-filter: blur(6px);
}
.cap-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.18);
}

.capsule-stage {
  position: relative;
  width: 100%;
  height: 440px;
  margin: 0 auto;
  overflow: hidden;
}
.cap-rise-field {
  position: absolute; inset: 0;
  pointer-events: none;
}
.cap-rise {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 100%);
  animation-name: capRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}
@keyframes capRise {
  0%   { transform: translate(-50%, 0)      scale(.9); opacity: 0; }
  12%  { transform: translate(-50%, -40px)  scale(1);  opacity: 1; }
  60%  { transform: translate(-50%, -240px) scale(1);  opacity: 1; }
  88%  { transform: translate(-50%, -370px) scale(.95); opacity: .5; }
  100% { transform: translate(-50%, -420px) scale(.85); opacity: 0; }
}
.cap-rise-bubble {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
}
.cap-rise-bubble .logo-bubble {
  width: 70%; height: 70%;
  display: grid; place-items: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  text-align: center;
  line-height: 1;
}
.cap-rise-bubble .logo-bubble img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

.cap-hero {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 170px; height: 170px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 30px 100px -10px rgba(249,56,34,.55),
    0 0 80px rgba(255,182,0,.25);
  z-index: 2;
}
.cap-hero img { width: 118px; height: 118px; object-fit: contain; }
.cap-hero-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(249,56,34,.35);
  animation: capRing 3.2s ease-out infinite;
}
.cap-hero-ring-2 { inset: -50px; animation-delay: 1.6s; border-color: rgba(255,182,0,.30); }
@keyframes capRing {
  0%   { opacity: .9; transform: scale(.92); }
  100% { opacity: 0;  transform: scale(1.15); }
}

@media (max-width: 900px) {
  .capsule-wrap { grid-template-columns: 1fr; min-height: auto; }
  .capsule-stage { height: 480px; }
  .capsule-h2 { font-size: 40px; }
}

/* ===== Marquee logos ===== */
.partners-bar {
  background: var(--ash);
  padding: 32px 0;
  overflow: hidden;
}
.partners-bar .label {
  text-align: center; font-size: 13px; color: var(--charcoal);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px;
}
.marquee { display: flex; gap: 56px; animation: marquee 40s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee .logo-pill {
  flex-shrink: 0;
  height: 64px; min-width: 160px; padding: 0 32px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}

/* ===== Plans header — hero identity ===== */
.plans-head-v2 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plans-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(3,37,126,0.06);
}
.plans-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  color: #03257E;
  letter-spacing: -0.03em;
  margin: 0;
}
.plans-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.plans-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px auto 18px;
}
.plans-sub {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}
.plans-sub strong { color: #FF7500; font-weight: 700; }

/* ===== Plans carousel (hero card style) ===== */
.plans-carousel-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-top: 48px;
}
.plans-carousel {
  position: relative;
  width: 100%; max-width: 420px;
  height: 580px;
  perspective: 1200px;
}
.plan-hero {
  position: absolute; inset: 0;
  border-radius: 28px;
  padding: 32px;
  color: var(--white);
  display: flex; flex-direction: column;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(3,37,126,.35);
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
  overflow: hidden;
}
.plan-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 30% 20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.plan-hero-top {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.plan-hero-ribbon {
  background: rgba(255,182,0,.95); color: #03257E;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.plan-hero-name {
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; opacity: .85;
  margin-left: auto;
}
.plan-hero-center {
  flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  position: relative; z-index: 1;
}
.plan-hero-speed {
  font-size: 88px; line-height: 1; letter-spacing: -0.04em;
  font-weight: 500;
}
.plan-hero-speed span { font-size: 32px; opacity: .7; margin-left: 4px; }
.plan-hero-secondary { font-size: 16px; opacity: .8; margin-top: 4px; letter-spacing: -0.01em; }
.plan-hero-logos {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-top: 24px;
}
.logo-pill-sm {
  height: 34px; min-width: 80px; padding: 0 14px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.logo-pill-img {
  background: #fff !important;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; min-width: 80px;
}
.logo-pill-img.logo-pill-sm { height: 32px; padding: 4px 10px; min-width: 70px; }
.logo-pill-img img {
  height: 100%; width: auto; max-height: 26px; display: block;
  object-fit: contain;
}
.logo-pill-img.logo-pill-sm img { max-height: 22px; }
.plan-hero-perks {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  max-width: 30ch;
  margin-left: auto; margin-right: auto;
  opacity: .92;
}
.benef-label { font-weight: 600; margin-right: 4px; }
.benef-text { opacity: .9; }
.plan-hero-bottom {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
  gap: 12px;
}
.plan-hero-price {
  font-size: 28px; letter-spacing: -0.02em; font-weight: 500;
}
.plan-hero-price .cur { font-size: 14px; opacity: .8; margin-right: 4px; }
.plan-hero-price .int { font-size: 13px; opacity: .7; margin-left: 4px; font-weight: 500; }
.plan-hero-cta {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: #fff;
  height: 48px; padding: 0 28px;
  border-radius: 999px;
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 12px 24px -8px rgba(249,56,34,.45);
  transition: transform .2s, box-shadow .2s;
}
.plan-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -8px rgba(249,56,34,.60);
}
.plan-hero-cta:active { transform: scale(.97); }
.plan-hero-cta:disabled { opacity: .6; cursor: default; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  display: grid; place-items: center;
  font-size: 18px;
  z-index: 20;
  transition: transform .2s, background .2s;
}
.carousel-arrow:hover { background: #03257E; color: #fff; transform: translateY(-50%) scale(1.06); }
.carousel-arrow.left { left: 16px; }
.carousel-arrow.right { right: 16px; }
@media (min-width: 900px) {
  .carousel-arrow.left { left: calc(50% - 460px); }
  .carousel-arrow.right { right: calc(50% - 460px); }
}

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 32px;
}
.dots {
  display: flex; gap: 6px; align-items: center;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.dots .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ash-2);
  transition: background .2s, width .25s;
}
.dots .dot.active { background: #03257E; width: 24px; }
.play-toggle {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  transition: background .2s;
}
.play-toggle:hover { background: #03257E; color: #fff; }

@media (max-width: 600px) {
  .plans-carousel { height: 520px; max-width: 320px; }
  .plan-hero { padding: 24px; }
  .plan-hero-speed { font-size: 64px; }
}

/* ===== Plans (legacy grid) ===== */
.plans-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.plans-head h2 { max-width: 18ch; }

.plans-tabs {
  display: inline-flex;
  background: var(--ash);
  padding: 4px;
  border-radius: var(--r-pill);
}
.plans-tabs button {
  height: 40px; padding: 0 20px;
  border-radius: var(--r-pill);
  font-size: 14px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  transition: background .2s, color .2s;
}
.plans-tabs button.active { background: var(--noir); color: var(--white); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--ash-2);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .2s, transform .2s;
  position: relative;
}
.plan-card:hover { border-color: var(--violet); transform: translateY(-2px); }
.plan-card.featured {
  background: var(--noir); color: var(--white);
  border-color: var(--noir);
}
.plan-card.featured .plan-name { color: rgba(255,255,255,.6); }
.plan-card.featured .plan-speed { color: var(--white); }
.plan-card.featured .plan-perks { color: rgba(255,255,255,.7); }
.plan-card.featured .plan-price { color: var(--white); }
.plan-card.featured .plan-fineprint { color: rgba(255,255,255,.5); }
.plan-card .ribbon {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(90deg, #F93822, #FF7500, #FFB600);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
}
.plan-name {
  font-size: 13px; color: var(--charcoal);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500;
}
.plan-speed {
  font-size: 56px; line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.plan-speed .unit { font-size: 22px; letter-spacing: -0.02em; opacity: .6; margin-left: 4px; }
.plan-speed .secondary { font-size: 22px; opacity: .5; display: block; margin-top: 4px; letter-spacing: -0.018em; }
.plan-perks {
  font-size: 14px; line-height: 1.4;
  color: var(--charcoal);
}
.plan-perks .strong { color: var(--noir); display: block; margin-bottom: 4px; font-weight: 500; }
.plan-card.featured .plan-perks .strong { color: var(--white); }
.perk-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.perk-chip {
  background: var(--ash);
  color: var(--noir);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  font-size: 12px; font-weight: 500; letter-spacing: -0.01em;
}
.plan-card.featured .perk-chip { background: rgba(255,255,255,.1); color: var(--white); }
.plan-price {
  font-size: 32px; letter-spacing: -0.02em;
  font-weight: 500; line-height: 1;
}
.plan-price .currency { font-size: 16px; opacity: .7; margin-right: 4px; }
.plan-price .interval { font-size: 14px; color: var(--charcoal); margin-left: 4px; font-weight: 500; }
.plan-card.featured .plan-price .interval { color: rgba(255,255,255,.6); }
.plan-fineprint {
  font-size: 11px; color: var(--silver);
  letter-spacing: 0;
  margin-top: -4px;
}
.plan-card .btn { width: 100%; }
.plan-card.featured .btn-primary { background: var(--white); color: var(--noir); }
.plan-card.featured .btn-primary:hover { background: var(--violet); color: var(--white); }

/* ===== Stats / About ===== */
.about {
  position: relative;
  background: #000;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.about-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.55) 100%);
}
.about::after {
  content: '';
  position: absolute;
  right: -180px; top: 50%;
  width: 900px; height: 900px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(255,255,255,.10), transparent 70%);
  pointer-events: none;
  opacity: .8;
}
.about-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 22px;
  width: max-content;
}
.about-eyebrow svg { color: #FFB600; }
.about-title {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.about-hl {
  background: linear-gradient(135deg, #FFB600 0%, #FF7500 50%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.about-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px 0 22px;
}
.about-paragraphs p strong { color: #FFB600; font-weight: 700; }
.about-content {
  grid-column: 2;
  padding: 80px 80px 80px 24px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.about-content .h2 {
  font-size: 56px; line-height: 1.05; letter-spacing: -0.02em;
}
.about-paragraphs p {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,.95);
  border-left: 1px solid rgba(255,255,255,.5);
  padding-left: 16px;
  margin-bottom: 20px;
  max-width: 46ch;
}
.about-paragraphs p strong { color: var(--white); font-weight: 600; }

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .about-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.6) 100%);
  }
  .about-content { grid-column: 1; padding: 280px 28px 56px; }
  .about-content .h2 { font-size: 40px; }
}

/* ===== Vantagens (Tab Card) ===== */
.vant-card-wrap {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--ash-2);
  padding: 24px;
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.12);
}
.vant-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ash-2);
  margin-bottom: 40px;
}
.vant-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  justify-content: flex-start;
}
.vant-tab:hover { background: var(--ash); }
.vant-tab.active {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: var(--white);
  box-shadow: 0 10px 22px -8px rgba(249,56,34,.5);
}
.vant-tab.active .vant-tab-num { color: rgba(255,255,255,.85); }
.vant-tab-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.04em;
}
.vant-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 16px 24px 32px;
  min-height: 480px;
}
.vant-card-left {
  display: flex; flex-direction: column;
  gap: 24px;
  animation: vantFade .4s ease;
}
.vant-card-title {
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 800;
  color: #03257E;
  max-width: 14ch;
  margin: 0;
  position: relative;
}
.vant-card-title::after {
  content: '';
  display: block;
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin-top: 20px;
}
.vant-card-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.vant-card-chip {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  background: rgba(255,117,0,.10);
  border: 1px solid rgba(255,117,0,.30);
  color: #FF7500;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.vant-card-quote {
  position: relative;
  margin-top: 4px;
  padding-left: 22px;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, #FF7500, #FFB600) 1;
}
.vant-quote-mark {
  position: absolute;
  left: 12px; top: -10px;
  font-size: 36px;
  background: linear-gradient(135deg, #FF7500, #FFB600);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: 700;
}
.vant-card-quote p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  font-weight: 500;
  max-width: 48ch;
  margin: 0;
}
.vant-card-right {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ash);
  animation: vantFade .4s ease;
  box-shadow: 0 30px 60px -22px rgba(3,37,126,.32);
}
.vant-card-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  animation: vantImgIn .9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes vantImgIn {
  0%   { opacity: 0; transform: scale(1.08); filter: blur(8px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
.vant-card-dots {
  position: absolute;
  right: -32px; bottom: -32px;
  width: 180px; height: 180px;
  background-image: radial-gradient(#F93822 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .25;
  pointer-events: none;
}
@keyframes vantFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .vant-tabs { grid-template-columns: repeat(2, 1fr); }
  .vant-card-body { grid-template-columns: 1fr; gap: 32px; padding: 8px 8px 16px; min-height: 0; }
  .vant-card-title { font-size: 28px; }
  .vant-card-wrap { padding: 16px; border-radius: 22px; }
  .vant-tab { padding: 10px 14px; font-size: 13px; }
}

/* ===== Atendimento ===== */
.channels-section {
  position: relative;
  background: linear-gradient(160deg, #03257E 0%, #061B5C 60%, #020B36 100%);
  overflow: hidden;
}
.channels-bg { position: absolute; inset: 0; pointer-events: none; }
.channels-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35;
}
.channels-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #F93822 0%, transparent 70%);
  top: -100px; right: -100px;
}
.channels-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FFB600 0%, transparent 70%);
  bottom: -80px; left: -80px;
  opacity: .2;
}
.channels-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.channels-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.channels-eyebrow svg { color: #FFB600; }
.channels-title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  margin: 22px 0 0;
}
.channels-hl {
  background: linear-gradient(135deg, #FFB600 0%, #FF7500 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.channels-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px auto 18px;
}
.channels-sub {
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 56ch;
}
.channels-sub strong { color: #FFB600; font-weight: 700; }
.eyebrow-light { color: rgba(255,255,255,.85) !important; }

.channels-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .channels-grid { grid-template-columns: 1fr 1fr; } }

.channel {
  background: var(--white);
  border: 1px solid rgba(3,37,126,.06);
  border-radius: 22px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--noir);
  box-shadow: 0 12px 32px -20px rgba(3,37,126,.25);
}
.channel::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #F93822, #FF7500, #FFB600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s ease;
}
.channel:hover {
  transform: translateY(-6px);
  border-color: rgba(255,117,0,.45);
  box-shadow: 0 28px 56px -20px rgba(249,56,34,.28);
}
.channel:hover::after { transform: scaleX(1); }
.channel-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 0;
  box-shadow: 0 10px 22px -10px rgba(249,56,34,.5);
  margin-bottom: 4px;
}
.channel-icon img {
  width: 28px; height: 28px; object-fit: contain; display: block;
  filter: brightness(0) invert(1);
}
.channel-icon svg { width: 28px; height: 28px; display: block; color: #fff; }
.channel-icon span {
  font-size: 28px; color: #fff;
}
.channel-badge {
  height: 36px; width: auto; margin-top: auto;
  align-self: flex-start;
}
.channel h4 {
  font-size: 18px; letter-spacing: -0.018em;
  font-weight: 800; line-height: 1.2;
  color: #03257E;
  margin: 0;
}
.channel p {
  font-size: 14px; color: #4b5563;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.channel .open {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 800;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-top: auto;
  letter-spacing: 0.02em;
}

/* ===== Clube collage ===== */
.clube-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.clube-head-side { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.clube-head-side p { font-size: 17px; color: var(--charcoal); max-width: 42ch; line-height: 1.5; }
.clube-head-side p strong { color: var(--noir); font-weight: 500; }
@media (max-width: 800px) { .clube-head { grid-template-columns: 1fr; gap: 24px; } }

.clube-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 36px;
  align-self: center;
  justify-items: center;
}
.clube-logos img {
  height: 44px;
  max-width: 140px;
  object-fit: contain;
}

.clube-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  transition: grid-template-columns .7s cubic-bezier(.2,.7,.2,1);
}
.clube-collage:has(.collage-tile.active:nth-child(1)) { grid-template-columns: 2.2fr 1fr 1fr 1fr; }
.clube-collage:has(.collage-tile.active:nth-child(2)) { grid-template-columns: 1fr 2.2fr 1fr 1fr; }
.clube-collage:has(.collage-tile.active:nth-child(3)) { grid-template-columns: 1fr 1fr 2.2fr 1fr; }
.clube-collage:has(.collage-tile.active:nth-child(4)) { grid-template-columns: 1fr 1fr 1fr 2.2fr; }
@media (max-width: 900px) {
  .clube-collage,
  .clube-collage:has(.collage-tile.active) { grid-template-columns: 1fr 1fr; }
}
.collage-tile {
  position: relative;
  height: 520px;
  border-radius: 28px;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.35);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
  text-align: left;
  font: inherit;
  border: 0;
  background: transparent;
  animation: tileIn .6s ease both;
}
.collage-tile.active { box-shadow: 0 40px 80px -20px rgba(0,0,0,.45); }
.collage-tile:not(.active):hover .collage-img { transform: scale(1.04); }
@keyframes tileIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.collage-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
  transform: scale(1);
}
.collage-tile.active .collage-img { transform: scale(1.08); }
.collage-tone {
  position: absolute; inset: 0;
  pointer-events: none;
}
.collage-label {
  font-size: 22px; letter-spacing: -0.02em; line-height: 1.1;
  font-weight: 800;
  position: relative; z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
  transition: font-size .4s ease;
}
.collage-tile.active .collage-label {
  font-size: 30px;
  background: linear-gradient(135deg, #FFB600, #FF7500);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: none;
}
.collage-toast {
  position: absolute;
  left: 16px; right: 16px;
  top: 24px;
  transform: translateY(-8px) scale(.85);
  background: rgba(255,255,255,.96);
  color: #03257E;
  border-radius: 999px;
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,117,0,.25);
  box-shadow: 0 16px 32px rgba(3,37,126,.22);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.9,.3,1.2);
}
.collage-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .2s;
}
.collage-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: .2s;
}
.collage-toast-legacy { display: none; }
.collage-toast .toast-icon {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(3,37,126,.08);
  display: grid; place-items: center;
  font-size: 14px;
  flex: none;
}

.clube-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 32px;
}
.clube-foot-text {
  font-size: 17px; color: var(--charcoal);
  max-width: 56ch; line-height: 1.5;
  animation: copyFade .45s ease;
}
@keyframes copyFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.clube-foot-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.01em;
  flex: none;
}
.clube-foot-link:hover { filter: brightness(.85); }

.clube-progress {
  display: flex; gap: 8px; margin-top: 20px;
}
.clube-progress span {
  flex: 1; height: 3px; border-radius: 999px;
  background: var(--ash-2);
  cursor: pointer;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.clube-progress span.on {
  background: var(--ash-2);
}
.clube-progress span.on::after {
  content: '';
  position: absolute; inset: 0;
  background: #03257E;
  transform-origin: left;
  animation: progressFill 3.8s linear forwards;
}
@keyframes progressFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== Clube (legacy violet block) ===== */
.clube {
  background: linear-gradient(135deg, #F93822 0%, #FF7500 50%, #FFB600 100%);
  color: var(--white);
  border-radius: var(--r-image);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .clube { grid-template-columns: 1fr; padding: 40px 32px; } }
.clube h2 { color: var(--white); }
.clube p { color: rgba(255,255,255,.85); }
.clube .btn-primary { background: var(--white); color: #F93822; box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.clube .btn-primary:hover { background: var(--ash); background-position: 0; }
.clube-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.clube-grid .item {
  background: rgba(255,255,255,.12);
  height: 84px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 13px; letter-spacing: -0.01em; color: rgba(255,255,255,.85);
  font-weight: 500;
  text-align: center;
  padding: 0 12px;
}

/* ===== Blog ===== */
/* identity head */
.blog-section { background: #fff; }
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.blog-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(3,37,126,.06);
  margin-bottom: 22px;
}
.blog-eyebrow svg { color: #FF7500; }
.blog-title {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #03257E;
  margin: 0;
}
.blog-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.blog-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px 0 0;
}
.blog-all {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  border-radius: 999px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.blog-all:hover {
  background: #03257E; color: #fff;
  transform: translateY(-2px);
}
.blog-all svg { transition: transform .2s; }
.blog-all:hover svg { transform: translateX(4px); }
/* card overrides */
.blog-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(3,37,126,.08);
  background: #fff;
  box-shadow: 0 8px 22px -16px rgba(3,37,126,.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,117,0,.45);
  box-shadow: 0 26px 44px -16px rgba(249,56,34,.22);
}
.blog-meta {
  padding-top: 18px;
  padding-left: 22px;
  padding-right: 22px;
  margin-bottom: 0 !important;
  font-size: 12px !important;
  color: #6b7280 !important;
}
.blog-meta .tag {
  background: #fff !important;
  border: 1.5px solid #03257E !important;
  color: #03257E !important;
  padding: 4px 12px !important;
  border-radius: 999px !important;
  font-weight: 700 !important; font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.blog-card h4 {
  padding: 0 22px;
  font-size: 18px !important;
  line-height: 1.3 !important;
  color: #03257E !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  margin: 8px 0 0 !important;
}
.blog-card .read {
  display: inline-flex !important; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%) !important;
  -webkit-background-clip: text !important; background-clip: text !important;
  -webkit-text-fill-color: transparent !important; color: transparent !important;
  font-weight: 800 !important; font-size: 13px !important;
  letter-spacing: 0.02em !important;
  padding: 0 22px 22px !important;
  margin-top: 12px !important;
}
.blog-card p {
  padding: 0 22px !important;
}

.blog-old { display: none; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: block; }
.blog-thumb {
  position: relative;
  background: var(--ash);
  border-radius: var(--r-image);
  height: 240px;
  background-size: cover; background-position: center;
  margin-bottom: 20px;
  transition: transform .25s;
  overflow: hidden;
}
.blog-tone {
  position: absolute; inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.blog-card:hover .blog-thumb { transform: translateY(-2px); }
.blog-meta {
  display: flex; gap: 12px; align-items: center;
  font-size: 13px; color: var(--charcoal);
  margin-bottom: 8px;
}
.blog-meta .tag {
  background: var(--violet-soft); color: var(--violet);
  padding: 2px 10px; border-radius: var(--r-pill);
  font-size: 12px; letter-spacing: 0.02em; font-weight: 500;
}
.blog-card h4 { font-size: 22px; line-height: 1.3; letter-spacing: -0.018em; font-weight: 500; }
.blog-card .read {
  display: inline-flex; gap: 4px; align-items: center;
  margin-top: 12px;
  color: var(--violet); font-size: 14px; font-weight: 500;
}

/* ===== Etica ===== */
.etica {
  background: var(--noir);
  color: var(--white);
  border-radius: var(--r-image);
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
@media (max-width: 800px) { .etica { grid-template-columns: 1fr; padding: 40px 32px; } }
.etica h3 { font-size: 32px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 12px; }
.etica p { color: rgba(255,255,255,.7); font-size: 16px; max-width: 50ch; }
.etica .btn { margin-top: 24px; }
.etica-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.etica-title {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 !important;
}
.etica-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.etica-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 18px 0 16px;
}
.etica-sub {
  color: rgba(255,255,255,.75) !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  max-width: 48ch !important;
  margin: 0 !important;
}
.etica-sub strong { color: #FFB600; font-weight: 700; }
.qr {
  width: 200px;
  background: var(--white);
  border-radius: 24px;
  padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,.4);
}
.qr img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
}
.qr-caption {
  font-size: 12px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--charcoal); text-align: center;
}
  border-radius: 16px;
  padding: 12px;
  display: grid; place-items: center;
}
.qr-grid {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px;
  width: 100%; height: 100%;
}
.qr-grid div { background: var(--noir); border-radius: 1px; }
.qr-grid div.empty { background: transparent; }

/* ===== Reclame Aqui banner ===== */
.ra-banner {
  display: flex; align-items: center; gap: 32px;
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 28px;
  padding: 32px 40px;
}
@media (max-width: 700px) { .ra-banner { flex-direction: column; text-align: center; padding: 32px 24px; } }
.ra-medal-wrap {
  width: 200px; height: 160px;
  background: transparent;
  display: grid; place-items: center;
  flex: none;
}
.ra-medal {
  width: 100%; height: 100%;
  object-fit: contain;
}
.ra-banner h4 { font-size: 22px; letter-spacing: -0.018em; margin-bottom: 4px; font-weight: 500; }
.ra-banner p { font-size: 14px; color: var(--charcoal); line-height: 1.5; }

.ra-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(3,37,126,0.06);
  margin-bottom: 16px;
}
.ra-banner-title {
  font-size: clamp(26px, 3vw, 34px) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #03257E !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}
.ra-banner-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.ra-banner-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 16px 0 14px;
}
.ra-banner-sub {
  font-size: 15px !important;
  line-height: 1.55 !important;
  color: #4b5563 !important;
  margin: 0 !important;
  max-width: 60ch;
}
.ra-banner-sub strong { color: #FF7500; font-weight: 700; }

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #021c5e 0%, #010f3a 100%);
  color: rgba(255,255,255,.7);
  padding: 80px 0 36px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,117,0,.10) 0%, transparent 60%);
  pointer-events: none;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: 0; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,182,0,.06) 0%, transparent 60%);
  pointer-events: none;
}
.footer .wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  color: #FFB600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer h5:first-child { margin-top: 0; }
.footer h5::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #FFB600;
  box-shadow: 0 0 0 4px rgba(255,182,0,.16);
}
.footer-tagline {
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-size: 13.5px;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-tagline strong {
  display: block;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 13px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-tagline em {
  font-style: normal;
  background: linear-gradient(135deg, #FFB600, #FF7500);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 700;
}
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}

/* Footer — schedule + points (compact, identity) */
.footer-hours { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.footer-hours-row {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
}
.footer-hours-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: #FFB600;
  margin-bottom: 10px;
}
.footer-hours-label::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%;
  background: #FFB600;
}
.footer-hours-list { display: flex; flex-direction: column; gap: 4px; }
.footer-hours-list > div {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 13px;
}
.footer-hours-list span { color: rgba(255,255,255,.62); font-weight: 500; }
.footer-hours-list strong { color: #fff; font-weight: 700; }
.footer-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.footer-points span {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: all .2s;
  text-align: center;
}
.footer-points span:hover {
  background: rgba(255,182,0,.10);
  border-color: rgba(255,182,0,.40);
  color: #FFB600;
  transform: translateY(-2px);
}
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 16px;
}
.footer a { color: rgba(255,255,255,.62); display: block; padding: 5px 0; transition: color .2s, transform .2s; font-size: 14px; }
.footer a:hover { color: #FFB600; transform: translateX(4px); }
.footer .social { display: flex; gap: 8px; margin-top: 16px; }
.footer-sitemap {
  display: flex; flex-direction: column;
  gap: 2px;
}
.footer-sitemap a {
  display: block !important;
  padding: 6px 0 !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,.65) !important;
}
.footer-sitemap a:hover {
  color: #FFB600 !important;
  transform: translateX(4px) !important;
}

.footer-address {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  font-size: 13.5px !important;
  line-height: 1.5;
  transition: all .2s !important;
}
.footer-address svg {
  flex: none;
  color: #FFB600;
  margin-top: 2px;
}
.footer-address:hover {
  background: rgba(255,182,0,.06);
  border-color: rgba(255,182,0,.25);
  color: #FFB600 !important;
  transform: translateX(0) !important;
}
.footer-phones {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 10px;
}
.footer-phone {
  display: inline-flex !important; align-items: center; gap: 10px;
  padding: 6px 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none;
  transition: color .2s, transform .2s !important;
  letter-spacing: -0.01em;
}
.footer-phone svg {
  flex: none;
  color: #FFB600;
}
.footer-phone:hover {
  color: #FFB600 !important;
  transform: translateX(4px) !important;
}
.footer .social a {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 !important;
  transition: background .25s, border-color .25s, color .25s, transform .25s, box-shadow .25s;
}
.footer .social a:hover {
  background: linear-gradient(135deg, #FF7500, #F93822);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px -8px rgba(249,56,34,.55);
}

.coverage-block {
  margin-top: 64px; padding: 40px;
  border-radius: 28px;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,182,0,.18), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(249,56,34,.18), transparent 60%),
    linear-gradient(135deg, #03257E 0%, #021b5e 100%);
  position: relative; overflow: hidden;
}
.coverage-block::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 999px;
  border: 2px dashed rgba(255,182,0,.25);
}
.coverage-header {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
  margin-bottom: 32px;
}
.coverage-title {
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--white); font-weight: 500; max-width: 18ch;
  margin: 12px 0 8px;
}
.coverage-title strong { color: #FFB600; font-weight: 500; }
.coverage-sub { color: rgba(255,255,255,.7); font-size: 15px; max-width: 50ch; }
.coverage-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 1;
}
.coverage-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, border-color .2s, transform .15s;
}
.coverage-chip:hover {
  background: #FFB600;
  color: #03257E !important;
  border-color: #FFB600;
  transform: translateY(-1px);
}
.coverage-chip:hover .dot { background: #03257E; }
.coverage-chip .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #FFB600;
  transition: background .2s;
}

.footer .legal {
  margin-top: 64px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px;
  font-size: 12.5px; color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  line-height: 1.55;
}
.footer .legal strong {
  background: linear-gradient(135deg, #FFB600, #FF7500);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent !important;
  font-weight: 800;
}
.footer .badge-noir {
  background: linear-gradient(135deg, #FF7500, #FFB600);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0;
}
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer .badge-noir {
  background: var(--white); color: var(--noir);
  padding: 4px 10px; font-size: 11px;
  letter-spacing: 0.04em;
}
.footer-stores { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.footer-stores .store-badge {
  display: inline-flex; padding: 0;
  background: transparent;
  border-radius: 8px;
  transition: transform .2s ease, opacity .2s ease;
}
.footer-stores .store-badge:hover { transform: translateY(-2px); opacity: .85; }
.footer-stores .store-badge img {
  height: 40px; width: auto; display: block;
}
.footer-stores .store {
  background: var(--white); color: var(--noir);
  border-radius: var(--r-pill);
  padding: 8px 14px; font-size: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.footer-stores .store:hover { background: var(--violet); color: var(--white); }
.hours-block { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }
.hours-block strong { color: var(--white); font-weight: 500; display: block; margin-top: 12px; }

/* WhatsApp float */
.wa-float span:not(.icon) { display: none; }
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  height: 56px; padding: 0 24px;
  background: #25d366; color: var(--white);
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: 15px;
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.05); }
@media (max-width: 600px) {
  .wa-float { padding: 0; width: 56px; justify-content: center; }
  .wa-float span:not(.icon) { display: none; }
}
.wa-float { padding: 0; width: 60px; height: 60px; justify-content: center; }
.wa-float .icon { display: inline-flex; align-items: center; justify-content: center; }
.wa-float .icon svg { width: 30px; height: 30px; }

/* Modal */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 28px;
  max-width: 480px; width: 100%;
  padding: 40px;
  transform: scale(.95);
  transition: transform .25s;
}
.modal-bg.open .modal { transform: scale(1); }
.modal h3 { font-size: 24px; letter-spacing: -0.018em; margin-bottom: 8px; font-weight: 500; }
.modal p { color: var(--charcoal); font-size: 15px; margin-bottom: 24px; }
.modal label { font-size: 12px; color: var(--charcoal); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; }
.modal .field {
  background: var(--ash);
  border-radius: var(--r-input);
  padding: 12px 20px;
  margin-bottom: 12px;
}
.modal .field input, .modal .field select {
  width: 100%; border: 0; background: transparent; outline: none;
  font-family: inherit; font-size: 16px; font-weight: 500; color: var(--noir);
  letter-spacing: -0.01em; margin-top: 2px;
}
.modal .actions { display: flex; gap: 8px; margin-top: 24px; }
.modal .actions .btn { flex: 1; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ash);
  display: grid; place-items: center;
  font-size: 18px;
}

/* ===== Clube head identity ===== */
.clube-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(3,37,126,.06);
  margin-bottom: 18px;
}
.clube-eyebrow svg { color: #FF7500; }
.clube-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  color: #03257E;
  letter-spacing: -0.03em;
  margin: 0;
}
.clube-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.clube-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px 0 0;
}
.clube-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #4b5563;
  max-width: 50ch;
  margin: 0 0 22px;
}
.clube-sub strong { color: #FF7500; font-weight: 700; }

/* Vantagens (home) — identity ===== */
.vant-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vant-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid #03257E;
  color: #03257E;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(3,37,126,0.06);
}
.vant-eyebrow svg { color: #FF7500; }
.vant-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  font-weight: 800;
  color: #03257E;
  letter-spacing: -0.03em;
  margin: 0;
}
.vant-hl {
  background: linear-gradient(135deg, #FF7500 0%, #F93822 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.vant-rule {
  width: 80px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, #FF7500, #FFB600);
  margin: 22px auto 18px;
}
.vant-sub {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0;
}
.vant-sub strong { color: #FF7500; font-weight: 700; }

/* Section title block (centered) */
.section-title { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-title .eyebrow { margin-bottom: 12px; }
.section-title p { color: var(--charcoal); margin-top: 16px; }
