/* ============================================================
   SITE DESENVOLVIDO PELA AGÊNCIA LEÃO
   Estratégia, Criação e Performance Digital
   Vitória - ES | Tel/WhatsApp: +55 (27) 99885-3705
   https://www.leaoagenciaweb.com.br
   ============================================================ */
/* ============================================================
   AGÊNCIA LEÃO — DESIGN SYSTEM
   style.css v3.7 — Correção definitiva do Hero da Home
   Conceito: SOMOS FERA EM CAMPO.
   
   PALETA ORIGINAL EXTRAÍDA DO LOGO ATUAL:
   • Azul Leão:     #107293 (base institucional)
   • Teal Leão:     #189DAA (variação luminosa)
   • Carvão:        #141414 (fundo principal)
   • Branco:        #FFFFFF (texto sobre escuro)
   ============================================================ */

/* ------------------------------------------------------------
   IMPORTS — Google Fonts
   ------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&family=DM+Sans:wght@300;400;500;700&family=DM+Mono:wght@400;500&display=swap');

/* ------------------------------------------------------------
   CSS CUSTOM PROPERTIES — TOKENS DO DESIGN
   ------------------------------------------------------------ */
:root {
  /* ---- CORES PRINCIPAIS — PALETA REAL DA MARCA LEÃO ---- */

  /* Azul/Teal Leão — extraídos do logo atual do site */
  --leao-blue:          #107293;   /* base institucional */
  --leao-teal:          #189DAA;   /* variação luminosa */
  --leao-blue-dark:     #0D689C;   /* profundidade e contraste */
  --leao-teal-light:    #22B8C7;   /* hover e brilho */
  --leao-blue-subtle:   rgba(16, 114, 147, 0.12);
  --leao-teal-subtle:   rgba(24, 157, 170, 0.12);
  --leao-teal-glow:     rgba(24, 157, 170, 0.25);

  /* Aliases de compatibilidade: o HTML/CSS gerado usa "orange".
     Mantemos os nomes para não quebrar classes, mas apontando para a paleta original. */
  --leao-orange:        var(--leao-teal);
  --leao-orange-light:  var(--leao-teal-light);
  --leao-orange-dark:   var(--leao-blue-dark);
  --leao-orange-subtle: var(--leao-teal-subtle);
  --leao-orange-glow:   var(--leao-teal-glow);

  /* Carvão / Escuros — do mais escuro ao mais claro */
  --leao-black:      #141414;   /* fundo principal (carvão profundo) */
  --leao-black-80:   #1E1E1E;   /* superfícies elevadas */
  --leao-black-60:   #282828;   /* cards, blocos */
  --leao-black-40:   #3A3A3A;   /* bordas, separadores */
  --leao-black-20:   #555555;   /* texto terciário sobre escuro */

  /* Transparências brancas — texto e bordas sobre fundos escuros */
  --leao-white:       #FFFFFF;
  --leao-white-90:    rgba(255,255,255,0.90);
  --leao-white-70:    rgba(255,255,255,0.70);
  --leao-white-40:    rgba(255,255,255,0.40);
  --leao-white-20:    rgba(255,255,255,0.20);
  --leao-white-10:    rgba(255,255,255,0.10);
  --leao-white-06:    rgba(255,255,255,0.06);

  /* Claro — para seções de contraste (complemento discreto) */
  --leao-light:       #F4F4F4;   /* fundo de seção clara — cinza neutro quase branco */
  --leao-light-dark:  #E4E4E4;   /* borda sobre fundo claro */

  /* Funcional */
  --leao-green:       #2D7D4F;
  --leao-red:         #C0392B;

  /* ---- TIPOGRAFIA ---- */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
  --font-mono:      'DM Mono', 'Courier New', monospace;

  /* Escala tipográfica responsiva */
  --text-hero:  clamp(52px, 7vw, 96px);
  --text-h1:    clamp(40px, 5vw, 64px);
  --text-h2:    clamp(28px, 4vw, 48px);
  --text-h3:    clamp(20px, 2.5vw, 28px);
  --text-h4:    18px;
  --text-lg:    18px;
  --text-body:  16px;
  --text-sm:    14px;
  --text-xs:    13px;
  --text-mono:  13px;

  /* ---- ESPAÇAMENTOS ---- */
  --space-section: clamp(80px, 10vw, 140px);
  --space-block:   clamp(48px, 6vw, 80px);
  --space-item:    clamp(24px, 3vw, 40px);

  /* ---- LAYOUT ---- */
  --container:     1280px;
  --container-pad: clamp(20px, 5vw, 80px);
  --grid-gap:      clamp(16px, 2vw, 24px);

  /* ---- TRANSIÇÕES ---- */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  --transition:     0.3s var(--ease);
  --transition-slow:0.6s var(--ease-out);

  /* ---- Z-INDEX ---- */
  --z-nav:    100;
  --z-overlay:200;
  --z-modal:  300;
}

/* ------------------------------------------------------------
   RESET E BASE
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--leao-white);
  background-color: var(--leao-black);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ------------------------------------------------------------
   TIPOGRAFIA
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

p { max-width: 680px; line-height: 1.7; }

/* Utilitários */
.text-hero  { font-size: var(--text-hero); font-family: var(--font-display); font-weight: 900; line-height: 0.96; }
.text-h1    { font-size: var(--text-h1); }
.text-h2    { font-size: var(--text-h2); }
.text-h3    { font-size: var(--text-h3); }
.text-body  { font-size: var(--text-body); }
.text-lg    { font-size: var(--text-lg); }
.text-sm    { font-size: var(--text-sm); }
.text-mono  { font-family: var(--font-mono); font-size: var(--text-mono); letter-spacing: 0.04em; }

.text-white     { color: var(--leao-white); }
.text-white-70  { color: var(--leao-white-70); }
.text-white-40  { color: var(--leao-white-40); }
.text-orange    { color: var(--leao-orange); }
.text-orange-dk { color: var(--leao-orange-dark); }
.text-black     { color: var(--leao-black); }
.text-muted     { color: var(--leao-black-20); }

.italic     { font-style: italic; }
.weight-900 { font-weight: 900; }

/* Tag/Label mono */
.leao-tag,
.tag:not(body) {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid currentColor;
}
.tag--orange:not(body) { color: var(--leao-orange); border-color: var(--leao-orange-subtle); }
.tag--orange-dk:not(body) { color: var(--leao-orange-dark); background: rgba(181,90,24,0.08); border-color: rgba(181,90,24,0.2); }
.tag--white:not(body) { color: var(--leao-white-70); border-color: var(--leao-white-20); }
.tag--dark:not(body) { color: var(--leao-white-70); border-color: var(--leao-white-10); background: var(--leao-white-06); }
.tag--gold:not(body) { color: var(--leao-orange); border-color: var(--leao-orange-subtle); }

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section         { padding: var(--space-section) 0; }
.section--dark   { background: var(--leao-black); color: var(--leao-white); }
.section--mid    { background: var(--leao-black-80); color: var(--leao-white); }
.section--light  { background: var(--leao-light); color: var(--leao-black); }
.section--white  { background: var(--leao-white); color: var(--leao-black); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--grid-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--grid-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--grid-gap); }

/* ------------------------------------------------------------
   BOTÕES
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  transition: all var(--transition);
  white-space: nowrap;
}

/* Primário — Azul/Teal Leão */
.btn--primary {
  background: var(--leao-orange);
  color: var(--leao-white);
  border: 1px solid var(--leao-orange);
}
.btn--primary:hover {
  background: var(--leao-orange-light);
  border-color: var(--leao-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--leao-orange-glow);
}
.btn--primary:active { transform: translateY(0); }

/* Ghost escuro — sobre fundo preto/carvão */
.btn--ghost-dark {
  background: transparent;
  color: var(--leao-white);
  border: 1px solid var(--leao-white-20);
}
.btn--ghost-dark:hover {
  border-color: var(--leao-orange);
  color: var(--leao-orange);
}

/* Ghost claro — sobre fundo branco/cinza */
.btn--ghost-light {
  background: transparent;
  color: var(--leao-black);
  border: 1px solid var(--leao-black-40);
}
/* Ghost marca — para seções escuras com chamada secundária */
.btn--ghost-brand {
  background: transparent;
  color: var(--leao-orange);
  border: 1px solid var(--leao-orange);
}

.btn--ghost-brand:hover {
  background: var(--leao-orange);
  color: var(--leao-white);
  border-color: var(--leao-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--leao-orange-glow);
}

.btn--ghost-brand svg {
  color: currentColor;
}
.btn--ghost-light:hover {
  background: var(--leao-black);
  color: var(--leao-white);
  border-color: var(--leao-black);
}

/* Link com seta */
.btn--link {
  padding: 0;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leao-orange);
  border: none;
  gap: 8px;
  transition: gap var(--transition), color var(--transition);
}
.btn--link:hover { gap: 14px; color: var(--leao-orange-light); }
.btn--link--dark  { color: var(--leao-black); }
.btn--link--dark:hover { color: var(--leao-orange-dark); gap: 14px; }

.btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
   NAVEGAÇÃO PRINCIPAL
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.nav--transparent { background: transparent; }

.nav--scrolled {
  background: var(--leao-black);
  box-shadow: 0 1px 0 var(--leao-white-10);
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 10;
}
.nav__logo img {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}
.nav__logo-svg { height: 36px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__item { position: relative; }

.nav__link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--leao-white-70);
  transition: color var(--transition);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--leao-orange);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--leao-white); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--leao-black-60);
  border: 1px solid var(--leao-white-10);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leao-white-70);
  transition: color var(--transition), background var(--transition), padding var(--transition);
  border-left: 2px solid transparent;
}
.nav__dropdown-link:hover {
  color: var(--leao-orange);
  background: var(--leao-white-06);
  border-left-color: var(--leao-orange);
  padding-left: 24px;
}

.nav__chevron {
  width: 10px; height: 10px;
  transition: transform var(--transition);
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

.nav__cta { display: flex; align-items: center; gap: 20px; }

.nav__tel {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--leao-white-40);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.nav__tel:hover { color: var(--leao-orange); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.nav__toggle-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--leao-white);
  transition: all var(--transition);
  transform-origin: center;
}
.nav__toggle.open .nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open .nav__toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open .nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  position: fixed; inset: 0;
  background: var(--leao-black);
  z-index: calc(var(--z-nav) - 1);
  padding: 100px var(--container-pad) 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: all var(--transition-slow);
  overflow-y: auto;
}
.nav__mobile.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  color: var(--leao-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--leao-white-10);
  transition: color var(--transition), padding var(--transition);
  display: block;
}
.nav__mobile-link:hover { color: var(--leao-orange); padding-left: 12px; }

.nav__mobile-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leao-white-40);
  padding: 10px 0 10px 16px;
  display: block;
  transition: color var(--transition);
  border-bottom: 1px solid var(--leao-white-06);
}
.nav__mobile-sub:hover { color: var(--leao-orange); }

.nav__mobile-footer {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav__mobile-tel {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--leao-white);
}
.nav__mobile-social { display: flex; gap: 20px; margin-top: 8px; }
.nav__mobile-social a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--leao-white-40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.nav__mobile-social a:hover { color: var(--leao-orange); }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 118px;
  padding-bottom: clamp(130px, 12vw, 175px);
  overflow: hidden;
  background: var(--leao-black);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.98) 0%, rgba(20,20,20,0.88) 30%, rgba(20,20,20,0.56) 58%, rgba(20,20,20,0.34) 100%),
    linear-gradient(to bottom, rgba(20,20,20,0.30) 0%, rgba(20,20,20,0.38) 48%, rgba(20,20,20,0.86) 100%);
  z-index: 1;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero com imagens reais em modo esmaecido, porém visível */
.hero__bg--carousel {
  background:
    radial-gradient(circle at 72% 38%, rgba(24,157,170,0.24), transparent 36%),
    radial-gradient(circle at 20% 55%, rgba(24,157,170,0.10), transparent 34%),
    linear-gradient(135deg, #141414 0%, #0d2027 48%, #141414 100%);
}

.hero__media-slide {
  position: absolute;
  inset: 0;
  width: absolute;
  height;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.78) contrast(1.08) saturate(1.02);
  mix-blend-mode: normal;
  animation: heroImageFade 36s linear infinite both;
  will-change: opacity, transform;
}

.hero__media-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.94) 0%, rgba(20,20,20,0.66) 34%, rgba(20,20,20,0.36) 64%, rgba(20,20,20,0.22) 100%),
    radial-gradient(circle at 72% 36%, rgba(24,157,170,0.16), transparent 34%);
}

/* Ordem oficial do Hero da Home.
   As imagens são forçadas aqui para evitar cache antigo ou style inline herdado. */
.hero__media-slide:nth-of-type(1),
.hero__media-slide--1 {
  animation-delay: 0s;
  background-image: url('../img/hero/hero-leao-rugido.webp') !important;
  background-position: 79% center;
}
.hero__media-slide:nth-of-type(2),
.hero__media-slide--2 {
  animation-delay: 7s;
  background-image: url('../img/hero/hero-agencialeao.webp') !important;
  background-position: center right;
}
.hero__media-slide:nth-of-type(3),
.hero__media-slide--3 {
  animation-delay: 14s;
  background-image: url('../img/hero/hero-elementus.webp') !important;
  background-position: center center;
}
.hero__media-slide:nth-of-type(4),
.hero__media-slide--4 {
  animation-delay: 21s;
  background-image: url('../img/hero/hero-dualclin.webp') !important;
  background-position: center center;
}
.hero__media-slide:nth-of-type(5),
.hero__media-slide--5 {
  animation-delay: 28s;
  background-image: url('../img/hero/hero-philcoffee.webp') !important;
  background-position: center center;
}
.hero__media-slide:nth-of-type(6),
.hero__media-slide--6 {
  animation-delay: 35s;
  background-image: url('../img/hero/hero-gemat.webp') !important;
  background-position: center right;
}

.hero__brand-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16,114,147,0.10) 0%, transparent 45%),
    radial-gradient(circle at 74% 24%, rgba(24,157,170,0.14), transparent 30%),
    linear-gradient(to bottom, rgba(20,20,20,0.08), rgba(20,20,20,0.48));
  z-index: 1;
  pointer-events: none;
}

@keyframes heroImageFade {
  0%   { opacity: 0; transform: scale(1.08) translateX(1.2%); }
  3%   { opacity: 0.86; }
  14%  { opacity: 0.86; transform: scale(1.025) translateX(-1.2%); }
  18%  { opacity: 0; transform: scale(1.00) translateX(-2.2%); }
  100% { opacity: 0; transform: scale(1.00) translateX(-2.2%); }
}

/* Grain de filme — alinha com estética Instagram */
.hero__grain {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Linha vertical azul/teal — marca registrada do conceito */
.hero__line {
  position: absolute;
  left: var(--container-pad);
  top: 50%;
  transform: translateY(-50%);
  width: 2px; height: 0;
  background: linear-gradient(to bottom, transparent, var(--leao-orange), transparent);
  z-index: 3;
  animation: lineGrow 1.4s var(--ease-out) 0.6s forwards;
}
@keyframes lineGrow { to { height: 200px; } }

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  padding-left: calc(var(--container-pad) + 28px);
  transform: translateY(22px);
}

.hero__tag {
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.95;
  color: var(--leao-white);
  margin-bottom: 32px;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--leao-orange);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--leao-white-70);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__ctas {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px; right: var(--container-pad);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.4s forwards;
}
.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leao-white-40);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--leao-orange), transparent);
  animation: scrollPulse 2s ease-in-out 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

/* Estatísticas rodapé do hero */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  border-top: 1px solid var(--leao-white-10);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  opacity: 0;
  animation: fadeIn 0.8s var(--ease-out) 1.2s forwards;
}

.hero__stat {
  padding: 24px var(--container-pad);
  border-right: 1px solid var(--leao-white-10);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hero__stat:last-child { border-right: none; }

.hero__stat-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leao-white-40);
  margin-bottom: 2px;
}

.hero__stat-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--leao-orange);
  margin-bottom: 4px;
  opacity: 0.98;
}
.hero__stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.hero__stat-icon--brasil .flag-frame,
.hero__stat-icon--brasil .flag-diamond,
.hero__stat-icon--brasil .flag-circle,
.hero__stat-icon--brasil .flag-band {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__stat-icon--brasil .flag-frame {
  stroke-width: 2.2;
  fill: rgba(24,157,170,0.05);
}
.hero__stat-icon--brasil .flag-diamond {
  stroke-width: 2;
  opacity: 0.9;
}
.hero__stat-icon--brasil .flag-circle {
  stroke-width: 2;
  opacity: 0.82;
}
.hero__stat-icon--brasil .flag-band {
  stroke-width: 1.6;
  opacity: 0.62;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--leao-orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-number--text {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 32px);
  letter-spacing: -0.02em;
}
.hero__stat-number--infinity {
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.72;
  margin-bottom: 12px;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leao-white-40);
}

/* ------------------------------------------------------------
   SEÇÃO ABOUT SPLIT
   ------------------------------------------------------------ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-split__visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  background: var(--leao-black);
}

.about-split__img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.92) contrast(1.04) brightness(0.88);
}

@media (max-width: 900px) {
  .about-split__visual-image,
  .about-split__img {
    min-height: 360px;
  }
}

.about-split__visual {
  position: relative;
  overflow: hidden;
  background: var(--leao-black-60);
  min-height: 500px;
}
.about-split__visual-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-split:hover .about-split__visual-img { transform: scale(1.03); }

.about-split__visual-placeholder {
  width: 100%; height: 100%;
  min-height: 500px;
  background: var(--leao-black-60);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-split__visual-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--leao-orange-subtle) 0%, transparent 60%);
}

.about-split__content {
  padding: clamp(48px,6vw,96px) clamp(40px,5vw,80px);
  background: var(--leao-light);
  color: var(--leao-black);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__tag { margin-bottom: 24px; }

.about-split__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--leao-black);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 100%;
}
.about-split__title em {
  font-style: italic;
  color: var(--leao-orange-dark);
}

.about-split__text {
  font-size: var(--text-lg);
  color: #444444;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.about-split__text strong { color: var(--leao-black); font-weight: 700; }

/* ------------------------------------------------------------
   SERVIÇOS
   ------------------------------------------------------------ */
.services-section { background: var(--leao-black); padding: var(--space-section) 0; }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px,6vw,80px);
  gap: 40px;
  flex-wrap: wrap;
}
.services-header__desc {
  font-size: var(--text-body);
  color: var(--leao-white-40);
  line-height: 1.7;
  max-width: 360px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--leao-white-10);
}

.service-card {
  background: var(--leao-black);
  padding: clamp(32px,4vw,56px) clamp(24px,3vw,40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--leao-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--leao-black-80); }

.service-card__number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--leao-orange);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.service-card:hover .service-card__number { opacity: 1; }

.service-card__icon {
  width: 40px; height: 40px;
  color: var(--leao-orange);
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__title {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--leao-white);
  line-height: 1.2;
  transition: color var(--transition);
}
.service-card:hover .service-card__title { color: var(--leao-orange-light); }

.service-card__text {
  font-size: var(--text-body);
  color: var(--leao-white-40);
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--leao-orange);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card:hover .service-card__link { gap: 14px; }
.service-card__arrow { transition: transform var(--transition); }
.service-card:hover .service-card__arrow { transform: translateX(4px); }

/* ------------------------------------------------------------
   PORTFÓLIO PREVIEW
   ------------------------------------------------------------ */
.portfolio-section { background: var(--leao-black-80); padding: var(--space-section) 0; }

.section-header { margin-bottom: clamp(40px,5vw,72px); }
.section-header__tag { margin-bottom: 20px; }
.section-header__title {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--leao-white);
  max-width: 600px;
}
.section-header__title.on-light { color: var(--leao-black); }
.section-header__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.portfolio-item:nth-child(1) { grid-column: span 7; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 4; }
.portfolio-item:nth-child(4) { grid-column: span 4; }
.portfolio-item:nth-child(5) { grid-column: span 4; }

.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--leao-black-40);
  cursor: pointer;
}
.portfolio-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  /* Filtro que imita a estética Instagram: escuro + contraste */
  filter: brightness(0.85) contrast(1.05);
}
.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.05);
  filter: brightness(0.75) contrast(1.1);
}

.portfolio-item__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }

.portfolio-item__info {
  transform: translateY(16px);
  transition: transform 0.4s var(--ease);
}
.portfolio-item:hover .portfolio-item__info { transform: translateY(0); }

.portfolio-item__category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--leao-orange);
  display: block;
  margin-bottom: 6px;
}
.portfolio-item__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--leao-white);
  line-height: 1.2;
}

/* ------------------------------------------------------------
   DIFERENCIAIS
   ------------------------------------------------------------ */
.differentials-section { background: var(--leao-light); padding: var(--space-section) 0; color: var(--leao-black); }

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px);
  align-items: center;
}

.differentials-quote {
  font-family: var(--font-display);
  font-size: clamp(22px,3.5vw,38px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--leao-black);
  padding-left: 28px;
  border-left: 3px solid var(--leao-orange);
  margin-bottom: 32px;
}

.differentials-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 28px;
}
.differentials-author-line {
  width: 32px; height: 1px;
  background: var(--leao-orange);
}
.differentials-author-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666666;
}

.differentials-list { display: flex; flex-direction: column; }

.differential-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--leao-light-dark);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.differential-item:first-child { border-top: 1px solid var(--leao-light-dark); }

.differential-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--leao-orange);
  padding-top: 4px;
}
.differential-item__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--leao-black);
  margin-bottom: 8px;
}
.differential-item__text {
  font-size: var(--text-body);
  color: #555555;
  line-height: 1.7;
  max-width: 100%;
}

/* ------------------------------------------------------------
   DEPOIMENTOS
   ------------------------------------------------------------ */
   .testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--leao-orange);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.testimonials-section { background: var(--leao-black); padding: var(--space-section) 0; overflow: hidden; }

.testimonials-track-wrapper { overflow: hidden; margin: 0 calc(-1 * var(--container-pad)); }
.testimonials-track {
  display: flex;
  gap: 24px;
  padding: 0 var(--container-pad);
  transition: transform 0.6s var(--ease);
}

.testimonial-card {
  flex-shrink: 0;
  width: clamp(300px, 40vw, 520px);
  background: var(--leao-black-60);
  border: 1px solid var(--leao-white-10);
  border-left: 3px solid var(--leao-orange);
  padding: clamp(28px,3vw,48px);
  position: relative;
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.8;
  color: var(--leao-orange);
  opacity: 0.25;
  margin-bottom: 20px;
  display: block;
}

.testimonial-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px,2vw,20px);
  color: var(--leao-white-90);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 100%;
}

.testimonial-card__author { display: flex; align-items: center; gap: 16px; }

.testimonial-card__author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--leao-orange-subtle);
  border: 1px solid var(--leao-orange);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--leao-orange);
}

.testimonial-card__author-name {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  color: var(--leao-white); line-height: 1.3;
}
.testimonial-card__author-role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--leao-white-40); margin-top: 2px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.testimonials-nav__btn {
  width: 44px; height: 44px;
  border: 1px solid var(--leao-white-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--leao-white-70);
  transition: all var(--transition);
  cursor: pointer; background: transparent;
}
.testimonials-nav__btn:hover {
  border-color: var(--leao-orange);
  color: var(--leao-orange);
}
.testimonials-nav__dots { display: flex; gap: 8px; margin-left: 8px; }
.testimonials-nav__dot {
  width: 6px; height: 6px;
  background: var(--leao-white-20);
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.testimonials-nav__dot.active {
  background: var(--leao-orange);
  width: 24px;
}

/* ------------------------------------------------------------
   BLOG PREVIEW
   ------------------------------------------------------------ */
.blog-preview-section { background: var(--leao-black-80); padding: var(--space-section) 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--grid-gap);
}

.blog-card {
  background: var(--leao-black-60);
  border: 1px solid var(--leao-white-10);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: block;
}
.blog-card:hover {
  border-color: var(--leao-orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14,14,14,0.5);
}

.blog-card--featured { display: grid; grid-template-rows: 320px 1fr; }

.blog-card__img-wrap { overflow: hidden; background: var(--leao-black-40); }
.blog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  /* Mesmo tratamento dark/editorial das fotos do Instagram */
  filter: brightness(0.82) contrast(1.08);
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
  filter: brightness(0.72) contrast(1.12);
}

.blog-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
}

.blog-card__content { padding: 28px 32px 32px; }
.blog-card--featured .blog-card__content { padding: 32px 40px 40px; }

.blog-card__tag { margin-bottom: 16px; }

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px,2.5vw,26px);
  font-weight: 700;
  color: var(--leao-white);
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--leao-orange-light); }

.blog-card__excerpt {
  font-size: var(--text-body);
  color: var(--leao-white-40);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 100%;
}

.blog-card__meta { display: flex; align-items: center; gap: 16px; }
.blog-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--leao-white-40);
  letter-spacing: 0.08em;
}

.blog-sidebar { display: flex; flex-direction: column; gap: var(--grid-gap); }

.blog-card--small {
  display: grid;
  grid-template-columns: 96px 1fr;
  height: auto;
}
.blog-card--small .blog-card__img-wrap { height: 100%; min-height: 100px; }
.blog-card--small .blog-card__content { padding: 20px; }
.blog-card--small .blog-card__title { font-size: 15px; margin-bottom: 8px; }
.blog-card--small .blog-card__excerpt { display: none; }

/* ------------------------------------------------------------
   CTA BANNER FINAL
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--leao-orange);
  padding: clamp(64px,8vw,120px) 0;
  position: relative;
  overflow: hidden;
}
/* Textura sutil sobre a cor principal */
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__title {
  font-size: clamp(28px,4vw,52px);
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--leao-white);
  line-height: 1.0;
  margin-bottom: 16px;
}
.cta-banner__title em { font-style: italic; }

.cta-banner__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.cta-banner__action { flex-shrink: 0; }

.btn--cta-dark {
  background: var(--leao-black);
  color: var(--leao-white);
  border: 1px solid var(--leao-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}
.btn--cta-dark:hover {
  background: transparent;
  color: var(--leao-white);
  border-color: var(--leao-white);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------
   PÁGINA 404
   ------------------------------------------------------------ */
.leao-404 {
  min-height: 72vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(24, 157, 170, 0.18), transparent 34%),
    linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  color: #fff;
  display: flex;
  align-items: center;
}

.leao-404__section {
  width: 100%;
  padding: clamp(140px, 18vw, 220px) 0 clamp(90px, 10vw, 140px);
}
.leao-404__icon {
  width: clamp(68px, 8vw, 104px);
  height: clamp(68px, 8vw, 104px);
  color: var(--leao-orange);
  margin-bottom: 28px;
  opacity: 0.95;
  filter: drop-shadow(0 12px 32px rgba(24, 157, 170, 0.18));
}

.leao-404__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.leao-404__title {
  max-width: 760px;
  margin: 24px 0 20px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.leao-404__text {
  max-width: 620px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.leao-404__actions {
  margin-top: 34px;
}

@media (max-width: 760px) {
  .leao-404__section {
    padding-top: 120px;
  }

  .leao-404__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------
   RODAPÉ
   ------------------------------------------------------------ */
.footer {
  background: var(--leao-black);
  padding: clamp(64px,8vw,100px) 0 0;
  border-top: 1px solid var(--leao-white-10);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px,4vw,60px);
  padding-bottom: clamp(48px,6vw,80px);
  border-bottom: 1px solid var(--leao-white-10);
}

.footer__logo img {
  height: 56px;
  width: auto;
  max-width: 270px;
  object-fit: contain;
}

.footer__brand-desc {
  font-size: var(--text-body);
  color: var(--leao-white-40);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 28px;
  margin-top: 16px;
}

.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--leao-white-20);
  display: flex; align-items: center; justify-content: center;
  color: var(--leao-white-70);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: var(--leao-orange);
  color: var(--leao-orange);
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leao-white-40);
  margin-bottom: 20px;
}

.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-link {
  font-size: 14px;
  color: var(--leao-white-70);
  transition: color var(--transition), padding var(--transition);
}
.footer__nav-link:hover { color: var(--leao-white); padding-left: 8px; }

.footer__contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item { display: flex; flex-direction: column; gap: 2px; }
.footer__contact-label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--leao-white-20);
}
.footer__contact-value {
  font-size: 14px; color: var(--leao-white-70);
  transition: color var(--transition);
}
.footer__contact-value:hover { color: var(--leao-orange); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--leao-white-20);
  letter-spacing: 0.06em;
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--leao-white-20);
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer__bottom-link:hover { color: var(--leao-white-70); }

/* Portal do Cliente — link discreto no rodapé */
.leao-footer-portal-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(24, 157, 170, .42);
    border-radius: 999px;
    color: var(--leao-teal);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.leao-footer-portal-link svg {
    flex: 0 0 auto;
    color: currentColor;
    opacity: 1;
}

.leao-footer-portal-link:hover {
    color: #FFFFFF;
    border-color: rgba(24, 157, 170, .75);
    background: rgba(24, 157, 170, .12);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .leao-footer-portal-link {
        margin-top: 8px;
    }
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: var(--z-overlay);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ------------------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ------------------------------------------------------------
   KEYFRAMES GLOBAIS
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Divisória decorativa */
.divider {
  width: 48px; height: 2px;
  background: var(--leao-orange);
  margin: 24px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   RESPONSIVIDADE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__visual { min-height: 400px; max-height: 400px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .portfolio-item:nth-child(n) { grid-column: span 1; }
  .portfolio-item:nth-child(1) { grid-column: span 2; }
  .portfolio-item:nth-child(4) { grid-column: span 2; }
  .differentials-grid { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__menu { display: none; }
  .nav__cta .btn { display: none; }
  .nav__logo img { height: 44px; max-width: 210px; }
  .nav__toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio-item:nth-child(n) { grid-column: span 1; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__sub { margin: 0 auto; }
  .hero__scroll { display: none; }
  .hero__media-slide { inset: 0; opacity: 0; filter: brightness(0.68) contrast(1.08) saturate(1.02); background-position: center center; }
  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(20,20,20,0.88) 0%, rgba(20,20,20,0.72) 100%),
      linear-gradient(to bottom, rgba(20,20,20,0.22) 0%, rgba(20,20,20,0.60) 58%, rgba(20,20,20,0.92) 100%);
  }
  .footer__top { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero { padding-top: 88px; padding-bottom: 80px; min-height: 100vh; }
  .hero__stats { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .testimonial-card { width: 85vw; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ------------------------------------------------------------
   ACESSIBILIDADE
   ------------------------------------------------------------ */
:focus-visible {
  outline: 2px solid var(--leao-orange);
  outline-offset: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__media-slide {
    animation: none !important;
    opacity: 0.24;
    transform: none;
  }
  .hero__media-slide:not(:first-child) { display: none; }
}


/* ============================================================
   AJUSTE FINAL — FONTES OFICIAIS + HERO HOME v3.7
   ============================================================ */

:root {
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-hero,
.text-h1,
.text-h2,
.section-header__title,
.about-split__title,
.differentials-quote,
.testimonial-card__text,
.blog-card__title,
.cta-banner__title,
.footer__logo {
  font-family: var(--font-display);
}

.hero__title {
  font-family: var(--font-display) !important;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.hero__title em {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-weight: 900;
  color: var(--leao-orange);
}

.nav__link,
.nav__dropdown-link,
.nav__mobile-sub,
.btn,
.btn--cta-dark,
.service-card__title,
.differential-item__title,
.testimonial-card__author-name,
.footer__nav-link,
.footer__contact-value,
.hero__subtitle,
.about-split__text,
.service-card__text,
.blog-card__excerpt,
.cta-banner__sub {
  font-family: var(--font-body);
}

.tag,
.text-mono,
.nav__tel,
.hero__stat-kicker,
.hero__stat-label,
.service-card__number,
.service-card__link,
.portfolio-item__category,
.differentials-author-name,
.testimonial-card__author-role,
.blog-card__date,
.footer__col-title,
.footer__contact-label,
.footer__copy,
.footer__bottom-link {
  font-family: var(--font-mono);
}

/* ============================================================
   HERO HOME — CORREÇÃO FINAL DOS SLIDES
   ============================================================ */

.hero__bg,
.hero__bg--carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.78) contrast(1.08) saturate(1.02);
  mix-blend-mode: normal;
  animation: heroImageFade 36s linear infinite both;
  will-change: opacity, transform;
}

.hero__media-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20,20,20,0.98) 0%,
    rgba(20,20,20,0.92) 24%,
    rgba(20,20,20,0.62) 44%,
    rgba(20,20,20,0.30) 70%,
    rgba(20,20,20,0.16) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__media-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,20,20,0.16) 0%, rgba(20,20,20,0.36) 58%, rgba(20,20,20,0.82) 100%),
    radial-gradient(circle at 72% 36%, rgba(24,157,170,0.14), transparent 34%);
  z-index: 2;
  pointer-events: none;
}

.hero__media-slide--1 { animation-delay: 0s !important; }
.hero__media-slide--2 { animation-delay: 6s !important; }
.hero__media-slide--3 { animation-delay: 12s !important; }
.hero__media-slide--4 { animation-delay: 18s !important; }
.hero__media-slide--5 { animation-delay: 24s !important; }
.hero__media-slide--6 { animation-delay: 30s !important; }

@keyframes heroImageFade {
  0%    { opacity: 0; transform: scale(1.08) translateX(1%); }
  3%    { opacity: 0.86; }
  13%   { opacity: 0.86; transform: scale(1.03) translateX(-0.8%); }
  16.5% { opacity: 0; transform: scale(1.01) translateX(-1.4%); }
  100%  { opacity: 0; transform: scale(1.01) translateX(-1.4%); }
}

@media (min-width: 769px) {
  .hero__content {
    transform: translateY(22px);
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
    padding-top: 96px;
    padding-bottom: 90px;
  }

  .hero__content {
    padding-left: var(--container-pad);
    transform: translateY(8px);
  }

  .hero__media-slide {
    background-position: center center;
    filter: brightness(0.68) contrast(1.08) saturate(1.02);
  }
}
/* ============================================================
   MOBILE — HERO ESTÁTICO PARA PERFORMANCE
   Mantém slider no desktop e desativa no mobile
   ============================================================ */

@media (max-width: 768px) {
  .hero__media-slide {
    animation: none !important;
    transform: none !important;
    opacity: 0 !important;
  }

  .hero__media-slide--1 {
    display: block !important;
    opacity: 0.82 !important;
    transform: none !important;
    animation: none !important;
    background-position: 72% center;
    filter: brightness(0.68) contrast(1.08) saturate(1.02);
  }

  .hero__media-slide--2,
  .hero__media-slide--3,
  .hero__media-slide--4,
  .hero__media-slide--5,
  .hero__media-slide--6 {
    display: none !important;
  }

  .hero__media-slide--1::before {
    background: linear-gradient(
      90deg,
      rgba(20,20,20,0.96) 0%,
      rgba(20,20,20,0.88) 30%,
      rgba(20,20,20,0.58) 58%,
      rgba(20,20,20,0.28) 100%
    );
  }

  .hero__media-slide--1::after {
    background:
      linear-gradient(to bottom, rgba(20,20,20,0.18) 0%, rgba(20,20,20,0.42) 58%, rgba(20,20,20,0.86) 100%);
  }
}