/*
   SENIC SERVIÇOS — STYLE.CSS
   Landing page de alta conversão
   Todos os direitos reservados © 2026
*/

/* ============================================================
   1. RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

img, svg { display: block; max-width: 100%; }
/* traçado consistente em todo o conjunto de ícones */
svg { stroke-linecap: round; stroke-linejoin: round; }
img { height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(212, 175, 55, .28); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Primeiro item focável da página: some até receber foco pelo teclado. */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1002;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--gold);
  color: #14100A;
  font-size: .8125rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}

.skip-link:focus-visible { transform: translateY(0); }

/* ============================================================
   2. TOKENS
   ============================================================ */

:root {
  /* marca */
  --gold: #D4AF37;
  --gold-light: #F2D479;
  --gold-dark: #A8842A;
  --gold-grad: linear-gradient(135deg, #B8912F 0%, #D4AF37 45%, #F2D479 100%);
  --gold-grad-hover: linear-gradient(135deg, #D4AF37 0%, #F2D479 50%, #FFE9A8 100%);

  /* superfícies */
  --ink: #050506;
  --surface-1: #0A0A0C;
  --surface-2: #101013;
  --surface-3: #17171B;
  --surface-4: #1E1E23;

  /* linhas */
  --line: rgba(255, 255, 255, .07);
  --line-strong: rgba(255, 255, 255, .12);
  --line-gold: rgba(212, 175, 55, .22);

  /* texto */
  --text: #F6F6F7;
  --text-2: #A6A6AE;
  --text-3: #8E8E99;

  /* layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* ritmo vertical */
  --section-y: clamp(72px, 9vw, 128px);

  /* sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .4);
  --shadow: 0 18px 40px -12px rgba(0, 0, 0, .7);
  --shadow-lg: 0 40px 80px -24px rgba(0, 0, 0, .85);
  --glow-gold: 0 0 0 1px rgba(212, 175, 55, .25), 0 20px 60px -20px rgba(212, 175, 55, .35);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   3. BASE
   ============================================================ */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
  overflow-x: hidden;
}

/* granulado sutil — dá profundidade ao preto chapado */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* ---- cabeçalho de seção ---- */

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }

.section-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.022em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-sub {
  font-size: clamp(.95rem, .9rem + .25vw, 1.075rem);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 62ch;
  text-wrap: pretty;
}

.section-sub.centered { margin-inline: auto; }

/* ============================================================
   4. BOTÕES
   ============================================================ */

.btn {
  --btn-py: 14px;
  --btn-px: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s ease;
  will-change: transform;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  background: var(--gold-grad);
  color: #14100A;
  box-shadow: 0 8px 24px -8px rgba(212, 175, 55, .55);
}

.btn-gold:hover {
  background: var(--gold-grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(212, 175, 55, .7);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  background: rgba(212, 175, 55, .06);
}

.btn-lg { --btn-py: 17px; --btn-px: 36px; font-size: .875rem; }

/* ============================================================
   5. HEADER
   ============================================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 1001;
  background: var(--gold-grad);
  transition: width .1s linear;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(5, 5, 6, .85) 0%, rgba(5, 5, 6, .4) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.header.scrolled {
  background: rgba(5, 5, 6, .94);
  border-bottom-color: var(--line-gold);
  box-shadow: 0 12px 40px -20px rgba(0, 0, 0, .9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  transition: padding .4s var(--ease);
}

.header.scrolled .header-inner { padding-block: 8px; }

.header-logo { display: flex; align-items: center; gap: clamp(9px, 1.4vw, 13px); }

.header-logo img {
  height: clamp(32px, 4vw, 42px);
  width: auto;
  transition: transform .4s var(--ease), height .4s var(--ease);
}

.header.scrolled .header-logo img { height: clamp(28px, 3.4vw, 36px); }
.header-logo:hover img { transform: scale(1.04); }

/* tipografia viva: nítida em qualquer tamanho, ao contrário do lockup rasterizado */
.logo-type { display: grid; line-height: 1; }

.logo-name {
  font-size: clamp(1.0625rem, .85rem + .7vw, 1.375rem);
  font-weight: 800;
  letter-spacing: .005em;
  color: var(--text);
}

.logo-sub {
  margin-top: 4px;
  font-size: clamp(.5rem, .42rem + .22vw, .625rem);
  font-weight: 600;
  letter-spacing: .33em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-cta { display: flex; align-items: center; gap: 18px; }

.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .01em;
  transition: color .3s ease;
}

.header-phone svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; }
.header-phone:hover { color: var(--gold); }
.header-cta .btn { --btn-py: 11px; --btn-px: 22px; font-size: .6875rem; }

/* ============================================================
   6. HERO
   ============================================================ */

/* MOBILE FIRST — a foto ocupa uma faixa no topo e o texto vem abaixo dela,
   em área sólida. Nenhuma palavra cai sobre o rosto do profissional. */
.hero {
  --hero-foto: 33svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--hero-foto) + 88px) 0 48px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0 0 auto;
  height: calc(var(--hero-foto) + 78px);
  overflow: hidden;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 4%;
  will-change: transform;
}

/* escurece o topo (legibilidade do header) e dissolve a base no preto */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 5, 6, .62) 0%,
    rgba(5, 5, 6, .14) 24%,
    rgba(5, 5, 6, .20) 52%,
    rgba(5, 5, 6, .72) 82%,
    var(--ink) 100%);
}

/* No mobile o texto já está sobre o preto do body: os véus ficam inertes
   e só voltam a atuar quando a foto passa a ocupar a lateral. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(80% 26% at 55% 12%, rgba(212, 175, 55, .16) 0%, transparent 72%);
}

.hero-content { position: relative; max-width: 660px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  margin-bottom: 18px;
  border-radius: 100px;
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, .07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-2);
  text-transform: lowercase;
}

.hero-badge span {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .6875rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212, 175, 55, .6);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero h1 {
  font-size: clamp(2.25rem, 1.35rem + 3.9vw, 4.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero h1 .highlight {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(1rem, .95rem + .45vw, 1.1875rem);
  color: var(--text-2);
  line-height: 1.62;
  max-width: 54ch;
  margin-bottom: 26px;
  text-wrap: pretty;
}

.hero-actions { display: grid; gap: 12px; }
.hero-actions .btn { width: 100%; }

@media (min-width: 480px) {
  .hero-actions { display: flex; flex-wrap: wrap; }
  .hero-actions .btn { width: auto; }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 40px);
  margin-top: clamp(38px, 5vw, 56px);
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid var(--line);
  max-width: 560px;
}

.hero-stat { min-width: 0; text-align: center; }

.hero-stat-num {
  font-size: clamp(1.75rem, 1.2rem + 1.9vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 8px;
  letter-spacing: .04em;
  line-height: 1.35;
}

/* ============================================================
   7. FAIXA DE CREDIBILIDADE
   ============================================================ */

.trust-bar {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-1), var(--ink));
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 16px;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-2);
  border-bottom: 1px solid var(--line);
}

.trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-item:nth-last-child(-n+2) { border-bottom: none; }

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.trust-item strong { color: var(--text); font-weight: 600; }

/* ============================================================
   8. QUALIFICAÇÃO
   ============================================================ */

.qualifying { background: var(--surface-1); }

.qualifying-grid { display: grid; gap: 14px; }

.qualifying-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-3), var(--surface-2));
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.qualifying-card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.qualifying-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  border: 1px solid var(--line-gold);
  background: radial-gradient(120% 120% at 30% 20%, rgba(212, 175, 55, .18), rgba(212, 175, 55, .04));
}

.qualifying-icon svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

.qualifying-text h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.008em;
  margin-bottom: 6px;
}

.qualifying-text p { font-size: .9375rem; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   9. SERVIÇOS
   ============================================================ */

.services { background: var(--ink); }

.services-grid { display: grid; gap: 14px; }

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--surface-2) 0%, var(--surface-1) 100%);
  transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

/* halo dourado que acende no hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(90% 70% at 50% 0%, rgba(212, 175, 55, .1), transparent 70%);
  transition: opacity .5s var(--ease);
}

.service-card:hover { border-color: var(--line-gold); transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-3);
  transition: color .4s ease;
}

.service-card:hover .service-num { color: var(--gold); }

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 15px;
  border: 1px solid var(--line-gold);
  background: radial-gradient(120% 120% at 30% 20%, rgba(212, 175, 55, .16), rgba(212, 175, 55, .03));
  transition: transform .45s var(--ease);
}

.service-card:hover .service-icon { transform: translateY(-2px) scale(1.05); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

.service-card h3 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 9px;
}

.service-card p { font-size: .9375rem; color: var(--text-2); line-height: 1.62; }

/* ============================================================
   10. SOBRE
   ============================================================ */

.about { background: var(--surface-1); overflow: hidden; }

.about-grid { display: grid; gap: clamp(36px, 5vw, 72px); align-items: center; }

.about-image { position: relative; max-width: 460px; margin-inline: auto; }
.about-image picture { display: block; }

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: var(--radius-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -14px -14px 40px 40px;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 -90px 90px -60px rgba(0, 0, 0, .85);
  pointer-events: none;
}

/* selo flutuante sobre a foto */
.about-badge {
  position: absolute;
  right: -10px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line-gold);
  background: rgba(10, 10, 12, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.about-badge .num {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-badge .lbl { font-size: .6875rem; color: var(--text-2); line-height: 1.3; letter-spacing: .04em; }

.about-title {
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.4rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.022em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.about-text p { font-size: 1rem; color: var(--text-2); line-height: 1.68; margin-bottom: 14px; }

.about-features { display: grid; gap: 14px; margin-top: 28px; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.55;
}

.about-feature .check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  background: rgba(212, 175, 55, .12);
}

.about-feature .check svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 3; }

/* ============================================================
   11. COMPARATIVO
   ============================================================ */

.comparison { background: var(--ink); }

.comparison-grid { display: grid; gap: 16px; }

.comparison-col {
  position: relative;
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-1);
}

.comparison-col.good {
  border-color: var(--line-gold);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(212, 175, 55, .09), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface-1));
  box-shadow: var(--glow-gold);
}

.comparison-col h3 {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 24px;
  color: var(--text-3);
}

.comparison-col.good h4 { color: var(--gold); }

.comparison-badge {
  position: absolute;
  top: -11px;
  right: 24px;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--gold-grad);
  color: #14100A;
  font-size: .625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.comparison-items { display: grid; gap: 16px; }

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--text-2);
}

.comparison-col.good .comparison-item { color: var(--text); }

.comparison-item .icon {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
}

.comparison-item .icon svg { width: 12px; height: 12px; stroke-width: 3; fill: none; }
.comparison-item .icon.x { background: rgba(232, 78, 78, .12); }
.comparison-item .icon.x svg { stroke: #E84E4E; }
.comparison-item .icon.check { background: rgba(212, 175, 55, .14); }
.comparison-item .icon.check svg { stroke: var(--gold); }

/* ============================================================
   12. PROCESSO
   ============================================================ */

.process { background: var(--surface-1); }

.process-grid { display: grid; gap: 14px; }

.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-3), var(--surface-2));
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.process-step:hover { border-color: var(--line-gold); transform: translateY(-3px); box-shadow: var(--shadow); }

.process-num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--gold-grad);
  color: #14100A;
  font-size: 1.0625rem;
  font-weight: 700;
  box-shadow: 0 8px 20px -8px rgba(212, 175, 55, .6);
}

.process-info h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -.008em;
  margin-bottom: 6px;
}

.process-info p { font-size: .9375rem; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   12b. FAIXA DE VOO
   ============================================================ */

.flight {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 78px) 0;
  background: var(--ink);
  border-block: 1px solid var(--line);
}

/* halo que dá profundidade ao preto e destaca a silhueta escura da águia */
.flight::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(58% 78% at 50% 42%, rgba(212, 175, 55, .10), transparent 70%);
}

.flight-stage {
  position: relative;
  height: clamp(78px, 13vw, 132px);
  margin-bottom: clamp(18px, 2.6vw, 30px);
}

.flight-eagle {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(58px, 9.5vw, 116px);
  translate: 0 -50%;
  will-change: transform;
}

/* A águia é montada em três camadas: as duas asas giram em torno do ombro e o
   corpo fica por cima, escondendo a emenda. O filtro vai no rig, e não em cada
   camada, para o brilho ser calculado sobre o conjunto já composto. */
.eagle-rig {
  position: relative;
  display: block;
  opacity: .95;
  filter:
    drop-shadow(0 0 16px rgba(212, 175, 55, .3))
    drop-shadow(0 14px 24px rgba(0, 0, 0, .75));
  transition: transform .55s var(--ease);
}

.eagle-rig img { width: 100%; height: auto; }

.eagle-body { position: relative; z-index: 2; }

.eagle-wing {
  position: absolute;
  inset: 0;
  z-index: 1;
  will-change: transform;
}

/* pivô no encaixe de cada asa com o corpo */
.eagle-wing--l { transform-origin: 40% 56%; }
.eagle-wing--r { transform-origin: 60% 56%; }

/* inclina para o lado do voo: rolando para baixo bica à direita, subindo à esquerda */
.flight.descendo .eagle-rig { transform: rotate(7deg); }
.flight.subindo  .eagle-rig { transform: rotate(-7deg); }

.flight-track {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.flight-track i {
  display: block;
  height: 100%;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left center;
}

.flight-line {
  position: relative;
  text-align: center;
  font-size: clamp(.9375rem, .86rem + .45vw, 1.1875rem);
  color: var(--text-2);
  letter-spacing: .01em;
}

.flight-line span { color: var(--gold); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .flight-eagle { left: 50%; translate: -50% -50%; }
  .flight-eagle .eagle-rig,
  .flight-eagle .eagle-wing { transform: none !important; }
}

/* ============================================================
   13. CLIENTES
   ============================================================ */

.clients { background: var(--ink); }

.carousel-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  padding-block: 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.carousel-wrap:active { cursor: grabbing; }

.carousel-track { display: flex; gap: 16px; width: max-content; will-change: transform; }

.client-card {
  position: relative;
  flex-shrink: 0;
  min-width: 280px;
  max-width: 280px;
  padding: 30px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--surface-2), var(--surface-1));
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  width: 34px;
  height: 2px;
  background: var(--gold-grad);
}

.client-card:hover { border-color: var(--line-gold); transform: translateY(-4px); box-shadow: var(--shadow); }

.client-card h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.008em; margin-bottom: 6px; }

.client-card .since {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.client-card p { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ============================================================
   14. FAQ
   ============================================================ */

.faq { background: var(--surface-1); }

.faq-list { display: grid; gap: 10px; max-width: 860px; margin-inline: auto; }

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}

.faq-item:hover { border-color: var(--line-strong); }
.faq-item.active { border-color: var(--line-gold); background: var(--surface-3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.45;
  color: var(--text);
}

.faq-question .arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}

.faq-question .arrow svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2.5; }

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
  border-color: var(--line-gold);
  background: rgba(212, 175, 55, .1);
}

.faq-answer {
  display: grid;
  /* minmax(0, …) é obrigatório: 0fr sozinho ainda respeita o min-content da linha
     e deixa vazar a primeira linha da resposta */
  grid-template-rows: minmax(0, 0fr);
  transition: grid-template-rows .45s var(--ease);
}

.faq-answer > * { overflow: hidden; min-height: 0; }
.faq-item.active .faq-answer { grid-template-rows: minmax(0, 1fr); }

.faq-answer p {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.68;
  padding: 0 24px 24px;
  max-width: 68ch;
}

/* ============================================================
   15. CTA FINAL
   ============================================================ */

.cta-final {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  isolation: isolate;
}

.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 25%; }

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 50% 45%, rgba(212, 175, 55, .12), transparent 70%),
    linear-gradient(180deg, var(--ink) 0%, rgba(5, 5, 6, .9) 30%, rgba(5, 5, 6, .92) 70%, var(--ink) 100%);
}

.cta-content { text-align: center; max-width: 760px; margin-inline: auto; }

.cta-content h2 {
  font-size: clamp(1.85rem, 1.15rem + 2.9vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.026em;
  margin-bottom: 20px;
  text-wrap: balance;
}

.cta-content p {
  font-size: clamp(1rem, .95rem + .35vw, 1.125rem);
  color: var(--text-2);
  line-height: 1.62;
  max-width: 52ch;
  margin: 0 auto 34px;
  text-wrap: pretty;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.cta-note {
  margin-top: 26px;
  font-size: .8125rem;
  color: var(--text-3);
  letter-spacing: .02em;
}

/* ============================================================
   16. RODAPÉ
   ============================================================ */

.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--line-gold);
  padding: clamp(56px, 7vw, 88px) 0 32px;
}

.footer-inner { display: grid; gap: 40px; }

.footer-brand { display: grid; gap: 18px; justify-items: start; }
.footer-logo { display: flex; align-items: center; gap: 15px; transition: opacity .3s ease; }
.footer-logo:hover { opacity: .82; }
.footer-logo img { height: 52px; width: auto; }
.footer-logo .logo-name { font-size: 1.6rem; }
.footer-logo .logo-sub { font-size: .72rem; letter-spacing: .35em; margin-top: 5px; }
.footer-tagline { font-size: .9375rem; color: var(--text-2); line-height: 1.6; max-width: 42ch; }

.footer-col h2 {
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul { display: grid; gap: 11px; }
.footer-col li { font-size: .9375rem; color: var(--text-2); line-height: 1.5; }
.footer-col a { transition: color .3s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-contact li { display: flex; align-items: flex-start; gap: 11px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  color: var(--text-3);
}

.footer-bottom a { transition: color .3s ease; }
.footer-bottom a:hover { color: var(--gold); }
.footer-sep { color: var(--line-strong); margin: 0 6px; }

/* ============================================================
   17. FLUTUANTES
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 999;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, .55);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .5);
  animation: ring 2.6s ease-out infinite;
}

@keyframes ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}

.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 40px -6px rgba(37, 211, 102, .7); }
.whatsapp-float svg { width: 27px; height: 27px; fill: #fff; }

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 9999;
  padding: 16px var(--gutter);
  background: rgba(10, 10, 12, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-gold);
  transform: translateY(110%);
  transition: transform .6s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.cookie-inner p { font-size: .8125rem; color: var(--text-2); line-height: 1.6; }
.cookie-inner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-inner .btn { --btn-py: 10px; --btn-px: 24px; font-size: .6875rem; flex-shrink: 0; }

/* ============================================================
   18. ANIMAÇÕES
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade { opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .32s; }
.delay-4 { animation-delay: .44s; }

/* ---- revelação na rolagem ----
   Só esconde quando o JS confirma que assumiu o controle (.js-pronto).
   Se o script falhar, nada some da página. */

.js-pronto .reveal {
  opacity: 0;
  transform: translateY(30px) scale(.98);
  transition:
    opacity .8s ease var(--delay, 0ms),
    transform .8s cubic-bezier(.2, .75, .25, 1) var(--delay, 0ms);
}

.js-pronto .reveal.revealed,
.js-pronto .reveal:focus-within {
  opacity: 1;
  transform: none;
}

/* mobile primeiro: entrada sempre vertical e sem atraso encadeado */
.js-pronto .reveal-left,
.js-pronto .reveal-right { transform: translateY(30px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js-pronto .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   19. RESPONSIVO
   ============================================================ */

@media (min-width: 600px) {
  .cookie-inner { flex-direction: row; text-align: left; justify-content: space-between; gap: 24px; }
  .trust-item { padding: 26px 24px; font-size: .875rem; }
}

@media (min-width: 768px) {
  .header-phone { display: inline-flex; }

  .hero { min-height: 100svh; align-items: center; padding: 150px 0 80px; }
  .hero-badge { margin-bottom: 26px; }
  .hero h1 { margin-bottom: 22px; }
  .hero p { margin-bottom: 34px; }
  .hero-bg { inset: 0; height: auto; }
  .hero-bg::after { content: none; }
  .hero-bg img { object-position: 68% 18%; }
  .hero-overlay { background: linear-gradient(100deg, var(--ink) 4%, rgba(5, 5, 6, .9) 32%, rgba(5, 5, 6, .28) 66%, rgba(5, 5, 6, .55) 100%); }
  .hero-overlay-2 { background: radial-gradient(60% 50% at 78% 42%, rgba(212, 175, 55, .13) 0%, transparent 68%), linear-gradient(180deg, var(--ink) 0%, transparent 20%, transparent 64%, var(--ink) 100%); }
  .hero-content { max-width: 60%; }

  /* entradas laterais só onde há largura para elas fazerem sentido */
  .js-pronto .reveal-left  { transform: translateX(-46px) rotate(-2deg) scale(.96); }
  .js-pronto .reveal-right { transform: translateX(46px); }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-item { border-bottom: none; }
  .trust-item:nth-child(odd) { border-right: none; }
  .trust-item:not(:last-child) { border-right: 1px solid var(--line); }

  .qualifying-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-grid { grid-template-columns: .9fr 1.1fr; }

  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

@media (min-width: 1024px) {
  .hero-bg {
    left: auto;
    width: 58%;
    /* dissolve a aresta esquerda da foto no preto em vez de cortá-la em linha reta */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 34%);
  }

  .hero-bg img { object-position: 58% 18%; }

  .hero-overlay { background: linear-gradient(100deg, var(--ink) 0%, var(--ink) 34%, rgba(5, 5, 6, .72) 50%, rgba(5, 5, 6, .12) 72%, rgba(5, 5, 6, .5) 100%); }
  .hero-content { max-width: 54%; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .qualifying-grid { gap: 18px; }
  .comparison-grid { gap: 20px; }
  .comparison-col { padding: 40px 34px; }
  .about-grid { gap: 88px; }
  .client-card { min-width: 300px; max-width: 300px; }
}

@media (min-width: 1440px) {
  .hero-content { max-width: 48%; }
  .hero-bg { width: 55%; }
}
