/* ==========================================================================
   Allvisioon — Saúde Visual Corporativa
   Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500..700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  color-scheme: light;

  /* ---- Palette (extraída da marca oficial) ---- */
  --blue:        #04509C;
  --blue-deep:   #033B78;
  --blue-ink:    #06254A;
  --teal:        #12968F;
  --green:       #22D695;

  --bg:          #F6F9FC;
  --bg-alt:      #EEF4FA;
  --surface:     #FFFFFF;
  --surface-tint:#EFFAF6;

  --border:      rgba(4, 60, 110, 0.12);
  --border-soft: rgba(4, 60, 110, 0.07);

  --text:        #0B1B2B;
  --text-muted:  #4C5C6E;
  --text-faint:  #8393A3;

  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--teal) 55%, var(--green) 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(4,80,156,0.10), rgba(34,214,149,0.12));
  --grad-dark: linear-gradient(160deg, #06264c 0%, #033b78 55%, #0a3f5e 100%);

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --fs-xs:  clamp(0.78rem, 0.75rem + 0.15vw, 0.875rem);
  --fs-sm:  clamp(0.9rem, 0.86rem + 0.2vw, 1rem);
  --fs-base:clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg:  clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --fs-xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-2xl: clamp(1.9rem, 1.5rem + 1.9vw, 2.85rem);
  --fs-3xl: clamp(2.4rem, 1.8rem + 3vw, 4rem);
  --fs-4xl: clamp(2.7rem, 1.9rem + 4.5vw, 5.2rem);

  /* ---- Spacing ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs:  0.75rem;
  --space-sm:  1.125rem;
  --space-md:  1.75rem;
  --space-lg:  2.75rem;
  --space-xl:  4.5rem;
  --space-2xl: 6.5rem;
  --space-3xl: 9rem;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --container: 1240px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-normal: 350ms;

  --shadow-1: 0 2px 10px rgba(6, 30, 60, 0.06);
  --shadow-2: 0 20px 50px rgba(6, 30, 60, 0.10);
  --shadow-brand: 0 14px 34px rgba(4, 80, 156, 0.22);
}

/* ---- Reset ---- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, canvas{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1,h2,h3,h4,p{ margin: 0; }
input, textarea, select{ font: inherit; color: inherit; }

::selection{ background: var(--green); color: #012; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* ---- Layout helpers ---- */
.container{
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.section{ padding-block: var(--space-2xl); position: relative; }
.section-head{
  max-width: 680px;
  margin-bottom: var(--space-xl);
}
.section-head.center{ margin-inline: auto; text-align: center; }
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}
.eyebrow::before{
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-brand);
}
.section-head.center .eyebrow{ justify-content: center; width: 100%; }
.section-head h2{
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--blue-ink);
}
.section-head p{
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--fs-lg);
  max-width: 58ch;
}
.section-head.center p{ margin-inline: auto; }
.text-gradient{
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-normal) var(--ease-out), background var(--dur-normal);
}
.btn-primary{
  background: var(--grad-brand);
  color: #ffffff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover{ transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 40px rgba(4,80,156,0.3); }
.btn-primary:active{ transform: translateY(0) scale(0.97); }

.btn-ghost{
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--blue-ink);
}
.btn-ghost:hover{ background: var(--bg-alt); transform: translateY(-2px); border-color: var(--teal); }
.btn-ghost:active{ transform: translateY(0) scale(0.97); }

.btn-on-dark{ background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.25); color: #fff; }
.btn-on-dark:hover{ background: rgba(255,255,255,0.18); }

.btn-block{ width: 100%; }

/* ==========================================================================
   Background ambience (hero motif)
   ========================================================================== */
.eye-motif{
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.eye-motif .ring{
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(4,80,156,0.14);
}
.eye-motif .ring.r1{ width: 620px; height: 620px; top: -180px; right: -160px; }
.eye-motif .ring.r2{ width: 460px; height: 460px; top: -100px; right: -70px; border-color: rgba(18,150,143,0.16); }
.eye-motif .ring.r3{ width: 300px; height: 300px; top: -20px; right: 20px; border-color: rgba(34,214,149,0.2); }
.eye-motif .blob{
  position: absolute;
  width: 46vw; height: 46vw;
  max-width: 640px; max-height: 640px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
}
.eye-motif .blob.b1{ background: var(--teal); top: -12%; right: -8%; }
.eye-motif .blob.b2{ background: var(--green); bottom: -18%; left: -10%; opacity: .22; }
.eye-motif .dotgrid{
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(4,60,110,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(60% 50% at 75% 20%, #000 0%, transparent 70%);
}
@keyframes spin-slow{ to{ transform: rotate(360deg); } }
.eye-motif .ring{ animation: spin-slow 90s linear infinite; }
.eye-motif .ring.r2{ animation-duration: 70s; animation-direction: reverse; }
.eye-motif .ring.r3{ animation-duration: 50s; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: var(--space-sm);
  background: rgba(246, 249, 252, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: padding var(--dur-normal) var(--ease), box-shadow var(--dur-normal), border-color var(--dur-normal);
}
.site-header.is-scrolled{
  padding-block: var(--space-xs);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(6,30,60,0.06);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.logo{ display: flex; align-items: center; }
.logo img{ height: 34px; width: auto; }
.logo-mark-sm{ height: 30px; width: auto; }

.nav-desktop{
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav-desktop a{
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding-block: .25rem;
  transition: color var(--dur-fast);
}
.nav-desktop a::after{
  content:'';
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--grad-brand);
  transition: width var(--dur-normal) var(--ease-out);
}
.nav-desktop a:hover{ color: var(--blue-ink); }
.nav-desktop a:hover::after{ width: 100%; }
.header-actions{ display: flex; align-items: center; gap: var(--space-sm); }
.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:''; display:block;
  width: 18px; height: 2px; background: var(--blue-ink); border-radius: 2px;
  position: relative;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.nav-toggle span::before{ position:absolute; top: -6px; }
.nav-toggle span::after{ position:absolute; top: 6px; }

@media (max-width: 900px){
  .nav-desktop{
    display: flex;
    position: fixed;
    inset: 72px var(--space-md) auto;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--dur-normal) var(--ease-out);
  }
  .nav-desktop a{ font-size: var(--fs-lg); }
  .nav-desktop.is-open-mobile{ transform: translateY(0); opacity: 1; pointer-events: auto; }
  .header-actions .btn-ghost{ display:none; }
  .nav-toggle{ display: flex; }
}

/* ==========================================================================
   Hero — full-bleed banner
   ========================================================================== */
.hero.has-media{
  position: relative;
  min-height: clamp(460px, 58vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: calc(var(--space-2xl) + 2.5rem);
  padding-bottom: var(--space-xl);
}

.hero-media{
  position: absolute;
  inset: -24px;
  z-index: 0;
  overflow: hidden;
  background: var(--blue-ink);
  transition: transform 400ms var(--ease-out);
  will-change: transform;
}
.hero-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: center;
  animation: hero-kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-media::after{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3,12,26,.82) 0%, rgba(3,12,26,.5) 26%, rgba(3,16,32,.18) 52%, rgba(3,16,32,.05) 72%),
    linear-gradient(100deg, rgba(3,12,26,.62) 0%, rgba(3,12,26,.22) 36%, transparent 56%);
  pointer-events: none;
}
@keyframes hero-kenburns{
  from{ transform: scale(1.1) translate3d(0,0,0); }
  to{ transform: scale(1.26) translate3d(-1.5%, -1.5%, 0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-media img{ animation: none; }
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.hero.has-media .hero-badge{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .45em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
}
.hero.has-media h1{
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.3rem + 2.3vw, 2.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero.has-media h1 .hero-highlight{
  position: relative;
  color: #fff;
  -webkit-text-fill-color: #fff;
  white-space: nowrap;
}
.hero.has-media h1 .hero-highlight::after{
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: -0.06em;
  height: 0.09em;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
}
.hero.has-media .hero-sub{
  margin-top: var(--space-sm);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 46ch;
}
.hero.has-media .hero-actions{
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.hero.has-media .btn-primary,
.hero.has-media .btn-ghost{
  min-height: 42px;
  padding: .7rem 1.3rem;
  font-size: var(--fs-xs);
}
.hero.has-media .btn-ghost{
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}
.hero.has-media .btn-ghost:hover{ background: rgba(255,255,255,.2); }

.hero-trust-line{
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,.22);
  max-width: 42ch;
}
.hero-trust-line span{
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: .35em;
}
.hero-trust-line strong{
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-xs);
  color: #fff;
}

@media (max-width: 900px){
  .hero.has-media{ min-height: auto; padding-top: calc(var(--space-2xl) + 3rem); padding-bottom: var(--space-xl); }
  .hero-content{ max-width: 480px; }
}
@media (max-width: 560px){
  .hero.has-media h1{ font-size: 1.65rem; }
  .hero-trust-line{ display: none; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-wrap{
  border-block: 1px solid var(--border);
  padding-block: var(--space-md);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.marquee-wrap .label{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex; align-items: center;
  padding-inline: var(--space-md);
  padding-right: calc(var(--space-md) + 28px);
  background: var(--surface);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-faint);
  white-space: nowrap;
  z-index: 2;
}
.marquee-wrap .label::after{
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: -28px;
  width: 28px;
  background: linear-gradient(90deg, var(--surface), transparent);
}
.marquee{
  display: flex;
  width: max-content;
  gap: var(--space-2xl);
  animation: marquee 38s linear infinite;
  padding-left: 260px;
}
.marquee-wrap:hover .marquee{ animation-play-state: paused; }
.marquee span{
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--text-faint);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.marquee span::after{
  content: '◆';
  color: var(--green);
  margin-left: var(--space-2xl);
  font-size: .55em;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Reveal utility
   ========================================================================== */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-group] > *{ transition-delay: calc(var(--i, 0) * 80ms); }

/* ==========================================================================
   Problem / stats section
   ========================================================================== */
.problem-section{ background: var(--grad-dark); color: #fff; }
.problem-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
.problem-section .eyebrow{ color: var(--green); }
.problem-section .eyebrow::before{ background: var(--green); }
.problem-section h2{ color: #fff; }
.problem-list{ display: grid; gap: var(--space-md); margin-top: var(--space-lg); }
.problem-item{ display: flex; gap: var(--space-sm); }
.problem-item .num{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
}
.problem-item p{ color: rgba(255,255,255,0.78); }
.problem-item b{ color: #fff; }

.big-stats{ display: grid; gap: var(--space-lg); }
.big-stat{
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
}
.big-stat .num{
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.big-stat p{ margin-top: .5em; color: rgba(255,255,255,0.75); font-size: var(--fs-sm); }

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

/* ==========================================================================
   Quem somos / Propósito
   ========================================================================== */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
.about-card{
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.about-card .icon-badge{
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  color: var(--blue);
  margin-bottom: var(--space-md);
}
.about-card .icon-badge svg{ width: 26px; height: 26px; }
.about-card h3{
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--blue-ink);
  margin-bottom: .6em;
}
.about-card p{ color: var(--text-muted); }
.about-card b{ color: var(--blue-ink); }

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

/* ==========================================================================
   Process (Como Funciona)
   ========================================================================== */
.process-list{ display: grid; gap: 0; }
.process-item{
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: var(--space-lg);
  padding-block: var(--space-lg);
  border-top: 1px solid var(--border);
  align-items: start;
}
.process-item:last-child{ border-bottom: 1px solid var(--border); }
.process-num{
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--teal);
  font-weight: 700;
}
.process-item h3{
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--blue-ink);
}
.process-item ul{ display: grid; gap: .5em; }
.process-item li{ color: var(--text-muted); font-size: var(--fs-sm); padding-left: 1.3em; position: relative; }
.process-item li::before{
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad-brand);
}

@media (max-width: 760px){
  .process-item{ grid-template-columns: 40px 1fr; }
  .process-item ul{ grid-column: 2 / 3; }
}

/* ==========================================================================
   Diferenciais
   ========================================================================== */
.diff-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.diff-card{
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: left;
  transition: transform var(--dur-normal) var(--ease-out), box-shadow var(--dur-normal);
}
.diff-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-2); }
.diff-card .icon-badge{
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  color: var(--teal);
  margin-bottom: var(--space-md);
}
.diff-card .icon-badge svg{ width: 22px; height: 22px; }
.diff-card h3{
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--blue-ink);
  margin-bottom: .5em;
}
.diff-card p{ color: var(--text-muted); font-size: var(--fs-sm); }

@media (max-width: 1080px){ .diff-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .diff-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px){ .diff-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Brand strip (marcas parceiras) + clients grid
   ========================================================================== */
.chip-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .7em;
}
.chip{
  display: inline-flex;
  align-items: center;
  padding: .8em 1.3em;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--blue-ink);
  transition: transform var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.chip:hover{ transform: translateY(-3px); border-color: var(--teal); box-shadow: var(--shadow-1); }
.chip.alt{ background: var(--surface-tint); }

.section-alt{ background: var(--bg-alt); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  background: var(--grad-dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: var(--green);
  opacity: .18;
  filter: blur(90px);
  top: -30%; right: -10%;
}
.cta-band .eyebrow{ color: var(--green); justify-content: center; }
.cta-band .eyebrow::before{ background: var(--green); }
.cta-band h2{
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  max-width: 26ch;
  margin-inline: auto;
  position: relative;
}
.cta-band p{ margin-top: var(--space-sm); color: rgba(255,255,255,0.78); font-size: var(--fs-lg); max-width: 60ch; margin-inline: auto; position: relative; }
.cta-band .hero-actions{ display: flex; flex-wrap: wrap; justify-content: center; margin-top: var(--space-lg); position: relative; }
.cta-promise{
  position: relative;
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: left;
}
.cta-promise li{
  display: flex;
  gap: .7em;
  padding: var(--space-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
}
.cta-promise svg{ flex-shrink: 0; width: 20px; height: 20px; color: var(--green); margin-top: .1em; }

@media (max-width: 820px){ .cta-promise{ grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ max-width: 820px; }
.faq-item{
  border-top: 1px solid var(--border);
  padding-block: var(--space-md);
}
.faq-item:last-child{ border-bottom: 1px solid var(--border); }
.faq-item summary{
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--blue-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform var(--dur-normal);
  flex-shrink: 0;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ color: var(--text-muted); margin-top: var(--space-sm); max-width: 66ch; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-grid > *{ min-width: 0; }
.contact-info h2{
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue-ink);
  margin-bottom: var(--space-sm);
}
.contact-info p{ color: var(--text-muted); font-size: var(--fs-lg); max-width: 46ch; }
.contact-list{ margin-top: var(--space-lg); display: grid; gap: var(--space-md); }
.contact-list li{ display: flex; gap: var(--space-sm); align-items: center; }
.contact-list .icon-badge{
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--teal);
  flex-shrink: 0;
}
.contact-list .icon-badge svg{ width: 20px; height: 20px; }
.contact-list b{ display: block; font-size: var(--fs-sm); color: var(--blue-ink); }
.contact-list span{ color: var(--text-faint); font-size: var(--fs-xs); }

.contact-form{
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  display: grid;
  gap: var(--space-md);
}
.field{ display: grid; gap: .5em; min-width: 0; }
.field label{ font-size: var(--fs-xs); color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.field input, .field textarea, .field select{
  width: 100%;
  min-width: 0;
  padding: .9em 1.1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--teal); outline: none; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-note{ font-size: var(--fs-xs); color: var(--text-faint); }

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .field-row{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--grad-dark);
  color: rgba(255,255,255,0.85);
  padding-block: var(--space-xl) var(--space-lg);
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}
.footer-brand img{ height: 30px; filter: brightness(0) invert(1); }
.footer-brand p{ color: rgba(255,255,255,0.65); margin-top: var(--space-sm); max-width: 34ch; }
.footer-col h4{
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-md);
}
.footer-col ul{ display: grid; gap: .8em; }
.footer-col a{ color: rgba(255,255,255,0.75); font-size: var(--fs-sm); transition: color var(--dur-fast); }
.footer-col a:hover{ color: #fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-xs);
}

@media (max-width: 860px){ .footer-top{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .footer-top{ grid-template-columns: 1fr; } }

/* ---- back to top ---- */
.to-top{
  position: fixed;
  right: var(--space-md);
  bottom: calc(var(--space-md) + 72px);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  display: grid; place-items: center;
  color: var(--blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--dur-normal) var(--ease-out);
  z-index: 60;
}
.to-top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ---- WhatsApp floating button ---- */
.whatsapp-float{
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(6, 30, 20, 0.35);
  z-index: 70;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.whatsapp-float::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #25D366;
  opacity: .55;
  animation: whatsapp-pulse 2.4s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 16px 34px rgba(6, 30, 20, 0.42);
}
@keyframes whatsapp-pulse{
  0%{ transform: scale(1); opacity: .5; }
  100%{ transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float::before{ animation: none; display: none; }
}
@media (max-width: 560px){
  .whatsapp-float{ width: 54px; height: 54px; right: var(--space-sm); bottom: var(--space-sm); }
  .to-top{ right: var(--space-sm); bottom: calc(var(--space-sm) + 64px); width: 42px; height: 42px; }
}

/* ==========================================================================
   Logo wall (real client / brand logos as images)
   ========================================================================== */
.logo-wall{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}
.logo-tile{
  min-width: 0;
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.logo-tile:hover{ transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--teal); }
.logo-tile img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-tile.chip-text{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--blue-ink);
  text-align: center;
}
.logo-tile.alt{ background: var(--surface); }

@media (max-width: 980px){ .logo-wall{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 620px){ .logo-wall{ grid-template-columns: repeat(3, 1fr); } }

/* Section banner image (marcas parceiras etc.) */
.section-banner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xl);
}
.section-banner img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
}
.section-banner .section-head{ margin-bottom: 0; }

@media (max-width: 900px){
  .section-banner{ grid-template-columns: 1fr; }
  .section-banner .banner-img{ order: -1; }
}

/* ==========================================================================
   Photo gallery (fotos reais de eventos / resultados)
   ========================================================================== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.gallery-card{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.gallery-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.gallery-card:hover img{ transform: scale(1.06); }
.gallery-card .cap{
  position: absolute; inset: auto 0 0 0;
  padding: var(--space-md) var(--space-sm) var(--space-sm);
  background: linear-gradient(0deg, rgba(3,20,45,0.88), transparent 75%);
  color: #fff;
}
.gallery-card .cap b{ display: block; font-family: var(--font-display); font-size: var(--fs-sm); }
.gallery-card .cap span{ font-size: var(--fs-xs); opacity: .8; }
.gallery-card.wide{ grid-column: span 2; aspect-ratio: 16 / 11; }

@media (max-width: 980px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-card.wide{ grid-column: span 2; }
}
@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; }
  .gallery-card.wide{ grid-column: span 1; }
}

/* Process gallery strip (como funciona) */
.process-gallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.process-gallery img{
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  aspect-ratio: 4 / 3.4;
}
@media (max-width: 820px){
  .process-gallery{ grid-template-columns: 1fr 1fr; }
  .process-gallery img:last-child{ grid-column: span 2; aspect-ratio: 16/8; }
}
@media (max-width: 540px){
  .process-gallery{ grid-template-columns: 1fr; }
  .process-gallery img:last-child{ grid-column: span 1; aspect-ratio: 4/3; }
}

/* CTA band with background photo */
.cta-band.with-bg{
  background-image: linear-gradient(160deg, rgba(6,38,76,0.93) 0%, rgba(3,59,120,0.9) 55%, rgba(10,63,94,0.9) 100%), var(--cta-bg-img);
  background-size: cover;
  background-position: center;
}

/* Quem somos supporting image */
.about-media{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}
.about-media img{ width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
@media (max-width: 700px){ .about-media img{ aspect-ratio: 4/3; } }
