/* ============================================================
   KA$CH EVENTOS — style.css
   Premium Dark Luxury · Mobile First
   ============================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --bg:            #1e1e1d;
  --gold:          #a5883c;
  --gold-light:    #c8a84b;
  --gold-dim:      #7a6329;
  --text-body:     #e7e7d6;
  --text-white:    #ffffff;
  --text-muted:    #8a8a7e;
  --glass-bg:      rgba(255,255,255,0.03);
  --glass-border:  rgba(165,136,60,0.18);
  --glow-color:    rgba(165,136,60,0.35);
  --glow-sm:       0 0 18px rgba(165,136,60,0.25);
  --glow-md:       0 0 35px rgba(165,136,60,0.30), 0 0 70px rgba(165,136,60,0.12);
  --glow-lg:       0 0 60px rgba(165,136,60,0.40), 0 0 120px rgba(165,136,60,0.15);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --font:          'Open Sans', sans-serif;
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; background: none; border: none; font-family: var(--font); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--gold); color: #000; }

/* ---- UTILITIES ---- */
.gold-text { color: var(--gold); }
.section-padded { padding: 120px 5vw; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.section-title-full {
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 64px;
  width: 100%;
}

/* ---- GLASS CARD ---- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.glass-card:hover {
  border-color: rgba(165,136,60,0.4);
  box-shadow: var(--glow-sm);
}
.glow-card {
  box-shadow: var(--glow-md);
  border-color: rgba(165,136,60,0.4);
}

/* ---- GLASS TAG ---- */
.glass-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  background: var(--glass-bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-body);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.glass-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow-sm);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold);
  color: #000;
  box-shadow: var(--glow-md);
}
.glow-btn {
  box-shadow: var(--glow-sm);
}
.glow-btn:hover {
  box-shadow: var(--glow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid rgba(231,231,214,0.2);
  border-radius: 50px;
  background: transparent;
  color: var(--text-body);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: var(--glow-sm);
}
.btn-hero:hover {
  background: var(--gold);
  color: #000;
  box-shadow: var(--glow-lg);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: #000;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: var(--glow-md);
}
.btn-whatsapp:hover {
  background: var(--gold-light);
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
}
.whatsapp-icon { width: 22px; height: 22px; flex-shrink: 0; }

.btn-arrow { transition: transform var(--transition); }
.btn-primary:hover .btn-arrow,
.btn-hero:hover .btn-arrow,
.btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up, .reveal-fade, .reveal-scale {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up { transform: translateY(50px); }
.reveal-scale { transform: scale(0.95); }
.reveal-fade { opacity: 0; }
.revealed.reveal-up, .revealed.reveal-fade, .revealed.reveal-scale {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 5vw;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(20,20,19,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 5vw;
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.nav-left { justify-content: flex-end; padding-right: 100px; }
.nav-right { justify-content: flex-start; padding-left: 100px; }

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 50px;
  color: var(--gold) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: #000 !important;
  box-shadow: var(--glow-sm);
}
.nav-cta::after { display: none !important; }

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  z-index: 2;
}
.nav-logo img{
  width: 100px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--gold);
  transition: text-shadow var(--transition);
}
.logo-dollar { color: var(--gold-light); }
.logo-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-logo:hover .logo-text { text-shadow: var(--glow-sm); }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: absolute;
  right: 0;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-body);
  transition: all var(--transition);
}
.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,19,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 9000;
  padding: 100px 5vw 40px;
  flex-direction: column;
  justify-content: flex-start;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.nav-mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-body);
  transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-menu .nav-cta { border: none !important; padding: 0 !important; font-size: 2rem; color: var(--gold) !important; }

/* Botão X de fechar dentro do menu */
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 5vw;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-mobile-close span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-body);
  position: absolute;
  transition: background var(--transition);
}
.nav-mobile-close span:nth-child(1) { transform: rotate(45deg); }
.nav-mobile-close span:nth-child(2) { transform: rotate(-45deg); }
.nav-mobile-close:hover span { background: var(--gold); }

/* ============================================================
   HERO — layout final
   Nome centralizado verticalmente, largura total, divide o hero
   Phone centrado 100% · Superior direito: headline · Inferior esq: desc · Inferior dir: stats
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg);
}

/* Gradiente de fundo elegante */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 62% 22%, rgba(95,72,18,0.52) 0%, transparent 58%),
    radial-gradient(ellipse 50% 60% at 20% 78%, rgba(55,42,12,0.30) 0%, transparent 52%),
    radial-gradient(ellipse 90% 40% at 50% 0%,  rgba(35,27,8,0.42)  0%, transparent 50%),
    linear-gradient(178deg, rgba(8,6,2,0.50) 0%, transparent 42%, rgba(6,5,1,0.40) 100%);
  z-index: 0;
}

/* ====================================================
   CAMADA 1 — Nome KA$CH
   top:50% + translateY(-50%) = centro exato do hero
   justify-content:space-between + flex:1 nas letras = largura total
   ==================================================== */
.hero-brand-name {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1vw;
  font-size: clamp(18vw, 22vw, 26vw);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  /* Isola stacking context para não afetar z-index dos filhos do hero */
  isolation: isolate;
  will-change: opacity;
}

.brand-letter {
  display: inline-block;
  flex: 1;
  text-align: center;
  background: linear-gradient(
    160deg,
    var(--gold-dim)   0%,
    var(--gold)       30%,
    var(--gold-light) 52%,
    var(--gold)       75%,
    var(--gold-dim)   100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  filter: drop-shadow(0 0 24px rgba(165,136,60,0.50));
}
.brand-letter.dollar {
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-light) 48%, #fff3c0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 36px rgba(200,168,75,0.70));
}
.brand-letter.revealed-letter {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   CAMADA 2 — Tablet mockup HORIZONTAL (landscape)
   opacity:0 no CSS — JS revela após animação das letras
   Centrado exato: top/left 50% + translate(-50%,-50%)
   z-index 3 — acima do nome (z:1), abaixo da headline (z:5)
   ==================================================== */
.hero-phone-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* invisível por CSS — JS define opacity:1 após animação */
  transition: opacity 0.7s ease;
}

/* Frame do tablet — proporcao landscape 16:9 */
.hero-phone-frame {
  width: clamp(380px, 46vw, 680px);
  height: clamp(240px, 29vw, 430px);
  border: 1.5px solid rgba(165,136,60,0.55);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #0d0d0c;
  box-shadow:
    0 0 80px rgba(0,0,0,0.92),
    0 0 50px rgba(165,136,60,0.18),
    inset 0 0 24px rgba(165,136,60,0.05);
}

/* Botao lateral do tablet (substituindo o notch do phone) */
.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 4px; height: 48px;
  background: rgba(165,136,60,0.30);
  border-radius: 2px;
  z-index: 1;
}

/* Camera frontal do tablet — centro-topo */
.hero-phone-frame::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: rgba(165,136,60,0.25);
  border-radius: 50%;
  z-index: 1;
}

.hero-video-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1e1c14 0%, #0d0d0a 100%);
}
.video-placeholder-inner { text-align: center; padding: 24px; }
.play-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.75;
}
.video-placeholder-inner p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.video-topo{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Glow sob o tablet */
.phone-glow {
  position: absolute;
  bottom: -35px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 70px;
  background: radial-gradient(ellipse at center, rgba(165,136,60,0.28) 0%, transparent 70%);
  pointer-events: none;
}

/* ====================================================
   CAMADA 3 — Grid 2x2 de conteúdo
   z-index:4 — acima do tablet (z:3) e do nome (z:1)
   inset:0 = cobre o hero todo
   padding-top = offset do header fixo (80px) + margem
   pointer-events:none no container, auto nos filhos
   ==================================================== */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: calc(80px + 28px) 5vw 48px;
  pointer-events: none;
}
.hero-grid > * { pointer-events: auto; }

/* Superior esquerdo — vazio */
.hero-top-left {
  grid-column: 1;
  grid-row: 1;
}

/* Superior direito — vazio */
.hero-top-right {
  grid-column: 2;
  grid-row: 1;
}

/* Inferior esquerdo — descrição */
.hero-bottom-left {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  padding-bottom: 60px;
}

/* Inferior direito — stats */
.hero-bottom-right {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 60px;
}

/* ====================================================
   CAMADA 3 — Headline central
   Posição absoluta sobre o tablet, text-align center
   z-index 5 — mais alto de todos
   Aparece após animação (opacity via JS)
   ==================================================== */
.hero-headline-center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
  padding: 0 5vw;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease 0.15s;
}
.hero-headline-center.revealed { opacity: 1; }

/* ---- Eyebrow — alinhado à direita com linha depois ---- */
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Headline — centralizada sobre o tablet ---- */
.hero-headline {
  font-size: clamp(2rem, 3.2vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-white);
  letter-spacing: -0.025em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8); /* legibilidade sobre o tablet */
}
.hero-headline em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

/* ---- Descrição — inferior esquerdo ---- */
.hero-desc {
  font-size: clamp(0.78rem, 0.95vw, 0.9rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 320px;
}

/* ---- Stats horizontais — inferior direito ---- */
.hero-stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.hero-stat {
  text-align: center;
  padding: 0 18px;
}
.hero-stat:last-child { padding-right: 0; }

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  flex-shrink: 0;
}
.stat-number {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

/* ---- Scroll indicator ---- */
.hero-scroll-cta {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
  animation: floatScroll 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-icon {
  width: 26px; height: 42px;
  border: 1px solid rgba(165,136,60,0.38);
  border-radius: 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(11px); opacity: 0; }
}
@keyframes floatScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ============================================================
   NÚMEROS
   ============================================================ */
.numeros {
  position: relative;
}
.numeros::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.numero-card {
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}
.numero-card::before {
  content: '';
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(165,136,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.numero-value {
  display: block;
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.numero-unit {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 8px 0 16px;
}
.numero-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CASTING DESTAQUE
   ============================================================ */
.casting-destaque {
  padding: 120px 5vw;
  position: relative;
  overflow: hidden;
}
.casting-bg-glow {
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(165,136,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.casting-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
}

.casting-title {
  font-size: clamp(4rem, 7vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 28px;
}
.casting-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}
.casting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.casting-visual {
  position: relative;
}
.casting-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a15 0%, #0d0d0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-inner {
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}
.img-icon { font-size: 2.5rem; margin-bottom: 16px; opacity: 0.5; }
.img-placeholder-inner p { font-size: 0.8rem; margin-bottom: 8px; }
.img-placeholder-inner small { font-size: 0.7rem; opacity: 0.6; }

.casting-badge {
  position: absolute;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
}
.casting-badge:first-of-type, .casting-badge { bottom: 30px; left: -30px; }
.casting-badge-2 { bottom: auto; top: 40px; right: -24px; left: auto; }

.badge-number {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.servico-card {
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: all var(--transition);
}
.servico-card:hover {
  transform: translateY(-4px);
}

.servico-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  margin-bottom: 24px;
}

.servico-title {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 20px;
  /* Título invadindo visualmente */
  position: relative;
}

.servico-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
}

.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.servico-link:hover { gap: 14px; }
.servico-link span { transition: transform var(--transition); }
.servico-link:hover span { transform: translateX(4px); }

/* Card CTA especial */
.servico-card-cta {
  background: linear-gradient(135deg, rgba(165,136,60,0.08) 0%, rgba(165,136,60,0.02) 100%);
  border-color: rgba(165,136,60,0.35);
  grid-column: 3;
  grid-row: 2;
  justify-content: center;
  align-items: flex-start;
}
.servico-cta-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.servico-cta-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   CLIENTES
   ============================================================ */
.clientes{
  text-align: center;
}
   .clientes-destaque {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.cliente-principal {
  position: relative;
  padding: 70px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 800px;
}
.cliente-principal img{
  display: block;
  opacity: 0.5;
  width: 400px;
  margin: 0 auto;
}
.cliente-logo-placeholder { display: flex; flex-direction: column; gap: 12px; }
.cliente-nome {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-white);
}
.cliente-desc {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 2rem;
}
.cliente-badge {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ============================================================
   TICKER — carrossel infinito de logomarcas
   Largura total do navegador, sem boxes, loop CSS puro
   ============================================================ */
.ticker-wrap {
  width: 100vw;
  margin-left: calc(-5vw);   /* cancela o padding da seção */
  overflow: hidden;
  position: relative;
  /* Fade nas bordas para efeito de dissolução */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  /* Anima da posição 0 até -50% (metade = 1 conjunto completo) */
  animation: tickerScroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  height: 109px;
  border-right: 1px solid rgba(165,136,60,0.15);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.ticker-item:hover { opacity: 0.9; }
.ticker-item img {
  opacity: 0.5;
  filter: brightness(0) invert(1) opacity(0.80);
}

.ticker-logo {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
  /* Quando for imagem real: usar <img> dentro do .ticker-item */
}
.ticker-item:hover .ticker-logo { color: var(--gold); }

/* ============================================================
   GALERIA
   ============================================================ */
.galeria { padding: 80px 0 120px; }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 240px;
  gap: 12px;
  padding: 40px 0;
  overflow: hidden;
}

.galeria-item { position: relative; overflow: hidden; border-radius: var(--radius-md); }

.galeria-large  { grid-column: 1 / 6; grid-row: 1; }
.galeria-tall   { grid-column: 6 / 9; grid-row: 1 / 3; }
.galeria-medium { grid-column: 9 / 13; grid-row: 1; }
.galeria-medium:nth-child(4) { grid-column: 1 / 4; grid-row: 2; }
.galeria-wide   { grid-column: 4 / 9; grid-row: 2; display: none; }
.galeria-small  { grid-column: 9 / 13; grid-row: 2; }

.galeria-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a15 0%, #0d0d0a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.galeria-item:hover .galeria-img-placeholder { transform: scale(1.03); }

/* Fade no rodapé das imagens */
.galeria-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30,30,29,0.9) 0%, transparent 100%);
  z-index: 1;
}

.galeria-placeholder-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: var(--text-muted);
}
.galeria-placeholder-content p { font-size: 0.75rem; font-weight: 600; margin-bottom: 4px; }
.galeria-placeholder-content small { font-size: 0.65rem; opacity: 0.6; }

.galeria-cta {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 0;
  padding-left: 5vw;
  padding-right: 5vw;
}

.galeria-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a15 0%, #0d0d0a 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition);
}
.galeria-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}
.galeria-item:hover .galeria-img-placeholder { transform: scale(1.03); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos { position: relative; overflow: hidden; }
.depoimentos::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(165,136,60,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.depoimentos-track-wrap { position: relative; overflow: hidden; }
.depoimentos-track {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
}

.depoimento-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
}
.depoimento-card.active { border-color: rgba(165,136,60,0.4); box-shadow: var(--glow-sm); }

.depoimento-stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 2px; }

.depoimento-texto {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 14px;
}
.autor-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  flex-shrink: 0;
}
.avatar-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.autor-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-white); }
.autor-info span { font-size: 0.72rem; color: var(--text-muted); }

.depoimentos-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.dep-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-body);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.dep-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--glow-sm); }

.dep-dots { display: flex; gap: 8px; }
.dep-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.dep-dot.active { background: var(--gold); width: 20px; border-radius: 3px; box-shadow: var(--glow-sm); }

.depoimentos-aviso {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 24px;
}

/* ============================================================
   BRASIL
   ============================================================ */
.brasil {
  position: relative;
  overflow: hidden;
}
.brasil::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(165,136,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.brasil-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brasil-title {
  font-size: clamp(3.5rem, 6vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 24px;
}
.brasil-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}
.brasil-estados {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.estado-tag {
  font-size: 0.7rem;
  padding: 6px 14px;
}

.brasil-mapa {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mapa-container {
  position: relative;
  width: 100%;
  
}
.mapa-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  object-fit: contain;
  opacity: 0.30;
  pointer-events: none;
  user-select: none;
}
.brasil-svg { position: relative; width: 100%; height: auto; z-index: 1; }

.mapa-path {
  transition: fill var(--transition);
}
.mapa-dot {
  animation: pulseMapDot 2.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@keyframes pulseMapDot {
  0%, 100% { r: 4; opacity: 0.8; }
  50% { r: 7; opacity: 0.3; }
}

.mapa-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.mapa-numero {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.mapa-texto {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(165,136,60,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(165,136,60,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(165,136,60,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-final-title {
  font-size: clamp(3.5rem, 7vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text-white);
  margin-bottom: 28px;
}
.cta-final-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 0 5vw 40px;
}
.footer-box {
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.footer-logo img{
  width: 80px;
}
.footer-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--glow-sm); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a,
.footer-col li span {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--text-body); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy, .footer-dev {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 24px rgba(165,136,60,0.5), 0 0 0 0 rgba(165,136,60,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; color: #000; }
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(165,136,60,0.7), var(--glow-md);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(20,20,19,0.95);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-body);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
  backdrop-filter: blur(12px);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(165,136,60,0.5), 0 0 0 0 rgba(165,136,60,0.4); }
  50% { box-shadow: 0 4px 24px rgba(165,136,60,0.5), 0 0 0 14px rgba(165,136,60,0); }
}

/* ============================================================
   RESPONSIVIDADE MOBILE FIRST
   ============================================================ */

/* ---- Tablet largo (≤ 1200px) ---- */
@media (max-width: 1200px) {
  .hero-brand-name { font-size: clamp(18vw, 21vw, 24vw); }
  .hero-phone-frame {
    width: clamp(320px, 40vw, 560px);
    height: clamp(202px, 25vw, 352px);
  }
}

/* ---- Tablet (≤ 1024px) ---- */
@media (max-width: 1024px) {
  .section-padded   { padding: 80px 5vw; }
  .numeros-grid     { grid-template-columns: repeat(2, 1fr); }
  .casting-inner    { grid-template-columns: 1fr; gap: 48px; }
  .casting-visual   { max-width: 400px; }
  .casting-badge    { display: none; }
  .servicos-grid    { grid-template-columns: repeat(2, 1fr); }
  .servico-card-cta { grid-column: auto; grid-row: auto; }
  .brasil-inner     { grid-template-columns: 1fr; }
  .brasil-mapa      { max-width: 400px; margin: 0 auto; }
  .footer-top       { grid-template-columns: 1fr; gap: 40px; }
  .footer-links     { grid-template-columns: repeat(3, 1fr); }
  .nav-links         { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-logo          { position: relative; left: auto; transform: none; }
  .nav-container     { justify-content: space-between; }
  .hero-brand-name  { font-size: clamp(16vw, 19vw, 22vw); }
  .hero-phone-frame {
    width: clamp(280px, 36vw, 480px);
    height: clamp(177px, 23vw, 302px);
  }
  .hero-grid         { padding-bottom: 40px; }
  .hero-bottom-left  { padding-bottom: 44px; }
  .hero-bottom-right { padding-bottom: 44px; }
  .hero-headline     { font-size: clamp(1.5rem, 2.6vw, 3rem); }
}

/* ====================================================
   MOBILE (≤ 640px) — layout em coluna
   Estrutura:
     [espaço do header]
     [headline — topo, texto grande centralizado]
     [tablet — largura generosa, abaixo da headline]
     [nome KA$CH — por baixo do tablet, muito menor]
     [desc | stats — rodapé lado a lado]
   ==================================================== */
@media (max-width: 640px) {

  /* === Seções gerais === */
  .section-padded     { padding: 64px 4vw; }
  .section-title-full { font-size: clamp(2.8rem, 12vw, 4rem); }

  .mapa-label{
    bottom: -52px;
  }

  /* === HERO MOBILE === */
  .hero {
    /* Empilha em coluna: hero vira flex column */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px; /* header offset */
    overflow: hidden;
    height: 750px;
  }

  /* Nome KA$CH — posição relativa no fluxo, menor, ornamental */
  .hero-brand-name {
    position: relative;
    top: auto; left: auto;
    transform: none;
    width: 100%;
    font-size: clamp(18vw, 22vw, 28vw);
    padding: 0;
    /* Aparece abaixo do tablet, empurrado para baixo */
    order: 3;
    margin-top: -16px; /* sobrepõe levemente o tablet */
    opacity: 1 !important; /* sempre visível no mobile */
    z-index: 1;
  }

  /* Tablet — ocupa largura generosa, ordem 2 */
  .hero-phone-wrap {
    position: relative;
    top: auto; left: auto;
    transform: none;
    order: 2;
    width: 90vw;
    max-width: 420px;
    opacity: 1 !important; /* visível imediatamente no mobile */
    transition: none;
    z-index: 3;
    margin-top: 12px;
  }
  .hero-phone-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  /* Headline — topo, ordem 1, centralizada */
  .hero-headline-center {
    position: relative;
    top: auto; left: auto;
    transform: none;
    order: 1;
    width: 100%;
    padding: 20px 5vw 8px;
    text-align: center;
    opacity: 1 !important; /* visível imediatamente no mobile */
    transition: none;
    z-index: 5;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    text-shadow: none;
  }

  /* Grid — rodapé com desc e stats */
  .hero-grid {
    position: relative;
    inset: auto;
    order: 4;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 16px 4vw 56px;
    z-index: 4;
    pointer-events: auto;
  }
  .hero-top-left  { display: none; }
  .hero-top-right { display: none; }

  .hero-bottom-left {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding-bottom: 0;
  }
  .hero-desc {
    font-size: 0.78rem;
    max-width: none;
    line-height: 1.6;
  }

  .hero-bottom-right {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    padding-bottom: 0;
  }
  .hero-stats { flex-direction: column; gap: 8px; align-items: flex-end; }
  .hero-stat  { padding: 0; text-align: right; }
  .hero-stat-divider {
    width: 40px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    align-self: flex-end;
  }
  .stat-number { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .stat-label  { font-size: 0.55rem; }

  /* Scroll cta fica abaixo de tudo */
  .hero-scroll-cta {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    order: 5;
    padding-bottom: 12px;
    animation: none;
  }

  /* === Outros === */
  .numeros-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .numero-card     { padding: 28px 20px; }
  .numero-value    { font-size: 2.2rem; }
  .casting-title   { font-size: clamp(3rem, 12vw, 5rem); }
  .servicos-grid   { grid-template-columns: 1fr; }
  .depoimento-card { flex: 0 0 97%; min-width: 0; }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 180px 160px;
  }
  .galeria-large  { grid-column: 1 / 3; grid-row: 1; }
  .galeria-tall   { grid-column: 1;     grid-row: 2; }
  .galeria-medium { grid-column: 2;     grid-row: 2; }
  .galeria-medium:nth-child(4) { grid-column: 1; grid-row: 3; }
  .galeria-small  { grid-column: 2;     grid-row: 3; }
  .cta-final-title   { font-size: clamp(2.8rem, 11vw, 4rem); }
  .cta-final-actions { flex-direction: column; align-items: stretch; }
  .btn-whatsapp, .btn-secondary { justify-content: center; }
  .footer-box      { padding: 40px 24px; }
  .footer-links    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
  .whatsapp-float  { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .brasil-title    { font-size: clamp(2.8rem, 11vw, 4rem); }
  .cliente-principal { flex-direction: column; gap: 16px; padding: 32px 24px; }
}

/* ---- Mobile pequeno (≤ 380px) ---- */
@media (max-width: 380px) {
  .footer-links    { grid-template-columns: 1fr; }
  .numeros-grid    { grid-template-columns: 1fr; }
  .hero-brand-name { font-size: clamp(22vw, 26vw, 30vw); }
  .hero-headline   { font-size: clamp(1.4rem, 6.5vw, 2rem); }
}
