:root {
  /* PALETA ABAC — azul saturado do selo ABAC + prata azulado + branco */
  --navy-900: #18324B;       /* azul escuro profundo (era #1A2A3D) */
  --navy-800: #1F3D5C;       /* azul-aço principal (era #213548) */
  --navy-700: #2A5179;       /* azul-petróleo saturado CTA (era #2E4A66) */
  --navy-600: #3F6E9A;       /* azul médio vibrante (era #3F6383) */
  --navy-500: #5689B0;       /* azul claro saturado (era #547B9C) */
  --navy-400: #7AA0C5;
  --navy-300: #A8C0D9;
  --navy-200: #CDDBE9;

  /* "gold" = azul-prata saturado igual ao tom metálico do selo ABAC */
  --gold-900: #1E3A55;        /* azul escuro tipo texto "ABAC" (era #28384A) */
  --gold-800: #2E4F6F;        /* (era #394E64) */
  --gold-700: #466F95;        /* azul-aço médio acento (era #557291) */
  --gold-600: #6589AE;        /* (era #7894B5) */
  --gold-500: #88A4C5;        /* azul-prata vivo (era #9DB6D1) */
  --gold-400: #A8BFDB;        /* azul-prata em fundo navy (era #C2D2E5) */
  --gold-300: #C5D8EC;        /* (era #DAE5F1) */
  --gold-100: #D2E1F5;        /* fundo azul-claro do selo (era #E2ECF7) */

  --paper-100: #FFFFFF;       /* branco puro */
  --paper-200: #DCE8F5;       /* azul-claro de seção (era #E8EFF8) */
  --paper-300: #C0D2E8;       /* borda azul nítida (era #D5E0EE) */
  --paper-400: #9CB4D0;       /* borda mais escura (era #B5C5D8) */

  /* AZUL ROYAL POP — usado em pontos de destaque (stats, italic emphasis, method numbers, badges) */
  --blue-pop: #1E40AF;        /* Royal Blue saturado — punch visual sem virar neon */
  --blue-pop-hover: #2952C8;  /* hover variant */
  --blue-pop-soft: rgba(30, 64, 175, 0.12);  /* fundo sutil para badges/highlights */

  /* PALETA CINEMATOGRÁFICA PREMIUM (Phase 1) */
  --blue-deep: #00335B;        /* azul profundo principal — campanha automotiva */
  --blue-petroleum: #082E50;   /* azul petróleo — fundos escuros */
  --blue-darker: #051F38;      /* mais escuro — extremos */
  --blue-glow: #1E5FFF;        /* glow azul elétrico — acentos */
  --black-premium: #0A0F1A;    /* preto azulado premium */
  --gold-soft: #C9A561;        /* dourado metálico discreto */
  --gold-shine: #E8C97A;       /* dourado highlight */
  --gray-soft: #ECEDED;
  --gray-mid: #B8BEC8;

  /* Tipografia */
  --font-display-bold: 'Anton', 'Inter', sans-serif;  /* hero condensed bold */

  --neutral-100: #DCE8F5;     /* igual paper-200 (era #E8EFF8) */
  --neutral-300: #9CB4D0;     /* (era #B0BFD2) */
  --neutral-500: #6B7280;
  --neutral-700: #2C3340;

  --text-primary: #0F1A2E;
  --text-secondary: #4A5466;

  --success: #2E7D5A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --rail: clamp(1.4rem, 5vw, 4rem);
  --r-md: 8px;
  --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;            /* leitura confortável para 50+ */
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* WALLPAPER cinematográfico — preto premium → azul petróleo profundo
   Substitui a foto da família por gradient cinematográfico consistente com a hero */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(30, 95, 255, 0.10), transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(201, 165, 97, 0.06), transparent 55%),
    linear-gradient(180deg, var(--black-premium) 0%, var(--blue-petroleum) 45%, var(--blue-darker) 100%);
}
/* Grid blueprint sobre o wallpaper — grid tech sutil */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
/* Seções TODAS DARK CINEMATOGRÁFICAS — consistência com hero */
.hero { background:
    radial-gradient(ellipse at 75% 30%, rgba(30, 95, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201, 165, 97, 0.08), transparent 50%),
    linear-gradient(135deg, var(--black-premium) 0%, var(--blue-petroleum) 60%, var(--blue-darker) 100%);
}
.section-creme { background:
    radial-gradient(ellipse at 80% 20%, rgba(30, 95, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #082E50 0%, #051F38 100%) !important;
}
.section-contact { background:
    radial-gradient(ellipse at 20% 80%, rgba(30, 95, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.section-navy { background:
    radial-gradient(ellipse at 30% 40%, rgba(30, 95, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201, 165, 97, 0.05), transparent 60%),
    linear-gradient(135deg, #0A0F1A 0%, #051F38 100%) !important;
}
section:not(.hero):not(.section-creme):not(.section-navy):not(.section-contact):not(.cta-final):not(.tight) {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(30, 95, 255, 0.08), transparent 60%),
    linear-gradient(180deg, #082E50 0%, #051F38 100%) !important;
}
.cta-final { background:
    radial-gradient(ellipse at 50% 30%, rgba(30, 95, 255, 0.20), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(201, 165, 97, 0.10), transparent 60%),
    linear-gradient(135deg, var(--black-premium) 0%, var(--blue-petroleum) 50%, var(--blue-darker) 100%);
}
.footer { background:
    linear-gradient(180deg, var(--blue-darker) 0%, var(--black-premium) 100%);
}
/* Nav glass — wallpaper visível atrás com leve blur */
.nav { background: rgba(3, 21, 42, 0.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-900); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }

p { margin: 0 0 1.1em; max-width: 62ch; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--rail); }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-pop);
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 3px;
  background: var(--blue-pop);
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(3, 21, 42, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1rem var(--rail);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  height: 44px;
  width: auto;
  /* Brilho sutil pra realçar o logo cinza sobre fundo navy escuro */
  filter: brightness(1.4) contrast(1.05) drop-shadow(0 0 18px rgba(146, 172, 201, 0.25));
}
/* Badge ABAC PCA-10 — autoridade silenciosa persistente */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 201, 122, 0.18), rgba(201, 165, 97, 0.10));
  border: 1px solid rgba(232, 201, 122, 0.45);
  color: var(--gold-shine);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(232, 201, 122, 0.15), inset 0 0 12px rgba(232, 201, 122, 0.08);
  transition: all 0.2s;
}
.brand-badge svg { color: var(--gold-shine); flex-shrink: 0; }
.brand:hover .brand-badge {
  background: linear-gradient(135deg, rgba(232, 201, 122, 0.28), rgba(201, 165, 97, 0.15));
  border-color: var(--gold-shine);
  box-shadow: 0 0 24px rgba(232, 201, 122, 0.3);
}
@media (max-width: 640px) {
  .brand-badge { padding: 0.25rem 0.5rem; font-size: 0.6rem; gap: 0.25rem; }
  .brand-badge svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .brand-badge { display: none; }
}
.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
}
.nav-link {
  color: var(--paper-100);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s, text-shadow 0.2s;
  padding: .5rem 0;
  position: relative;
}
.nav-link:hover {
  color: var(--blue-glow);
  text-shadow: 0 0 12px rgba(30, 95, 255, 0.4);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--blue-glow);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-size: .95rem; font-weight: 600;
  transition: all .3s ease;
  letter-spacing: .005em;
  box-shadow: 0 4px 16px -2px rgba(30, 95, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-pop-hover), var(--blue-glow));
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px -2px rgba(30, 95, 255, 0.6);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  font-size: 1rem; font-weight: 500;
  letter-spacing: .01em;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-pop); color: white; box-shadow: 0 4px 14px rgba(30,64,175,.32); }
.btn-primary:hover { background: var(--blue-pop-hover); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,64,175,.42); }
.btn-navy { background: var(--navy-800); color: var(--paper-100); }
.btn-navy:hover { background: var(--navy-900); color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-ghost:hover { background: var(--navy-800); color: var(--paper-100); }
.btn-whats { background: #25D366; color: white; }
.btn-whats:hover { background: #1ea855; color: white; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== HERO CINEMATOGRÁFICO (Phase 1) ===== */
.hero {
  background:
    radial-gradient(ellipse at 75% 30%, rgba(30, 95, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201, 165, 97, 0.08), transparent 50%),
    linear-gradient(135deg, var(--black-premium) 0%, var(--blue-petroleum) 60%, var(--blue-darker) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
  position: relative;
  overflow: hidden;
  color: var(--paper-100);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 65% 50%, rgba(30, 95, 255, 0.12), transparent 60%);
  pointer-events: none;
  filter: blur(30px);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero .eyebrow { color: var(--gold-shine); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  font-family: var(--font-display-bold);
  font-size: clamp(3.4rem, 8.5vw, 6.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--paper-100);
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.5em;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-display);  /* Fraunces serif itálico — quebra o ritmo do Anton condensado */
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--blue-glow);
  text-transform: none;
  text-shadow: 0 2px 24px rgba(30, 95, 255, 0.5);
}
.hero-sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  max-width: 52ch;
  font-weight: 300;
}
.hero-points {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.4rem;
  list-style: none; padding: 0;
}
.hero-points li {
  display: flex; align-items: flex-start; gap: .9rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}
.hero-points li strong { color: var(--paper-100); font-weight: 600; }
.hero-points .ico {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  display: grid; place-items: center;
  font-size: .95rem; font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 0 20px rgba(30, 95, 255, 0.4);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
}

/* hero image — composição cinematográfica com profundidade real */
.hero-image-photo {
  aspect-ratio: 1/1;  /* quadrado — combina com foto família 1200x1200 */
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--black-premium);
  /* Multi-layer shadows = profundidade cinematográfica */
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.7),
    0 30px 60px -30px rgba(30, 95, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateY(-2deg) translateZ(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-image-photo:hover { transform: perspective(1200px) rotateY(0) translateY(-6px); }
.hero-image-photo::before {
  content: '';
  position: absolute; inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(30, 95, 255, 0.35), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.hero-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;  /* foto quadrada — centraliza chaves + rostos */
  display: block;
  /* Filtro suave — preserva cor real da foto editada com logo Refúgio */
  filter: contrast(1.05) saturate(1.05);
}
/* Badge flutuante sobre a foto — reforço de credibilidade */
.hero-image-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem; right: 1.4rem;
  z-index: 3;
  background: rgba(10, 15, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}
.hero-image-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 12px var(--blue-glow);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Overlay cinematográfico azul-petróleo — vinheta + glow lateral */
.hero-image-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, transparent 30%, rgba(8, 46, 80, 0.5) 100%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.45) 100%),
    radial-gradient(ellipse at 75% 30%, rgba(30, 95, 255, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* placeholder visual hero (não usado mais) */
.hero-image {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, rgba(10,37,64,.95), rgba(31,78,133,.85));
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  color: var(--paper-100);
  padding: 2rem;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05), transparent 50%);
}
.hero-image .keys-icon {
  width: 96px; height: 96px;
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.hero-image .placeholder-label {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,.5);
  color: var(--paper-100);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 4px;
  z-index: 2;
  font-weight: 500;
}
.hero-image-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  position: relative; z-index: 1;
  max-width: 22ch;
  color: var(--navy-200);
}

/* ===== SEÇÃO O QUE FAZEMOS — background definido em Phase 2 (dark cinematográfico) ===== */

.headline-block {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 3rem;
}
.headline-block .eyebrow { justify-content: center; }
.headline-block .eyebrow::before, .headline-block .eyebrow::after {
  content: ''; width: 32px; height: 3px; background: var(--blue-pop);
}
.headline-block .lead {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: none;
}

.checks {
  display: grid;
  gap: 1rem;
  list-style: none; padding: 0;
  max-width: 700px; margin: 0 auto;
}
.checks li {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--paper-100);
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-md);
  border-left: 3px solid var(--navy-700);
  font-size: 1.05rem;
  box-shadow: 0 1px 0 rgba(15,26,46,.04), 0 1px 3px rgba(15,26,46,.05);
}
.checks .ck {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  display: grid; place-items: center;
  font-size: .85rem; font-weight: 700;
  margin-top: 2px;
}

.you-not-alone {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy-800);
  font-weight: 500;
}

/* ===== POR QUE ESCOLHER (NAVY) — background em Phase 2, mantém só estrutura ===== */
.section-navy {
  color: var(--paper-100);
  position: relative;
  overflow: hidden;
}
.section-navy::before {
  content: '';
  position: absolute; top: -10%; right: -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(30, 95, 255, 0.12), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.contrast-card {
  padding: 2rem;
  border-radius: var(--r-lg);
}
.contrast-card.bad {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}
.contrast-card.good {
  background: var(--paper-100);
  color: var(--text-primary);
}
.contrast-card.good h3 { color: var(--navy-900); }
.contrast-card h3 {
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.contrast-card.bad h3 { color: rgba(255,255,255,.6); }
.contrast-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .9rem;
}
.contrast-card li {
  padding-left: 1.8rem;
  position: relative;
  font-size: 1.02rem;
  line-height: 1.5;
}
.contrast-card.bad li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: rgba(255,255,255,.4);
  font-weight: 600;
}
.contrast-card.good li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--navy-700);
  font-weight: 700;
}

/* ===== AUTORIDADE / SEGURANÇA ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-card {
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(10,37,64,.15);
}
.trust-card .seal {
  width: 110px; height: 110px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-200);
  overflow: hidden;
}
.trust-card .seal img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.trust-card .seal.diamond {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}
.trust-card .seal.shield {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--paper-100);
}
.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy-900);
}
.trust-card p {
  font-size: .98rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.trust-callout {
  margin-top: 2.5rem;
  background: var(--navy-900);
  color: var(--paper-100);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex; gap: 1.5rem; align-items: center;
}
.trust-callout .ico {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper-100);
  display: grid; place-items: center;
  color: var(--navy-800);
}
.trust-callout p { margin: 0; max-width: none; line-height: 1.55; }
.trust-callout strong { color: var(--gold-400); display: block; margin-bottom: .3rem; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; }

/* ===== MÉTODO ===== */
.method-steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  max-width: 880px; margin: 2.5rem auto 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  background: var(--paper-200);
  border-radius: var(--r-lg);
  border: 1px solid var(--paper-300);
  align-items: center;
  transition: border-color .2s, transform .2s, background .2s;
}
.step:hover { background: var(--paper-100); }
.step:hover { border-color: var(--navy-300); transform: translateX(4px); }
.step .num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--blue-pop);
  line-height: 1;
  font-style: italic;
}
.step h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--navy-900);
}
.step p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 1rem;
}
.method-final {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy-800);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ADMINISTRADORAS ===== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.partner {
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  padding: 1.8rem 1rem;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 130px;
  gap: .35rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.partner:hover {
  border-color: var(--navy-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(15,26,46,.12);
}
.partner-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy-900);
  letter-spacing: -.01em;
  line-height: 1;
}
.partner-name.italic { font-style: italic; }
.partner-name.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: -.02em; }
.partner-name.ext-track { letter-spacing: .12em; font-weight: 600; font-size: 1rem; text-transform: uppercase; }
.partner-name.tight { letter-spacing: -.04em; font-weight: 800; }
.partner small {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  color: var(--blue-pop);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.partner-mark {
  width: 32px; height: 32px;
  margin-bottom: .3rem;
  color: var(--navy-700);
}
.partner-logo {
  max-width: 130px;
  max-height: 50px;
  width: auto; height: auto;
  object-fit: contain;
}
.partner-logo-frame {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 56px;
  margin-bottom: .25rem;
}
.partner-yamaha-placeholder {
  width: 100%; height: 56px;
  border: 2px dashed var(--paper-400);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem;
  color: var(--neutral-500);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 .4rem;
  margin-bottom: .25rem;
}

/* ===== PARA QUEM É ===== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.profile-item {
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-md);
  padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}
.profile-item .ck {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
  margin-top: 1px;
}
.profile-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-100, #EDF0F4);
  color: var(--navy-800);
  display: grid; place-items: center;
  margin-top: 2px;
}
.profile-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.not-for {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--paper-300);
  border-left: 4px solid var(--neutral-500);
  border-radius: var(--r-md);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.55;
}
.not-for strong { color: var(--navy-800); font-style: normal; display: block; margin-bottom: .3rem; }

/* ===== SOBRE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-image {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, var(--paper-200), var(--paper-100));
  border: 1px solid var(--paper-300);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.about-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(31,78,133,.08), transparent 70%);
}
.about-image .placeholder-label {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--navy-800);
  color: var(--paper-100);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 4px;
  z-index: 2;
  font-weight: 500;
}
.about-image .center-mark {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 6rem;
  font-style: italic;
  color: var(--navy-600);
  line-height: 1;
  font-weight: 500;
  opacity: .55;
}

.about-text h2 small {
  display: block;
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--navy-700);
  font-weight: 600;
  margin-bottom: 1rem;
}
.about-text .closing-checks {
  margin-top: 1.5rem;
  display: grid; gap: .7rem;
  list-style: none; padding: 0;
}
.about-text .closing-checks li {
  display: flex; align-items: center; gap: .7rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy-800);
}
.about-text .closing-checks li::before {
  content: '✓';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy-800);
  color: white;
  display: grid; place-items: center;
  font-size: .8rem; font-weight: 700;
}
.about-purpose {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--paper-300);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy-900);
  line-height: 1.5;
}

/* ===== CONTATO — background definido em Phase 2 (dark cinematográfico) ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
  align-items: start;
}
.contact-info {
  display: grid; gap: 1.4rem;
  list-style: none; padding: 0;
}
.contact-info li {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.08rem;
  color: var(--text-primary);
}
.contact-info .ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid; place-items: center;
}
.contact-info strong {
  display: block;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--neutral-500);
  font-weight: 500;
  margin-bottom: .15rem;
}
.contact-info a { color: var(--navy-800); font-weight: 500; }
.contact-info a:hover { color: var(--navy-700); }

.contact-card {
  background: var(--navy-900);
  color: var(--paper-100);
  padding: 2.5rem;
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute; bottom: -30%; right: -20%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 65%);
}
.contact-card h3 {
  font-size: 1.5rem;
  color: var(--paper-100);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.contact-card p {
  margin: 0 auto 1.8rem;
  color: rgba(255,255,255,.85);
  max-width: 32ch;
  position: relative; z-index: 1;
}
.contact-card .btn { position: relative; z-index: 1; }

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, rgba(3,21,42,.6), rgba(20,58,108,.55));
  color: var(--paper-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::after {
  content: '';
  position: absolute; left: 50%; top: -50%;
  width: 600px; height: 600px;
  margin-left: -300px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 60%);
  pointer-events: none;
}
.cta-final h2 {
  color: var(--paper-100);
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 22ch;
  margin: 0 auto 1rem;
}
.cta-final h2 em { font-style: italic; color: var(--gold-400); font-weight: 500; }
.cta-final .lead {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin: 0 auto 2rem;
  max-width: 50ch;
}
.cta-final .actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(3, 21, 42, 0.86);
  color: var(--paper-100);
  padding: 3rem 0 1.5rem;
  font-size: .95rem;
  border-top: 4px solid var(--navy-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 40px; filter: brightness(1.4) contrast(1.05) drop-shadow(0 0 14px rgba(146,172,201,.2)); margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.7); max-width: 36ch; line-height: 1.55; }
.footer h5 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer ul a { color: rgba(255,255,255,.78); }
.footer ul a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 1rem;
}

/* ===== STATS — números cinematográficos com glow ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  margin-top: -3rem;  /* negativo: sobe pra "saltar" da hero */
  position: relative;
  z-index: 5;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.stat {
  padding: 2.2rem 1.6rem;
  background: linear-gradient(180deg, rgba(8, 46, 80, 0.92) 0%, rgba(5, 31, 56, 0.95) 100%);
  text-align: left;
  position: relative;
  transition: background 0.3s ease;
}
.stat:hover { background: linear-gradient(180deg, rgba(15, 58, 100, 0.95) 0%, rgba(8, 38, 70, 0.98) 100%); }
.stat-num {
  font-family: var(--font-display-bold);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--blue-glow);
  margin-bottom: .6rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 40px rgba(30, 95, 255, 0.4);
}
.stat-num sup {
  font-size: .45em;
  color: var(--gold-shine);
  margin-left: .1em;
  vertical-align: super;
  text-shadow: none;
  font-weight: 400;
}
.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial {
  background: var(--paper-100);
  border: 1px solid var(--paper-300);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1.4rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-style: italic;
  color: var(--navy-200);
  line-height: 0.6;
  z-index: 0;
}
.testimonial blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 1.4rem;
  padding-top: 1.5rem;
  font-weight: 400;
}
.testimonial cite {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-style: normal;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--paper-100);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: .95rem;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.testimonial-info strong {
  display: block;
  color: var(--navy-900);
  font-weight: 600;
  font-size: .98rem;
  font-family: var(--font-body);
}
.testimonial-info span {
  font-size: .82rem;
  color: var(--neutral-500);
  letter-spacing: .04em;
}

/* ===== FAQ ===== */
.faq {
  max-width: 880px;
  margin: 2.5rem auto 0;
  border-top: 1px solid var(--paper-300);
}
.faq details {
  border-bottom: 1px solid var(--paper-300);
  padding: 1.4rem 0;
}
.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy-700);
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { color: var(--navy-700); }
.faq .answer {
  margin-top: 1rem;
  color: var(--text-secondary);
  max-width: 70ch;
  font-size: 1.02rem;
  line-height: 1.6;
}
.faq .answer p { margin: 0 0 .7em; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--navy-900);
  color: var(--paper-100);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 65%);
  pointer-events: none;
}
.newsletter-text { position: relative; z-index: 1; }
.newsletter h3 {
  margin: 0 0 .6rem;
  color: var(--paper-100);
  font-size: 1.5rem;
  font-weight: 500;
}
.newsletter p {
  margin: 0;
  color: rgba(255,255,255,.75);
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.55;
}
.newsletter-form {
  display: flex;
  gap: .6rem;
  position: relative; z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: var(--paper-100);
  font-family: inherit;
  font-size: .98rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus {
  border-color: var(--navy-300);
  background: rgba(255,255,255,.1);
}
.newsletter-form button {
  background: var(--paper-100);
  color: var(--navy-900);
  border: none;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: .98rem;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--navy-300);
  transform: translateY(-1px);
}
.newsletter-privacy {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .8rem;
  position: relative; z-index: 1;
  grid-column: span 2;
}

/* ===== FLOATING WHATSAPP ===== */
/* COOKIE BANNER LGPD — discreto no rodapé, fecha ao aceitar */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(135deg, rgba(8, 46, 80, 0.97), rgba(5, 31, 56, 0.97));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(30, 95, 255, 0.3);
  box-shadow: 0 -10px 40px -10px rgba(0, 0, 0, 0.5);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 64ch;
}
.cookie-banner p a {
  color: var(--blue-glow);
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-banner button {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-banner .cookie-accept {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 4px 14px rgba(30, 95, 255, 0.4);
}
.cookie-banner .cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 95, 255, 0.5);
}
.cookie-banner .cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cookie-banner .cookie-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 640px) {
  .cookie-banner { padding: 0.9rem 1rem; gap: 0.8rem; }
  .cookie-banner p { font-size: 0.85rem; text-align: center; }
  .cookie-banner button { padding: 0.6rem 1rem; font-size: 0.85rem; }
}

.floating-whats {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-whats:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
  color: white;
}
.floating-whats::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2.4s ease-out infinite;
  opacity: .5;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   PHASE 2 — CINEMATIC OVERRIDES (extende padrão hero pro site todo)
   Sobrescreve cards, headlines, cores de seções claras → tudo dark cinematográfico
   ============================================================ */

/* Headlines — h2 com Anton uppercase + glow azul */
section:not(.hero) h2 {
  font-family: var(--font-display-bold);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--paper-100);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
section:not(.hero) h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--blue-glow);
  text-transform: none;
  text-shadow: 0 2px 24px rgba(30, 95, 255, 0.5);
}
section:not(.hero) h3 {
  color: var(--paper-100);
}
section:not(.hero) p,
section:not(.hero) li,
section:not(.hero) .lead {
  color: rgba(255, 255, 255, 0.85) !important;
}
section:not(.hero) .lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92) !important;
}
.you-not-alone {
  color: #E8C97A !important;
  text-shadow: 0 2px 16px rgba(232, 201, 122, 0.3);
}

/* Eyebrow — dourado discreto cinematográfico */
section:not(.hero) .eyebrow {
  color: var(--gold-shine);
}
section:not(.hero) .eyebrow::before,
section:not(.hero) .eyebrow::after {
  background: var(--gold-soft);
}

/* CHECKS (O que fazemos) — fundo branco com texto azul escuro pra MÁXIMA legibilidade */
section .checks li,
.section-creme .checks li,
ul.checks li {
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(30, 95, 255, 0.2) !important;
  border-left: 4px solid #1E5FFF !important;
  color: #0A1628 !important;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
section .checks li,
.section-creme .checks li,
ul.checks li,
.checks li * { color: #0A1628 !important; }
.checks li strong { color: #082E50 !important; font-weight: 700; }
.checks li:hover {
  background: rgba(30, 95, 255, 0.08);
  border-left-color: var(--gold-shine);
  transform: translateX(4px);
}
.checks .ck {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  box-shadow: 0 0 20px rgba(30, 95, 255, 0.4);
  color: white;
}
.you-not-alone {
  color: var(--gold-shine);
  text-shadow: 0 2px 16px rgba(232, 201, 122, 0.3);
}

/* CONTRAST CARDS (Por que escolher) */
.contrast-card.bad {
  background: rgba(10, 15, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contrast-card.good {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(30, 95, 255, 0.04));
  border: 1px solid rgba(30, 95, 255, 0.2);
  color: var(--paper-100);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px -20px rgba(30, 95, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.contrast-card.good h3 { color: var(--paper-100); }
.contrast-card.bad h3 { color: rgba(255, 255, 255, 0.45); }
.contrast-card.bad li { color: rgba(255, 255, 255, 0.55); }
.contrast-card.good li { color: rgba(255, 255, 255, 0.92); }
.contrast-card.bad li::before { color: rgba(255, 255, 255, 0.3); }
.contrast-card.good li::before {
  color: var(--blue-glow);
  text-shadow: 0 0 12px rgba(30, 95, 255, 0.6);
  font-weight: 800;
}

/* TRUST CARDS (Autoridade) — glassmorphic premium */
.trust-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 95, 255, 0.4);
  box-shadow: 0 30px 70px -20px rgba(30, 95, 255, 0.3), 0 0 0 1px rgba(30, 95, 255, 0.2);
}
.trust-card .seal {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.15), rgba(8, 46, 80, 0.6));
  border: 1px solid rgba(30, 95, 255, 0.25);
  box-shadow: 0 0 30px rgba(30, 95, 255, 0.2), inset 0 0 20px rgba(30, 95, 255, 0.1);
}
.trust-card .seal.diamond {
  background: linear-gradient(135deg, var(--gold-soft), rgba(8, 46, 80, 0.8));
  color: var(--gold-shine);
  text-shadow: 0 2px 12px rgba(232, 201, 122, 0.5);
}
.trust-card .seal.shield {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-petroleum));
  color: var(--paper-100);
  box-shadow: 0 0 30px rgba(30, 95, 255, 0.4);
}
/* Photo seal — quando usa imagem real (placa Yamaha, escudo Refúgio): retira fundo gradiente, deixa imagem respirar */
.trust-card .seal.seal-photo {
  width: 140px !important;
  height: 140px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  margin-bottom: 1.4rem;
  overflow: visible !important;
}
.trust-card .seal.seal-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 16px rgba(30, 95, 255, 0.15));
}
.trust-card .seal.seal-shield-refugio img {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(146, 172, 201, 0.35));
}
.trust-card h3 {
  color: var(--paper-100);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.trust-card p { color: rgba(255, 255, 255, 0.7); }

.trust-callout {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.15), rgba(8, 46, 80, 0.7));
  border: 1px solid rgba(30, 95, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px -20px rgba(30, 95, 255, 0.3);
}
.trust-callout .ico {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 0 20px rgba(30, 95, 255, 0.5);
}
.trust-callout strong {
  color: var(--gold-shine);
  font-family: var(--font-display);
  text-shadow: 0 2px 12px rgba(232, 201, 122, 0.3);
}
.trust-callout p { color: rgba(255, 255, 255, 0.85); }

/* RECOGNITION GRID — fotos de premiação e autoridade */
.recognition-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  margin: 2rem 0 1.6rem;
}
.recognition-photo {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(232, 201, 122, 0.18);
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.55);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .4s;
  display: flex;
  flex-direction: column;
}
.recognition-photo.recognition-hero { grid-row: 1 / 3; border-color: rgba(232, 201, 122, 0.42); box-shadow: 0 28px 80px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(232,201,122,.14); }
.recognition-photo:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 201, 122, 0.5);
  box-shadow: 0 30px 80px -22px rgba(0,0,0,.65), 0 0 0 1px rgba(232,201,122,.18);
}
.recognition-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.recognition-photo.recognition-hero img { height: 100%; min-height: 380px; flex: 1; }
.recognition-photo figcaption {
  padding: 1rem 1.2rem 1.2rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  letter-spacing: .005em;
}
.recognition-photo.recognition-hero figcaption { padding: 1.2rem 1.4rem 1.4rem; font-size: .9rem; }
.recognition-photo figcaption strong { color: var(--gold-shine); font-weight: 600; }
.recognition-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(232,201,122,.14);
  color: var(--gold-shine);
  border: 1px solid rgba(232,201,122,.3);
  margin-bottom: .5rem;
}
.recognition-tag.tag-flagship { background: rgba(232,201,122,.22); }
@media (max-width: 760px) {
  .recognition-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .recognition-photo.recognition-hero { grid-row: auto; }
  .recognition-photo img, .recognition-photo.recognition-hero img { height: 220px; min-height: 220px; }
}

/* ===== ONDE ATENDEMOS — Onovolab hub ===== */
.section-location {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(30, 95, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(232, 201, 122, 0.08), transparent 55%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  max-width: 1080px;
  margin: 2.4rem auto 0;
}
.location-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(232, 201, 122, 0.18);
  box-shadow: 0 28px 70px -22px rgba(0,0,0,.6);
  position: relative;
}
.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.location-photo.location-main img { min-height: 520px; }
.location-photo .location-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 31, 56, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-shine);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .42rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(232,201,122,.35);
}
.location-secondary { display: grid; grid-template-rows: 1fr 1fr; gap: 1.4rem; }
.location-callout {
  margin-top: 2.2rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(180deg, rgba(232,201,122,.08), rgba(232,201,122,.02));
  border: 1px solid rgba(232,201,122,.22);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.location-callout .ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30, 95, 255, .25);
  display: grid;
  place-items: center;
  color: var(--gold-shine);
}
.location-callout p { margin: 0; color: rgba(255,255,255,.88); line-height: 1.6; font-size: .95rem; }
.location-callout strong { color: var(--gold-shine); font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; display: block; margin-bottom: .25rem; }
@media (max-width: 760px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-secondary { grid-template-rows: auto auto; }
  .location-photo.location-main img { min-height: 340px; }
  .location-photo img { min-height: 220px; }
  .location-callout { flex-direction: column; text-align: center; padding: 1.4rem; }
}

/* MÉTODO STEPS — cards glassmorphic com número Anton glow */
.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, background 0.3s;
}
.step:hover {
  background: linear-gradient(180deg, rgba(30, 95, 255, 0.1), rgba(30, 95, 255, 0.02));
  border-color: rgba(30, 95, 255, 0.4);
  transform: translateX(8px);
  box-shadow: 0 20px 50px -20px rgba(30, 95, 255, 0.3);
}
.step .num {
  font-family: var(--font-display-bold);
  font-style: normal;
  font-size: 4rem;
  color: var(--blue-glow);
  font-weight: 400;
  text-shadow: 0 0 30px rgba(30, 95, 255, 0.5);
  line-height: 0.9;
}
.step h3 {
  color: var(--paper-100);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.step p { color: rgba(255, 255, 255, 0.72); }
.method-final {
  color: var(--gold-shine);
  text-shadow: 0 2px 16px rgba(232, 201, 122, 0.3);
}

/* PARTNERS — cards BRANCOS pra logos coloridos ficarem visíveis */
.partner {
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(30, 95, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  min-height: 130px;
}
.partner:hover {
  border-color: rgba(30, 95, 255, 0.5) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(30, 95, 255, 0.35);
}
.partner-name { color: #082E50 !important; font-weight: 700; }
.partner small { color: #1E5FFF !important; font-weight: 700; }
.partner-logo {
  filter: none;
}

/* PROFILE GRID (Para quem é) — cards glassmorphic */
.profile-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.profile-item:hover {
  background: rgba(30, 95, 255, 0.08);
  border-color: rgba(30, 95, 255, 0.4);
  transform: translateY(-2px);
}
.profile-item .ck {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  box-shadow: 0 0 16px rgba(30, 95, 255, 0.4);
}
.profile-icon {
  background: rgba(30, 95, 255, 0.15);
  color: var(--blue-glow);
  border: 1px solid rgba(30, 95, 255, 0.25);
}

.not-for {
  background: rgba(10, 15, 26, 0.5);
  border-left: 4px solid var(--gold-soft);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.not-for strong { color: var(--gold-shine); }

/* SOBRE — about-image cinematic */
.about-image {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.12), rgba(8, 46, 80, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(30, 95, 255, 0.1);
}
.about-image::before {
  background-image: radial-gradient(circle at 50% 50%, rgba(30, 95, 255, 0.18), transparent 70%);
}
.about-image .center-mark {
  color: var(--blue-glow);
  text-shadow: 0 0 40px rgba(30, 95, 255, 0.5);
  opacity: 0.7;
}
.about-image .placeholder-label {
  background: rgba(10, 15, 26, 0.78);
  color: var(--gold-shine);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
/* Foto real da família — formato premium com tag dourada */
.about-image.about-image-photo {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--blue-darker);
  border: 1px solid rgba(232, 201, 122, 0.25);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(232, 201, 122, 0.10), 0 0 0 1px rgba(232, 201, 122, 0.15);
}
.about-image.about-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.about-image.about-image-photo:hover img { transform: scale(1.03); }
.about-image.about-image-photo::before {
  background-image: linear-gradient(180deg, transparent 50%, rgba(8, 46, 80, 0.6) 100%);
  background-image: linear-gradient(180deg, transparent 50%, rgba(8, 46, 80, 0.6) 100%) !important;
}
.about-image-caption {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  z-index: 2;
}
.about-image-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-shine));
  color: var(--blue-petroleum);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(232, 201, 122, 0.4);
}
.about-text h2 small { color: var(--gold-shine); }
.about-text .closing-checks li { color: rgba(255, 255, 255, 0.92); }
.about-text .closing-checks li::before {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 0 12px rgba(30, 95, 255, 0.4);
}
.about-purpose {
  border-top-color: rgba(255, 255, 255, 0.1);
  color: var(--gold-shine);
  text-shadow: 0 2px 12px rgba(232, 201, 122, 0.25);
}

/* TESTIMONIALS — cards brancos com texto azul escuro pra MÁXIMA legibilidade */
.testimonial {
  background: rgba(255, 255, 255, 0.97) !important;
  border: 1px solid rgba(30, 95, 255, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(30, 95, 255, 0.08);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 95, 255, 0.3);
  box-shadow: 0 30px 70px -20px rgba(30, 95, 255, 0.25);
}
.testimonial::before {
  color: #1E5FFF !important;
  opacity: 0.25;
}
section .testimonial blockquote,
.testimonial blockquote {
  color: #0A1628 !important;
  font-family: var(--font-display);
  font-weight: 400;
}
section .testimonial p, section .testimonial blockquote * { color: #0A1628 !important; }
.testimonial-avatar {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 0 16px rgba(30, 95, 255, 0.4);
}
.testimonial-info strong { color: #082E50 !important; font-weight: 700; }
.testimonial-info span { color: #4A5466 !important; }

/* FAQ — dark glassmorphic */
.faq { border-top-color: rgba(255, 255, 255, 0.1); }
.faq details {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}
.faq details:hover { background: rgba(30, 95, 255, 0.04); }
.faq details[open] { background: rgba(30, 95, 255, 0.06); }
.faq summary {
  color: var(--paper-100);
  font-family: var(--font-display);
  padding: 0 1rem;
}
.faq summary:hover { color: var(--gold-shine); }
.faq summary::after {
  color: var(--blue-glow);
  text-shadow: 0 0 16px rgba(30, 95, 255, 0.5);
}
.faq details[open] summary { color: var(--gold-shine); }
.faq .answer { color: rgba(255, 255, 255, 0.78); padding: 0 1rem; }

/* CONTACT — info + card cinematic */
.contact-info li { color: var(--paper-100); }
.contact-info .ico {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 0 20px rgba(30, 95, 255, 0.4);
}
.contact-info strong { color: var(--gold-shine); }
.contact-info a { color: var(--paper-100); transition: color 0.2s; }
.contact-info a:hover { color: var(--blue-glow); text-shadow: 0 0 12px rgba(30, 95, 255, 0.5); }

.contact-card {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.15), rgba(8, 46, 80, 0.85));
  border: 1px solid rgba(30, 95, 255, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -20px rgba(30, 95, 255, 0.35);
}
.contact-card::before {
  background: radial-gradient(circle, rgba(30, 95, 255, 0.4), transparent 65%);
}
.contact-card h3 {
  color: var(--paper-100);
  font-family: var(--font-display-bold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 1.8rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.contact-card p { color: rgba(255, 255, 255, 0.85); }

/* NEWSLETTER — full cinematic */
.newsletter {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.12), rgba(8, 46, 80, 0.85));
  border: 1px solid rgba(30, 95, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 70px -20px rgba(30, 95, 255, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.newsletter::before {
  background: radial-gradient(circle, rgba(30, 95, 255, 0.3), transparent 65%);
}
.newsletter h3 {
  color: var(--paper-100);
  font-family: var(--font-display-bold);
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.newsletter p { color: rgba(255, 255, 255, 0.82); }
.newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.newsletter-form input:focus {
  border-color: var(--blue-glow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(30, 95, 255, 0.2);
}
.newsletter-form button {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 8px 20px -4px rgba(30, 95, 255, 0.5);
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, var(--blue-pop-hover), var(--blue-glow));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(30, 95, 255, 0.6);
}

/* CTA FINAL — boost cinematográfico */
.cta-final h2 {
  font-family: var(--font-display-bold);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--paper-100);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.cta-final h2 em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blue-glow);
  font-weight: 500;
  text-transform: none;
  text-shadow: 0 2px 24px rgba(30, 95, 255, 0.6);
}
.cta-final::after {
  background: radial-gradient(circle, rgba(30, 95, 255, 0.18), transparent 60%);
  width: 800px; height: 800px;
  margin-left: -400px;
  filter: blur(40px);
}

/* FOOTER — cinematográfico premium */
.footer {
  border-top: 1px solid rgba(30, 95, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: -30%; left: 50%;
  width: 60%; aspect-ratio: 1;
  margin-left: -30%;
  background: radial-gradient(ellipse at center, rgba(30, 95, 255, 0.08), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.footer .wrap { position: relative; z-index: 1; }
.footer h5 { color: var(--gold-shine); }
.footer ul a:hover { color: var(--blue-glow); text-shadow: 0 0 8px rgba(30, 95, 255, 0.4); }

/* BUTTONS — boost cinematográfico no CTA primário */
.btn-primary {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  box-shadow: 0 8px 24px -4px rgba(30, 95, 255, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-pop-hover), var(--blue-glow));
  box-shadow: 0 12px 36px -4px rgba(30, 95, 255, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--paper-100);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(30, 95, 255, 0.15);
  color: var(--paper-100);
  border-color: var(--blue-glow);
  box-shadow: 0 0 24px rgba(30, 95, 255, 0.3);
}
.btn-navy {
  background: linear-gradient(135deg, var(--blue-petroleum), var(--blue-darker));
  color: var(--paper-100);
  box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.btn-navy:hover {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-petroleum));
  box-shadow: 0 12px 28px -4px rgba(30, 95, 255, 0.4);
  transform: translateY(-2px);
}

/* HEADLINE BLOCK — eyebrow centralizada com tracks dourados */
.headline-block .eyebrow::before,
.headline-block .eyebrow::after {
  background: var(--gold-soft);
}

/* Reveal animation suave para sections (microinteração) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
section .wrap > * {
  animation: fadeInUp 0.8s ease backwards;
}
section .wrap > *:nth-child(2) { animation-delay: 0.1s; }
section .wrap > *:nth-child(3) { animation-delay: 0.2s; }

/* ===== GOOGLE MICRO-BADGE — pequena prova social espalhada ===== */
.google-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 201, 122, 0.30);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s;
}
.google-mini-badge:hover {
  border-color: var(--gold-shine);
  background: rgba(232, 201, 122, 0.10);
  color: var(--paper-100);
  transform: translateY(-1px);
}
.google-mini-badge .stars {
  color: #FBBC04;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(251, 188, 4, 0.4);
}
.google-mini-badge .label {
  letter-spacing: 0.04em;
}
.google-mini-badge .label strong {
  color: var(--gold-shine);
  font-weight: 700;
}
.google-mini-badge .g-logo {
  width: 16px; height: 16px;
  flex-shrink: 0;
}
/* Variante pra hero (texto branco contrastante) */
.hero .google-mini-badge {
  background: rgba(255, 255, 255, 0.10);
  margin-top: 1rem;
}

/* ===== TIPOS DE CONSÓRCIO — 3 cards ===== */
.section-services {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(30, 95, 255, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(232, 201, 122, 0.06), transparent 55%),
    linear-gradient(180deg, #082E50 0%, #051F38 100%) !important;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin: 2.5rem 0 2rem;
}
.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 95, 255, 0.45);
  box-shadow: 0 30px 80px -20px rgba(30, 95, 255, 0.30), 0 0 0 1px rgba(30, 95, 255, 0.15);
}
.service-card-featured {
  border-color: rgba(232, 201, 122, 0.40) !important;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 201, 122, 0.20), 0 0 30px rgba(232, 201, 122, 0.08);
}
.service-card-featured:hover {
  border-color: var(--gold-shine) !important;
  box-shadow: 0 30px 80px -20px rgba(232, 201, 122, 0.30), 0 0 60px rgba(232, 201, 122, 0.15);
}
.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-shine));
  color: var(--blue-petroleum);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(232, 201, 122, 0.35);
}
.service-visual {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--blue-petroleum);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover .service-visual img { transform: scale(1.05); }
.service-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 46, 80, 0.2) 0%, rgba(5, 31, 56, 0.6) 100%);
  pointer-events: none;
}
.service-visual-gradient {
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.20), rgba(8, 46, 80, 0.85)) !important;
}
.service-visual-veiculo {
  background:
    radial-gradient(circle at 30% 50%, rgba(30, 95, 255, 0.25), transparent 60%),
    linear-gradient(135deg, rgba(8, 46, 80, 0.95), rgba(5, 31, 56, 0.95)) !important;
}
.service-visual-contemplada {
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 201, 122, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(8, 46, 80, 0.95), rgba(5, 31, 56, 0.95)) !important;
}
.service-icon-overlay {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-petroleum);
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.service-card-featured .service-icon-overlay {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-shine));
  color: var(--blue-petroleum);
  box-shadow: 0 8px 24px rgba(232, 201, 122, 0.45);
}
.service-visual-label {
  position: absolute;
  bottom: 1.5rem; right: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-shine);
  font-weight: 700;
  z-index: 2;
  text-align: right;
}
.service-body {
  padding: 1.5rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.service-body h3 {
  font-family: var(--font-display-bold) !important;
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  color: var(--paper-100) !important;
  margin: 0 !important;
  line-height: 1.05;
}
.service-tagline {
  margin: 0 !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem !important;
  color: var(--gold-shine) !important;
  font-weight: 500;
  line-height: 1.4;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  line-height: 1.45;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 8px rgba(30, 95, 255, 0.5);
}
.service-card-featured .service-features li::before {
  background: var(--gold-shine);
  box-shadow: 0 0 8px rgba(232, 201, 122, 0.5);
}
.service-features li strong {
  color: var(--paper-100) !important;
  font-weight: 700;
}
.services-footnote {
  text-align: center;
  margin-top: 1.5rem;
}
.services-footnote p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem !important;
  margin: 0 !important;
}
.services-footnote a {
  color: var(--gold-shine) !important;
  text-decoration: none;
  border-bottom: 1px dashed rgba(232, 201, 122, 0.5);
  font-style: normal;
  font-weight: 600;
  transition: all 0.2s;
}
.services-footnote a:hover {
  color: var(--paper-100) !important;
  border-bottom-color: var(--paper-100);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* SERVICES DEEP — explicação detalhada abaixo dos cards */
.services-deep {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.services-deep-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.6rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, transform 0.3s;
}
.services-deep-item:hover {
  border-color: rgba(30, 95, 255, 0.35);
  transform: translateX(4px);
}
.services-deep-item-featured {
  border-color: rgba(232, 201, 122, 0.30) !important;
  background: linear-gradient(180deg, rgba(232, 201, 122, 0.05), rgba(232, 201, 122, 0.01));
}
.services-deep-item-featured:hover {
  border-color: var(--gold-shine) !important;
  box-shadow: 0 16px 40px -16px rgba(232, 201, 122, 0.25);
}
.services-deep-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.20), rgba(8, 46, 80, 0.7));
  border: 1px solid rgba(30, 95, 255, 0.30);
  display: grid;
  place-items: center;
  color: var(--blue-glow);
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(30, 95, 255, 0.20), inset 0 0 16px rgba(30, 95, 255, 0.12);
}
.services-deep-item-featured .services-deep-icon {
  background: linear-gradient(135deg, rgba(232, 201, 122, 0.20), rgba(8, 46, 80, 0.7));
  border-color: rgba(232, 201, 122, 0.40);
  color: var(--gold-shine);
  box-shadow: 0 0 24px rgba(232, 201, 122, 0.25), inset 0 0 16px rgba(232, 201, 122, 0.15);
}
.services-deep-content h3 {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  color: var(--paper-100) !important;
  margin: 0 0 0.6em !important;
  line-height: 1.2;
}
.services-deep-item-featured .services-deep-content h3 {
  color: var(--gold-shine) !important;
}
.services-deep-content p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.98rem !important;
  line-height: 1.6;
  margin: 0 0 1em !important;
}
.services-deep-content p strong {
  color: var(--paper-100) !important;
  font-weight: 700;
}
.services-deep-content ul {
  margin: 0 0 1em !important;
  padding-left: 1.2em;
  list-style: none;
}
.services-deep-content ul li {
  position: relative;
  padding-left: 0.8em;
  color: rgba(255, 255, 255, 0.80) !important;
  font-size: 0.95rem !important;
  line-height: 1.55;
  margin-bottom: 0.4em;
}
.services-deep-content ul li::before {
  content: '→';
  position: absolute;
  left: -0.6em;
  color: var(--blue-glow);
  font-weight: 700;
}
.services-deep-item-featured .services-deep-content ul li::before {
  color: var(--gold-shine);
}
.services-deep-content ul li strong {
  color: var(--paper-100) !important;
  font-weight: 700;
}

@media (max-width: 640px) {
  .services-deep-item {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1.4rem;
    gap: 1rem;
  }
  .services-deep-icon {
    width: 60px;
    height: 60px;
  }
  .services-deep-icon svg { width: 40px; height: 40px; }
}

/* ===== A CARA DA REFÚGIO — Douglas + Eliane ===== */
.section-team {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(30, 95, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin: 2.5rem 0 0;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 1.8rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.6rem;
  align-items: start;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s, box-shadow 0.4s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 201, 122, 0.35);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(232, 201, 122, 0.18);
}
.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 95, 255, 0.20), rgba(8, 46, 80, 0.7));
  border: 1px solid rgba(232, 201, 122, 0.20);
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(232, 201, 122, 0.7);
}
.team-photo-placeholder .team-initials {
  font-family: var(--font-display-bold);
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  color: var(--gold-shine);
  text-shadow: 0 0 24px rgba(232, 201, 122, 0.4);
}
.team-photo-placeholder small {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 0;
}
.team-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}
.team-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.team-tag.tag-primary {
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-pop));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(30, 95, 255, 0.35);
}
.team-tag.tag-secondary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-shine));
  color: var(--blue-petroleum);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(232, 201, 122, 0.3);
}
.team-info h3 {
  font-family: var(--font-display-bold) !important;
  font-size: 1.7rem !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.015em !important;
  color: var(--paper-100) !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.team-role {
  margin: 0 0 0.4rem !important;
  color: var(--gold-shine) !important;
  font-size: 0.92rem !important;
  font-weight: 500;
  font-style: italic;
}
.team-bio {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-bio li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  line-height: 1.5;
}
.team-bio li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--blue-glow);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 0.9;
  top: 0;
}
.team-bio li strong {
  color: var(--paper-100) !important;
  font-weight: 700;
}
.team-bio li.team-bio-fun {
  color: var(--gold-shine) !important;
  font-style: italic;
}
.team-bio li.team-bio-fun::before { color: var(--gold-shine); }
.team-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.1rem !important;
  margin: 2.5rem auto 0 !important;
  max-width: 60ch;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.4rem;
  }
  .team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .team-tags { justify-content: center; }
  .team-bio li { text-align: left; }
}

/* ===== AVALIAÇÕES GOOGLE — card destaque cinematográfico ===== */
.section-google-reviews {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 201, 122, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(30, 95, 255, 0.10), transparent 55%),
    linear-gradient(135deg, #082E50 0%, #051F38 100%) !important;
  padding: clamp(3rem, 6vw, 5rem) 0 !important;
}
.google-reviews-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(232, 201, 122, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(232, 201, 122, 0.08),
    inset 0 0 60px rgba(232, 201, 122, 0.04);
}
.google-reviews-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
}
.google-reviews-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.google-reviews-brand .google-logo {
  width: 110px;
  height: auto;
}
.google-reviews-brand .google-reviews-pill {
  background: #082E50;
  color: white;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.google-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.google-rating-number {
  font-family: var(--font-display-bold);
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 400;
  color: #082E50;
  line-height: 1;
  letter-spacing: -0.04em;
}
.google-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.8rem;
  line-height: 1;
}
.google-stars .star {
  color: #FBBC04;
  text-shadow: 0 2px 8px rgba(251, 188, 4, 0.4);
}
.google-rating-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.4rem;
}
.google-rating-meta strong {
  color: #082E50 !important;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
}
.google-rating-meta span {
  color: #4A5466 !important;
  font-size: 0.88rem;
  font-weight: 500;
}
.google-reviews-right h3 {
  font-family: var(--font-display-bold);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--paper-100) !important;
  margin: 0 0 0.8rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.google-reviews-right h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-shine) !important;
  text-transform: none;
  text-shadow: 0 2px 16px rgba(232, 201, 122, 0.4);
}
.google-reviews-right p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  max-width: 56ch;
}
.google-reviews-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ===== DEPOIMENTOS EM VÍDEO (INSTAGRAM EMBED) ===== */
.section-video-testimonials {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(30, 95, 255, 0.10), transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(201, 165, 97, 0.06), transparent 55%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.section-video-testimonials .ig-handle {
  color: var(--blue-glow) !important;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30, 95, 255, 0.4);
  transition: all 0.2s;
}
.section-video-testimonials .ig-handle:hover {
  color: var(--gold-shine) !important;
  border-bottom-color: var(--gold-shine);
}
.video-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.6rem;
  margin: 2.5rem 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.video-testimonial {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(30, 95, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.2rem;
  margin: 0;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(30, 95, 255, 0.08);
  transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.video-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 95, 255, 0.45);
  box-shadow: 0 30px 70px -20px rgba(30, 95, 255, 0.30);
}
/* Card destacado pra cliente premiado (Aldo) — borda dourada + glow */
.video-testimonial.featured-prize {
  border: 1px solid rgba(232, 201, 122, 0.5) !important;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 201, 122, 0.25), 0 0 40px rgba(232, 201, 122, 0.12);
  position: relative;
}
.video-testimonial.featured-prize::before {
  content: 'PREMIADO';
  position: absolute;
  top: -12px; right: 1rem;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-shine));
  color: var(--blue-petroleum);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(232, 201, 122, 0.35);
}
.video-testimonial.featured-prize:hover {
  border-color: var(--gold-shine) !important;
  box-shadow: 0 30px 70px -20px rgba(232, 201, 122, 0.30), 0 0 60px rgba(232, 201, 122, 0.18);
}
/* Forçar o iframe do Instagram a respeitar o container */
.video-testimonial .instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 12px !important;
  overflow: hidden;
  background: #000 !important;
}
.video-testimonial figcaption {
  padding: 0.4rem 0.4rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.video-testimonial figcaption strong {
  color: var(--paper-100) !important;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.video-testimonial figcaption span {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem;
  line-height: 1.5;
}
.video-testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* ===== RESPONSIVO ===== */
/* TABLET (≤980px) — colunas viram única, ajustes de layout */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image, .hero-image-photo { aspect-ratio: 1/1; max-width: 560px; margin: 0 auto; }
  .contrast-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .testimonials { grid-template-columns: 1fr; }
  .video-testimonials-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .google-reviews-card { grid-template-columns: 1fr; text-align: center; }
  .google-reviews-right h3 { text-align: center; }
  .google-reviews-right p { text-align: center; margin-left: auto; margin-right: auto; }
  .google-reviews-actions { justify-content: center; }
  .newsletter { grid-template-columns: 1fr; }
  .newsletter-privacy { grid-column: span 1; }
}

/* MOBILE GRANDE (≤640px) — celular comum */
@media (max-width: 640px) {
  body { font-size: 16px; }                                     /* leitura confortável */
  .nav-cta { display: none; }                                   /* CTA do nav esconde, fica só logo + botão flutuante WhatsApp */
  .nav-inner { padding: .85rem var(--rail); }
  .brand img { height: 36px; }
  .step { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.3rem 1.2rem; }
  .step .num { font-size: 2.4rem; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .partner { min-height: 110px; padding: 1.4rem .8rem; }
  .partner-logo { max-height: 50px !important; max-width: 110px !important; }
  .trust-callout { flex-direction: column; text-align: center; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 1.6rem 1.2rem; }
  .stat:last-child { border-bottom: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }                      /* botão newsletter ocupa 100% pra tap fácil */
  .floating-whats { width: 56px; height: 56px; bottom: 1rem; right: 1rem; }
  .hero-image, .hero-image-photo { aspect-ratio: 1/1; max-width: 100%; }
  .btn { padding: 1rem 1.5rem; font-size: 1rem; }              /* tap target mínimo 48px */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }              /* CTAs hero stack vertical e ocupam largura toda */
  .cta-final .actions .btn { justify-content: center; flex: 1; }
  .testimonial { padding: 1.6rem 1.4rem; }
  .testimonial blockquote { font-size: 1.05rem; }
  .faq summary { font-size: 1.05rem; gap: 1rem; }              /* perguntas FAQ legíveis no celular */
  .contact-card { padding: 2rem 1.4rem; }
  .headline-block { margin-bottom: 2.2rem; }
  section { padding: clamp(2.8rem, 8vw, 4.5rem) 0; }           /* sections com menos padding vertical */
}

/* MOBILE PEQUENO (≤380px) — iPhone SE / celulares antigos */
@media (max-width: 380px) {
  h1 { font-size: 2rem !important; line-height: 1.1; }
  h2 { font-size: 1.5rem !important; }
  .eyebrow { font-size: .75rem; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-name { font-size: 1rem; }
  .partner-logo { max-height: 50px !important; max-width: 130px !important; }
  .nav-inner { gap: 1rem; }
  .brand img { height: 32px; }
  .stat-num { font-size: 2rem; }
  .floating-whats { width: 52px; height: 52px; }
  .floating-whats svg { width: 26px; height: 26px; }
}

/* PERFORMANCE & UX MOBILE — globais */
@media (hover: none) {
  /* Em telas touch, retira o efeito hover que causa "sticky" no Safari mobile */
  .partner:hover, .step:hover, .testimonial:hover, .trust-card:hover { transform: none; }
}
@media (max-width: 980px) {
  /* Tap highlight color sutil em vez do azul agressivo do Safari */
  a, button { -webkit-tap-highlight-color: rgba(31,78,133,.12); touch-action: manipulation; }
}

/* ============================================
   NOVOS COMPONENTES DO SPLIT — 2026-05-08
   page-intro · breadcrumb · portal cards · page-next
   ============================================ */

/* PAGE INTRO — mini hero pra páginas internas */
.page-intro {
  padding: 4.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 201, 122, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(30, 95, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.page-intro .headline-block { max-width: 920px; margin: 0 auto; text-align: center; }
.page-intro h1 {
  font-family: var(--font-display-bold, 'Anton'), sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: .6rem 0 .8rem;
  color: rgba(255,255,255,.96);
}
.page-intro h1 em {
  font-family: var(--font-display, 'Fraunces'), serif;
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  color: var(--blue-glow, #92ACC9);
  text-shadow: 0 0 24px rgba(146, 172, 201, 0.45);
  letter-spacing: -0.01em;
}
.page-intro .lead { color: rgba(255,255,255,.78); font-size: 1.06rem; max-width: 720px; margin: 1rem auto 0; }

/* BREADCRUMB */
.breadcrumb {
  padding: 1rem 0 0;
  background: linear-gradient(180deg, #051F38, #051F38);
}
.breadcrumb .wrap { font-size: .78rem; color: rgba(255,255,255,.5); letter-spacing: .03em; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .25s; }
.breadcrumb a:hover { color: var(--gold-shine, #E8C97A); }
.breadcrumb span { margin: 0 .4rem; color: rgba(255,255,255,.4); }
.breadcrumb [aria-current="page"] { color: rgba(255,255,255,.85); }

/* PORTAL CARDS — escolha o caminho */
.section-portal {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(30, 95, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #051F38 0%, #082E50 100%) !important;
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 2.4rem 0 0;
}
.portal-card {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding: 1.6rem 1.5rem 1.4rem;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 50px -22px rgba(0,0,0,.5);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .35s, background .35s;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.portal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(232,201,122,.08), transparent 50%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,201,122,.4);
  box-shadow: 0 28px 70px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(232,201,122,.18);
}
.portal-card:hover::after { opacity: 1; }
.portal-eyebrow {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-shine, #E8C97A);
  margin-bottom: .2rem;
}
.portal-card h3 {
  font-family: var(--font-display-bold, 'Anton'), sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  margin: 0;
}
.portal-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  flex: 1;
}
.portal-cta {
  margin-top: .6rem;
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-shine, #E8C97A);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: transform .3s;
}
.portal-card:hover .portal-cta { transform: translateX(4px); }
.portal-card.portal-cta-card {
  background: linear-gradient(180deg, rgba(30, 95, 255, .22), rgba(30, 95, 255, .08));
  border-color: rgba(30, 95, 255, .42);
}
.portal-card.portal-cta-card:hover { border-color: rgba(146, 172, 201, .55); }

@media (max-width: 920px) {
  .portal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .portal-grid { grid-template-columns: 1fr; }
  .portal-card { min-height: auto; }
  .portal-card h3 { font-size: 1.4rem; }
}

/* PAGE NEXT — incentivo a continuar */
.page-next {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, #051F38 0%, #082E50 100%);
}
.page-next-card {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem;
  background: linear-gradient(135deg, rgba(232, 201, 122, .14), rgba(30, 95, 255, .12));
  border: 1px solid rgba(232, 201, 122, .35);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  text-align: center;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .3s, box-shadow .4s;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,.5);
}
.page-next-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,201,122,.6);
  box-shadow: 0 32px 80px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(232,201,122,.25);
}
.page-next-hint {
  display: block;
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-shine, #E8C97A);
  margin-bottom: .4rem;
}
.page-next-label {
  font-family: var(--font-display-bold, 'Anton'), sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
}
.page-next-label span { color: var(--blue-glow, #92ACC9); }
