/* =============================================
   GUSTAVO SEVERINO — LUXURY PORTFOLIO v5
   Mobile-first · Splash · Rich Motions · Photo
   ============================================= */

:root {
  --black:   #000000;
  --black-1: #070707;
  --black-2: #0e0e0e;
  --black-3: #151515;
  --black-4: #1d1d1d;
  --white:   #ffffff;
  --muted:   #8a7a68;
  --gold:       #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark:  #9a7a32;
  --gold-pale:  rgba(201,168,76,0.07);
  --gold-glow:  rgba(201,168,76,0.22);

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --display: 'Bebas Neue', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --t: 0.4s var(--ease);

  --max-w: 1200px;
  --nav-h: 72px;
  --pad-x: clamp(18px, 5vw, 48px);
  --section-py: clamp(64px, 10vw, 130px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video, iframe { max-width: 100%; display: block; }
button { border: none; background: none; font-family: inherit; }
*:focus { outline: none; }
*:focus-visible { outline: 1px solid var(--gold); }
@media (pointer: fine) { body, a, button { cursor: none; } }

/* ═══════════════════════════════════════
   SPLASH SCREEN
   ═══════════════════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.splash.done {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.splash-logo {
  font-family: var(--serif); font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700; line-height: 1; letter-spacing: .04em;
  display: flex; align-items: center; gap: 2px;
  animation: splashLogoIn .7s var(--spring) both;
}
.splash-g { color: var(--white); }
.splash-s { color: var(--gold); animation: splashSGold 1s .3s ease both; }
@keyframes splashLogoIn {
  from { opacity: 0; transform: scale(.7) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes splashSGold {
  0%   { color: var(--white); }
  100% { color: var(--gold); text-shadow: 0 0 28px rgba(201,168,76,.75); }
}
.splash-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: splashLineGrow .9s .5s var(--ease) forwards;
}
@keyframes splashLineGrow {
  to { width: clamp(80px, 20vw, 180px); }
}

/* ── Progress Bar ── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 10001; transition: width .1s linear;
}

/* ── Custom Cursor ── */
.cursor, .cursor-trail {
  position: fixed; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%,-50%); display: none;
}
@media (pointer: fine) {
  .cursor {
    display: block; width: 10px; height: 10px;
    background: var(--gold); mix-blend-mode: difference;
    transition: width .2s, height .2s;
  }
  .cursor.big { width: 44px; height: 44px; background: transparent; border: 1px solid var(--gold); mix-blend-mode: normal; }
  .cursor-trail {
    display: block; width: 28px; height: 28px;
    border: 1px solid rgba(201,168,76,.2);
    transition: left .1s ease, top .1s ease;
  }
}

/* ── Particles ── */
.particles-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; opacity: .3;
}

/* ── WhatsApp FAB ── */
.fab-whatsapp {
  position: fixed; bottom: 22px; right: 18px; z-index: 500;
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  padding: 11px 18px 11px 13px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: fabSlide .6s 2.2s var(--spring) both;
  opacity: 0;
}
.fab-whatsapp svg { width: 20px; height: 20px; flex-shrink: 0; }
.fab-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
@keyframes fabSlide {
  from { opacity:0; transform: translateX(80px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; width: 100%;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: var(--t);
  opacity: 0; animation: navIn .5s 1.4s var(--ease) forwards;
  max-width: 100vw; overflow: hidden;
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav.scrolled {
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,168,76,.1);
  height: 60px;
}
.nav-logo {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700;
  letter-spacing: .04em; line-height: 1;
}
.logo-g { color: var(--white); }
.logo-s { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); position: relative; transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--t);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 8px 20px; border-radius: 2px; font-weight: 500;
  transition: var(--t);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: var(--t);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.active span:nth-child(2) { opacity:0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 998;
  background: var(--black-1);
  display: flex; flex-direction: column; justify-content: center;
  transform: translateX(100%);
  transition: transform .55s var(--ease);
  overflow: hidden;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-bg-text {
  position: absolute; bottom: -5%; right: -5%;
  font-family: var(--display); font-size: clamp(120px, 40vw, 240px);
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.04);
  pointer-events: none; user-select: none; line-height: 1;
}
.mobile-close {
  position: absolute; top: 18px; right: 18px;
  font-size: 1.3rem; color: var(--muted); padding: 8px; transition: color var(--t);
}
.mobile-close:hover { color: var(--gold); }
.mobile-menu ul { padding: 0 var(--pad-x); }
.mobile-link {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); font-weight: 300;
  color: var(--muted);
  border-bottom: 1px solid rgba(201,168,76,.06);
  transform: translateX(30px); opacity: 0;
  transition: color var(--t), padding-left var(--t), transform .5s var(--ease), opacity .5s ease;
}
.mobile-menu.open .mobile-link {
  transform: translateX(0); opacity: 1;
}
.mobile-menu ul li:nth-child(1) .mobile-link { transition-delay: .05s; }
.mobile-menu ul li:nth-child(2) .mobile-link { transition-delay: .10s; }
.mobile-menu ul li:nth-child(3) .mobile-link { transition-delay: .15s; }
.mobile-menu ul li:nth-child(4) .mobile-link { transition-delay: .20s; }
.mobile-menu ul li:nth-child(5) .mobile-link { transition-delay: .25s; }
.mobile-link:hover, .mobile-link:active { color: var(--white); padding-left: 10px; }
.mobile-link.gold { color: var(--gold); }
.ml-num { font-family: var(--sans); font-size: .65rem; letter-spacing: .2em; color: var(--gold); opacity: .7; flex-shrink: 0; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 2px;
  position: relative; overflow: hidden; transition: var(--t); white-space: nowrap;
  border: 1px solid var(--gold);
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .5s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); }
.btn-gold:active { transform: translateY(0) scale(.97); }
/* Hero WA button: gold text + border, transparent bg — matches height of outline btn */
.hero-btn-wa {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
}
.hero-btn-wa:hover {
  background: rgba(201,168,76,.1) !important;
  box-shadow: 0 8px 28px var(--gold-glow) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}
.hero-btn-wa svg { fill: var(--gold); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-size: .72rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 24px; border: 1px solid rgba(255,255,255,.15); border-radius: 2px;
  transition: var(--t);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-large { font-size: .8rem; padding: 17px 34px; }

/* ═══════════════════════════
   INTRO ANIMATIONS (post-splash)
   ═══════════════════════════ */
/* All hero elements start invisible, JS triggers them */
.intro-logo   { animation: introLogo  .9s .1s var(--spring) both; }
@keyframes introLogo {
  from { opacity:0; transform: translateY(-20px) scale(.8); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
.intro-photo { animation: introPhoto 1s .15s var(--spring) both; }
@keyframes introPhoto {
  from { opacity:0; transform: scale(.78) translateY(24px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.intro-badge { animation: introBadge .7s .35s var(--ease) both; }
@keyframes introBadge {
  from { opacity:0; transform: translateY(14px) scale(.9); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}
/* Stagger each letter of Gustavo & Severino */
.intro-w1 { animation: introW1 1s .5s var(--ease) both; }
@keyframes introW1 {
  from { opacity:0; transform: translateX(-50px) skewX(12deg); }
  to   { opacity:1; transform: translateX(0) skewX(0); }
}
.intro-w2 { animation: introW2 1s .65s var(--ease) both; }
@keyframes introW2 {
  from { opacity:0; transform: translateX(50px) skewX(-12deg); }
  to   { opacity:1; transform: translateX(0) skewX(0); }
}
.intro-sub   { animation: introFade .9s .82s var(--ease) both; }
.intro-ctas  { animation: introFade .9s .96s var(--ease) both; }
.intro-stats { animation: introFade .9s 1.1s var(--ease) both; }
@keyframes introFade {
  from { opacity:0; transform: translateY(22px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,168,76,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(201,168,76,.04) 0%, transparent 60%),
    var(--black);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  animation: orbFloat 9s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-orb-1 {
  width: clamp(200px, 45vw, 480px); height: clamp(200px, 45vw, 480px);
  background: radial-gradient(circle, rgba(201,168,76,.055) 0%, transparent 70%);
  top: -5%; right: -10%;
}
.hero-orb-2 {
  width: clamp(150px, 30vw, 320px); height: clamp(150px, 30vw, 320px);
  background: radial-gradient(circle, rgba(201,168,76,.035) 0%, transparent 70%);
  bottom: 10%; left: -5%; animation-delay: -4s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(16px, -24px) scale(1.06); }
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--display); font-size: clamp(70px, 18vw, 260px);
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.025);
  white-space: nowrap; pointer-events: none; user-select: none;
  letter-spacing: .06em; z-index: 0;
}

/* Hero inner */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: clamp(20px, 4vw, 52px) var(--pad-x) clamp(60px, 8vw, 80px);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.25);
  padding: 7px 16px; margin-bottom: 24px; border-radius: 2px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink { 0%,100%{opacity:1;} 50%{opacity:.2;} }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 300; line-height: .9;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.hero-word { display: block; }
.gold { color: var(--gold); }
.hero-role {
  font-size: clamp(.7rem, 1.6vw, .82rem); letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: -14px 0 18px;
}
.hero-subtitle {
  font-size: clamp(.9rem, 1.8vw, 1.08rem);
  color: var(--muted); line-height: 1.72; margin-bottom: 24px;
  max-width: 480px;
}
.hero-subtitle em { font-style: italic; color: var(--white); font-family: var(--serif); }
/* The headline revenue claim — the one number that should be unmissable */
.hero-headline-stat {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 13px 20px; margin-bottom: 26px;
  border: 1px solid rgba(201,168,76,.24); border-radius: 4px;
  background: linear-gradient(120deg, rgba(201,168,76,.1), rgba(201,168,76,.02));
  position: relative; overflow: hidden;
}
.hero-headline-stat::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(201,168,76,.16) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: hhsSheen 5s ease-in-out 1.6s infinite;
}
@keyframes hhsSheen { 0% { transform: translateX(-100%); } 45%,100% { transform: translateX(100%); } }
.hhs-num {
  font-family: var(--serif); font-weight: 300; line-height: .9;
  font-size: clamp(2.4rem, 5.4vw, 3.6rem); color: var(--gold);
  text-shadow: 0 0 34px rgba(201,168,76,.34);
}
.hhs-label {
  font-size: .74rem; line-height: 1.45; letter-spacing: .1em;
  text-transform: uppercase; color: var(--white-soft); text-align: left;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats {
  display: flex; align-items: center; gap: clamp(16px, 4vw, 40px);
}
.stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 300; color: var(--gold); line-height: 1; }
.stat-unit { color: var(--gold); font-size: 1.1rem; }
.stat-label { display: block; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 44px; background: rgba(201,168,76,.18); flex-shrink: 0; }
.hero-trust {
  margin-top: 18px; font-size: .7rem; letter-spacing: .1em;
  color: var(--muted); opacity: .8;
}

/* ── Photo ── */
.hero-photo-col { display: flex; justify-content: center; align-items: center; }
/* Wrapper holds frame + rings + badge — all positioned relative to this */
.photo-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto; /* center in parent */
}
.photo-frame {
  position: relative;
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  border-radius: 50%;
  overflow: hidden;
  background: var(--black);
  border: 2px solid rgba(201,168,76,.35);
}
/* Rings are positioned on the WRAP, not the frame — so they aren't clipped */
.photo-ring {
  position: absolute; border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid transparent;
  pointer-events: none;
  will-change: transform, opacity;
}
.photo-ring-1 {
  width: calc(100% + 14px); height: calc(100% + 14px);
  border-color: rgba(201,168,76,.45);
  animation: ringPulse 4s ease-in-out infinite;
}
.photo-ring-2 {
  width: calc(100% + 34px); height: calc(100% + 34px);
  border-color: rgba(201,168,76,.15);
  animation: ringPulse 4s 1s ease-in-out infinite;
}
.photo-ring-3 {
  width: calc(100% + 60px); height: calc(100% + 60px);
  border-color: rgba(201,168,76,.06);
  animation: ringPulse 4s 2s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { opacity:1; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity:.5; transform: translate(-50%,-50%) scale(1.03); }
}
.photo-glow {
  position: absolute; top: 50%; left: 50%;
  width: calc(100% + 40px); height: calc(100% + 40px);
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  animation: glowPulsePhoto 4s ease-in-out infinite;
  z-index: 0; pointer-events: none;
  will-change: transform, opacity;
}
@keyframes glowPulsePhoto {
  0%,100% { opacity:.6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity:1; transform: translate(-50%,-50%) scale(1.1); }
}
.photo-img {
  width: 95%; height: 95%;
  margin: 2.5%;
  object-fit: cover; object-position: center center;
  position: relative; z-index: 1;
  filter: brightness(.97) contrast(1.04);
  transition: transform .6s var(--ease);
}
.photo-frame:hover .photo-img { transform: scale(1.03); }
/* Smooth fade at bottom so the cutout edge blends into the circle */
.photo-frame::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 35%; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  border-radius: 0 0 50% 50%;
}
/* Badge below photo — positioned relative to wrap */
.photo-badge {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--black-3); border: 1px solid rgba(201,168,76,.28);
  color: var(--gold); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px; white-space: nowrap; z-index: 3;
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-5px); }
}
/* Floating GS watermark on mobile photo */
.photo-name-float {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: clamp(3rem, 12vw, 6rem);
  color: transparent; -webkit-text-stroke: 1px rgba(201,168,76,.12);
  pointer-events: none; user-select: none; z-index: 0;
  animation: floatGS 6s ease-in-out infinite alternate;
}
@keyframes floatGS {
  from { transform: translate(-50%, -50%) scale(1) rotate(-2deg); opacity: .5; }
  to   { transform: translate(-50%, -50%) scale(1.12) rotate(2deg); opacity: .85; }
}

/* ── Scroll indicator — CORRECTED for mobile ── */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;               /* full width instead of left:50% */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLineGrow 2s ease-in-out infinite;
}
@keyframes scrollLineGrow {
  0%   { transform: scaleY(0.2); opacity: 0.3; transform-origin: top; }
  50%  { transform: scaleY(1);   opacity: 1;   transform-origin: top; }
  100% { transform: scaleY(0);   opacity: 0;   transform-origin: bottom; }
}
.scroll-arrow-wrap {
  animation: scrollChevronBounce 2s ease-in-out infinite;
}
@keyframes scrollChevronBounce {
  0%,100% { transform: translateY(0); opacity: .6; }
  50%      { transform: translateY(5px); opacity: 1; }
}
.scroll-chevron {
  width: 20px; height: 20px;
  color: var(--gold); display: block;
}
.hero-scroll.hidden { opacity: 0; }

/* ── Marquee ── */
.marquee-strip {
  background: var(--black-2);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  overflow: hidden; padding: 15px 0; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 30s linear infinite; will-change: transform;
}
.marquee-track span { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); flex-shrink: 0; }
.gold-dot { color: var(--gold) !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Sections Common ── */
.section { padding: var(--section-py) 0; position: relative; z-index: 1; overflow: hidden; }

/* ── Golden Waves Background ── */
.wave-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.wave-bg .wave-1,
.wave-bg .wave-2 {
  position: absolute; width: 300%; height: 100%;
  background-repeat: repeat-x;
  will-change: transform;
}
.wave-bg .wave-1 {
  bottom: 0; left: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(201,168,76,0.045)' stroke-width='1.2' d='M0,192L48,186.7C96,181,192,171,288,176C384,181,480,203,576,197.3C672,192,768,160,864,149.3C960,139,1056,149,1152,170.7C1248,192,1344,224,1392,240L1440,256'/%3E%3C/svg%3E");
  background-size: 50% 100%;
  animation: waveFloat 22s linear infinite;
}
.wave-bg .wave-2 {
  top: 0; left: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='rgba(201,168,76,0.035)' stroke-width='1' d='M0,128L60,138.7C120,149,240,171,360,165.3C480,160,600,128,720,122.7C840,117,960,139,1080,154.7C1200,171,1320,181,1380,186.7L1440,192'/%3E%3C/svg%3E");
  background-size: 50% 100%;
  animation: waveFloat 30s linear infinite reverse;
}
@keyframes waveFloat {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}
/* Ensure section content stays above the waves */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: clamp(36px, 6vw, 64px); }
.section-tag {
  display: inline-block; font-size: .6rem; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-tag::before, .section-tag::after { content: '—'; margin: 0 7px; opacity: .45; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 66px);
  font-weight: 300; line-height: 1.05; letter-spacing: -.01em;
}
.section-title.center { text-align: center; }
.section-desc { margin-top: 12px; color: var(--muted); font-size: .9rem; font-weight: 300; }

/* ── Scroll Reveal ── */
.reveal-up, .reveal-left, .reveal-right, .reveal-fade {
  opacity: 0;
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    transform .8s var(--ease) var(--d, 0s);
}
.reveal-up    { transform: translateY(42px); }
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-fade  { transform: scale(.95); }
.revealed { opacity:1 !important; transform: none !important; }

/* ── Sobre ── */
.sobre { background: var(--black-1); }
/* Left column gets the extra room — the capability chips don't need half the width */
.sobre-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
/* The left column always left-aligned on desktop, but we override for mobile below */
.sobre-left .section-tag {
  text-align: left;
  /* Override: remove the left margin so it matches other tags */
  margin-left: 0;
}
.sobre-left .section-title {
  text-align: left;
  margin-bottom: clamp(20px, 4vw, 36px);
}
.sobre-text { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: .9rem; }
/* ── Chips — shared by AI tools + About capabilities ── */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: clamp(32px,5vw,52px); }
.chip {
  font-size: .68rem; letter-spacing: .08em; color: var(--muted);
  background: var(--black-3); border: 1px solid rgba(201,168,76,.1);
  padding: 8px 14px; border-radius: 999px; transition: var(--t); white-space: nowrap;
}
.chip:hover { border-color: rgba(201,168,76,.3); color: var(--gold); }
.chip-col { flex-direction: column; align-items: stretch; justify-content: flex-start; margin-top: 0; gap: 10px; }
.chip-lg {
  border-radius: 3px; padding: 15px 18px; font-size: .8rem;
  display: flex; align-items: center; gap: 12px; white-space: normal;
}
.chip-lg::before {
  content: '✦'; color: var(--gold); font-size: .7rem; flex-shrink: 0;
}

/* ── Results ── */
.results { background: var(--black); }
/* Featured panel — the revenue figure gets its own real estate above the grid */
.results-feature {
  display: flex; align-items: center; justify-content: center; gap: clamp(20px,4vw,44px);
  flex-wrap: wrap; text-align: left;
  padding: clamp(28px,4vw,44px) clamp(24px,4vw,48px);
  margin-bottom: 2px; position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,.24);
  background: linear-gradient(120deg, rgba(201,168,76,.11), rgba(201,168,76,.02) 60%);
}
.rf-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.16), transparent 68%);
  left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.rf-num {
  font-family: var(--serif); font-weight: 300; line-height: .85;
  font-size: clamp(3.6rem, 11vw, 7.5rem); color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,.35); position: relative;
}
/* .stat-num carries its own type scale for the hero row — inside these panels the
   container decides the size instead, so let it through. */
.rf-num .stat-num,
.result-num .stat-num { font: inherit; color: inherit; }
.rf-copy { position: relative; max-width: 30ch; }
.rf-copy strong {
  display: block; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem,2.6vw,1.7rem); color: var(--white); margin-bottom: 8px;
}
.rf-copy span { display: block; color: var(--muted); font-size: .84rem; line-height: 1.7; }

.results-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 2px; }
.result-tile {
  background: var(--black-2); border: 1px solid rgba(201,168,76,.06);
  padding: clamp(24px,3.5vw,38px) 14px; text-align: center;
  transition: var(--t); opacity: 0; /* animated by JS */
}
.result-tile:hover { background: var(--black-3); border-color: rgba(201,168,76,.2); }
/* The .stat-num child carries the serif — kept here so the two agree */
.result-num {
  font-family: var(--serif); font-weight: 300; font-size: clamp(2rem,4.5vw,3.1rem);
  line-height: 1; color: var(--gold); margin-bottom: 10px;
}
.result-label {
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}

/* ── Case study ── */
.case { background: var(--black-1); }
.case-panel {
  background: var(--black-2); border: 1px solid rgba(201,168,76,.12);
  padding: clamp(26px,4.5vw,52px); position: relative; overflow: hidden;
}
.case-panel::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.case-stats {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 18px;
  padding-bottom: clamp(26px,4vw,38px); margin-bottom: clamp(26px,4vw,38px);
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.case-stat { text-align: center; }
/* Serif to match the hero + Results figures, which inherit it from .stat-num */
.case-stat-num {
  display: block; font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem,3.4vw,2.4rem);
  line-height: 1; color: var(--gold); margin-bottom: 8px;
}
.case-stat-label { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.case-bullets { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 34px; }
.case-bullets li {
  position: relative; padding-left: 20px;
  color: var(--muted); font-size: .86rem; line-height: 1.75; opacity: 0; /* animated by JS */
}
.case-bullets li::before { content: '✦'; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: .7rem; }
.case-bullets strong { color: var(--white); font-weight: 500; }
.case-cta {
  display: inline-block; margin-top: clamp(26px,4vw,38px);
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.35);
  padding-bottom: 4px; transition: var(--t);
}
.case-cta:hover { border-color: var(--gold); letter-spacing: .16em; }

/* ── AI edge ── */
.ai { background: var(--black); }
.ai-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.ai-card {
  position: relative; background: var(--black-2);
  padding: clamp(28px,5vw,46px) clamp(22px,4vw,34px);
  border: 1px solid rgba(201,168,76,.06);
  overflow: hidden; transition: var(--t);
  opacity: 0; /* animated by JS */
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%); transition: transform .65s ease;
}
.ai-card:hover { background: var(--black-3); }
.ai-card:hover::before { transform: translateX(0); }
.ai-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,.18); border-radius: 3px;
  margin-bottom: 20px; color: var(--gold); transition: var(--t);
}
.ai-icon svg { width: 22px; height: 22px; }
.ai-card:hover .ai-icon { background: var(--gold-pale); border-color: var(--gold); }
.ai-card h3 {
  font-family: var(--serif); font-size: clamp(1.25rem,2.6vw,1.55rem); font-weight: 300;
  margin-bottom: 12px; transition: color var(--t);
}
.ai-card:hover h3 { color: var(--gold); }
.ai-card p { color: var(--muted); font-size: .84rem; line-height: 1.8; }

/* ── Process ── */
.process { background: var(--black-1); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,5vw,52px); }
.process-step { position: relative; padding-top: 20px; opacity: 0; /* animated by JS */ }
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px; background: var(--gold);
}
.process-num {
  font-family: var(--display); font-size: 3rem; line-height: 1;
  color: var(--gold); opacity: .5; margin-bottom: 14px;
}
.process-step h3 {
  font-family: var(--serif); font-size: clamp(1.15rem,2.5vw,1.4rem); font-weight: 400; margin-bottom: 10px;
}
.process-step p { color: var(--muted); font-size: .86rem; line-height: 1.8; }

/* ── Bonus band (sites & landing pages) ── */
.bonus {
  display: flex; align-items: center; gap: clamp(20px,3.5vw,40px);
  margin-top: clamp(44px,7vw,80px);
  padding: clamp(26px,4vw,44px);
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,76,.22);
  background: linear-gradient(115deg, rgba(201,168,76,.09), rgba(201,168,76,.015) 62%);
}
.bonus-badge {
  position: absolute; top: 0; left: 0;
  font-size: .56rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 5px 14px; font-weight: 600;
}
.bonus-body { flex: 1; padding-top: 14px; }
.bonus-body h3 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.35rem,3vw,1.95rem); color: var(--white); margin-bottom: 12px;
}
.bonus-body > p { color: var(--muted); font-size: .87rem; line-height: 1.8; max-width: 62ch; }
.bonus-chips { justify-content: flex-start; margin-top: 20px; }
.bonus-icon { flex-shrink: 0; width: clamp(90px,11vw,140px); color: var(--gold); opacity: .5; }
.bonus-icon svg { width: 100%; height: auto; }

/* ── Testimonials ── */
.testimonials { background: var(--black); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.testimonial {
  background: var(--black-2); border: 1px solid rgba(201,168,76,.06);
  padding: clamp(28px,4.5vw,46px); position: relative;
  transition: var(--t); opacity: 0; /* animated by JS */
}
.testimonial:hover { background: var(--black-3); border-color: rgba(201,168,76,.18); }
.testimonial-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 16px;
}
.quote-mark {
  font-family: var(--serif); font-size: 3.4rem; line-height: .6;
  color: var(--gold); opacity: .35;
}
.rating { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.stars {
  color: var(--gold); font-size: .95rem; letter-spacing: .12em;
  text-shadow: 0 0 14px rgba(201,168,76,.45);
}
.rating-num {
  font-family: var(--serif); font-size: 1rem; color: var(--white-soft);
  border-left: 1px solid rgba(201,168,76,.25); padding-left: 9px;
}
.testimonial blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1rem,2.1vw,1.18rem); line-height: 1.75; color: var(--white-soft);
  margin-bottom: 20px;
}
.testimonial figcaption { display: flex; flex-direction: column; gap: 4px; }
.tm-company {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  color: var(--gold); letter-spacing: .02em;
}
.tm-role {
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

/* ── FAQ ── */
.faq { background: var(--black-1); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,168,76,.1); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; font-size: .95rem; color: var(--white-soft); transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item[open] summary { color: var(--gold); }
.faq-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--gold); transition: transform .35s var(--ease); }
.faq-chevron svg { width: 100%; height: 100%; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p { color: var(--muted); font-size: .86rem; line-height: 1.8; padding: 0 0 24px; max-width: 62ch; }

/* ── Work header (title + CTA side by side) ── */
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 28px;
  margin-bottom: clamp(28px,5vw,48px);
}
.work-header .section-tag { text-align: left; margin-left: 0; }
.work-header .section-title { text-align: left; margin-bottom: 0; }
.work-header .btn-gold { flex-shrink: 0; }

/* ── Portfolio ── */
.portfolio { background: var(--black-1); }
/* Tabs wrapper — relative positioning for swipe hint */
.portfolio-tabs-wrap {
  position: relative;
  margin-bottom: clamp(28px,5vw,56px);
}
.portfolio-tabs {
  display: flex; gap: 5px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 0;
}
/* Swipe hint — only visible on mobile */
.tabs-swipe-hint {
  display: none;
  align-items: center; gap: 4px;
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.swipe-hint-text {
  font-size: .52rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
}
.swipe-hint-arrow {
  color: var(--gold);
  animation: swipeHintPulse 1.4s ease-in-out infinite;
  display: flex; align-items: center;
}
.swipe-hint-arrow svg { width: 18px; height: 18px; }
@keyframes swipeHintPulse {
  0%,100% { opacity: .4; transform: translateX(0); }
  50%      { opacity: 1;  transform: translateX(5px); }
}
.tabs-swipe-hint.hidden { display: none !important; }
.tab-btn {
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 2px; transition: var(--t);
}
.tab-btn:hover, .tab-btn.active { color: var(--black); background: var(--gold); border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; align-items: start; }
.portfolio-item { transition: opacity .4s ease, transform .4s ease; }
.portfolio-item.hidden { display: none; }
.portfolio-card {
  background: var(--black-2); border: 1px solid rgba(201,168,76,.06);
  overflow: hidden; transition: var(--t); cursor: pointer;
}
.portfolio-card:hover { border-color: rgba(201,168,76,.2); }
.portfolio-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.thumb-bg {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform .7s var(--ease); position: relative;
}
.portfolio-card:hover .thumb-bg { transform: scale(1.06); }
.vsl-bg      { background: linear-gradient(135deg, #0a0800 0%, #2a1e00 45%, #100c00 100%); }
.dark-bg     { background: linear-gradient(135deg, #060606 0%, #131313 45%, #090909 100%); }
.ia-bg       { background: linear-gradient(135deg, #030308 0%, #0c0c20 45%, #050510 100%); }
.shorts-bg   { background: linear-gradient(135deg, #080600 0%, #1e1600 45%, #0e0b00 100%); }
.narrador-bg { background: linear-gradient(135deg, #050508 0%, #161224 45%, #080810 100%); }
.sites-bg    { background: linear-gradient(135deg, #060606 0%, #131108 45%, #0a0a06 100%); }

/* YouTube thumbnail in cards */
.yt-thumb-wrap { position: relative; overflow: hidden; }
.yt-thumb {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.7);
  transition: filter .5s ease;
}
.portfolio-card:hover .yt-thumb { filter: brightness(.55) saturate(.6); }
.yt-cat-overlay {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .52rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.4);
  padding: 3px 8px; border-radius: 2px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}

.thumb-category {
  font-size: .55rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.4);
  padding: 3px 10px; border-radius: 2px; margin-bottom: 10px;
  background: rgba(201,168,76,.04); flex-shrink: 0;
}
.thumb-icon { font-size: clamp(1.8rem, 5vw, 3rem); opacity: .6; filter: drop-shadow(0 0 10px rgba(201,168,76,.28)); }
.thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(201,168,76,.06));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t); z-index: 2;
}
.portfolio-card:hover .thumb-overlay,
.portfolio-card:focus .thumb-overlay,
.portfolio-card.touched .thumb-overlay { opacity: 1; }
.play-btn { color: var(--gold); filter: drop-shadow(0 0 16px rgba(201,168,76,.5)); transition: var(--t); }
.play-btn svg { width: 56px; height: 56px; }
.play-btn:hover { transform: scale(1.1); filter: drop-shadow(0 0 28px rgba(201,168,76,.85)); }
.portfolio-info { padding: 15px 18px; border-top: 1px solid rgba(201,168,76,.05); }
.portfolio-info h4 {
  font-family: var(--serif); font-size: clamp(.95rem, 2.3vw, 1.15rem); font-weight: 400;
  margin-bottom: 5px; transition: color var(--t);
}
.portfolio-card:hover .portfolio-info h4 { color: var(--gold); }
.portfolio-tag { font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); opacity: .65; }

/* Poster thumbnail on self-hosted video cards */
.thumb-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.portfolio-card.has-poster .thumb-icon { display: none; }
.portfolio-card.has-poster .thumb-category {
  position: absolute; top: 10px; left: 10px; margin: 0; z-index: 2;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
}
.portfolio-card.has-poster .thumb-overlay { opacity: 1; background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.5)); }

/* Self-hosted video inside the popup */
.modal-video-wrap video {
  width: 100%; aspect-ratio: 16/9; min-height: 240px;
  border: none; border-radius: 2px; background: #000; display: block;
}
.modal-video-wrap.vertical video {
  width: 100%; height: auto; aspect-ratio: 9/16;
  max-height: 75vh; max-width: calc(75vh * 9 / 16); margin: 0 auto;
}

/* Native aspect ratios per content type */
.portfolio-item[data-category="criativos"] .portfolio-thumb,
.portfolio-item[data-category="reels"] .portfolio-thumb,
.portfolio-item[data-category="designers"] .portfolio-thumb { aspect-ratio: 9 / 16; }
.portfolio-item[data-category="vsl"] .portfolio-thumb,
.portfolio-item[data-category="narrador"] .portfolio-thumb,
.portfolio-item[data-category="dark"] .portfolio-thumb { aspect-ratio: 16 / 9; }
/* Per-item override — a few Creatives are 16:9 rather than the 9:16 default */
.portfolio-item[data-ratio="wide"] .portfolio-thumb { aspect-ratio: 16 / 9; }

/* ── Contato ── */
.contato { background: var(--black-1); border-top: 1px solid rgba(201,168,76,.07); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,8vw,90px); align-items: center; }
.contato-left .section-tag { display: inline-block; }
.contato-left p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; font-size: .9rem; }
.contato-infos { display: flex; flex-direction: column; gap: 12px; }
.contato-info-item {
  display: flex; align-items: center; gap: 13px;
  color: var(--muted); font-size: .86rem; transition: color var(--t);
}
.contato-info-item:hover { color: var(--gold); }
.contato-info-icon {
  width: 36px; height: 36px; border: 1px solid rgba(201,168,76,.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
}
.contato-cta-card {
  position: relative; background: var(--black-3);
  border: 1px solid rgba(201,168,76,.16); border-radius: 4px;
  padding: clamp(32px,5vw,52px) clamp(24px,4vw,44px); text-align: center; overflow: hidden;
}
.card-glow {
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none; animation: glowPulse 4s ease-in-out infinite;
  will-change: transform;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:scale(1);} 50%{opacity:1;transform:scale(1.08);} }
.contato-cta-card h3 { font-family: var(--serif); font-size: clamp(1.4rem, 3.5vw, 1.9rem); font-weight: 300; margin-bottom: 12px; }
.contato-cta-card p { color: var(--muted); font-size: .86rem; line-height: 1.7; margin-bottom: 28px; }
.contato-cta-card .btn-gold,
.contato-cta-card .btn-outline { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }

/* ── Footer ── */
.footer {
  background: var(--black); border-top: 1px solid rgba(201,168,76,.07);
  padding: clamp(36px,6vw,52px) 0 clamp(20px,4vw,28px); position: relative; z-index: 1;
}
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 14px; }
.footer-logo { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.footer-top p { color: var(--muted); font-size: .82rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.04);
}
.footer-bottom span { font-size: .65rem; letter-spacing: .1em; color: rgba(255,255,255,.2); text-transform: uppercase; }
.footer-gold-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); max-width: 160px; }

/* ── Video Modal ── */
.video-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease-out;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.94); backdrop-filter: blur(10px); }
.modal-container {
  position: relative; z-index: 2; width: 96%; max-width: 860px;
  background: var(--black-2); border: 1px solid rgba(201,168,76,.18);
  border-radius: 4px; overflow: hidden;
  transform: scale(.9) translateY(24px); transition: transform .3s var(--ease);
  max-height: 94vh; overflow-y: auto;
}
.video-modal.open .modal-container { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 3;
  color: var(--muted); font-size: 1.1rem; transition: color var(--t); padding: 6px;
  /* Make tap target larger on mobile */
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { color: var(--gold); }
.modal-title { padding: 16px 22px 0; font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.modal-video-wrap { padding: 12px; position: relative; min-height: 120px; }
.modal-video-wrap iframe { 
  width: 100%; 
  aspect-ratio: 16/9; 
  min-height: 240px; 
  border: none; 
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.iframe-loader {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  display: flex; gap: 6px; z-index: 5;
}
.iframe-loader span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulseLoad .8s infinite alternate;
}
.iframe-loader span:nth-child(2) { animation-delay: .2s; }
.iframe-loader span:nth-child(3) { animation-delay: .4s; }
@keyframes pulseLoad { 0% { opacity: .2; transform: scale(.8); } 100% { opacity: 1; transform: scale(1.2); } }

.modal-video-wrap.vertical iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  max-height: 75vh;
  max-width: calc(75vh * 9 / 16);
  margin: 0 auto;
  display: block;
}

/* ═══════════════════════════════════════
   MOBILE OVERRIDES
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .ai-grid { grid-template-columns: 1fr; gap: 3px; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 3px; }
  .bonus { flex-direction: column; text-align: center; }
  .bonus-body > p { margin-inline: auto; }
  .bonus-chips { justify-content: center; }
  .bonus-icon { order: -1; width: 74px; }
  .results-grid { grid-template-columns: repeat(3,1fr); gap: 3px; }
  .results-feature { flex-direction: column; text-align: center; gap: 14px; margin-bottom: 3px; }
  .rf-copy { max-width: 34ch; }
  .case-stats { grid-template-columns: repeat(3,1fr); gap: 22px 14px; }
  .case-bullets { grid-template-columns: 1fr; }
  .contato-inner { grid-template-columns: 1fr; gap: 36px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Work header: CTA drops under the title */
  .work-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .work-header .section-tag,
  .work-header .section-title { text-align: center !important; margin-left: auto; margin-right: auto; }
  .work-header > div { width: 100%; }
  .work-header .btn-gold { align-self: center; }
  /* Sobre: center on mobile to match other sections */
  .sobre-left,
  .sobre-left .section-tag,
  .sobre-left .section-title {
    text-align: center !important;
    display: block;
  }
}

@media (max-width: 760px) {
  /* HERO: photo on top, text below */
  .hero { min-height: 100svh; }
  /* Prevent hero bg-text from causing overflow */
  .hero-bg-text { overflow: hidden; max-width: 100%; }
  .hero-orb { max-width: 60vw; max-height: 60vw; } /* Clamp orbs so they don't overflow */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 60px;
  }
  /* photo first, text after */
  .hero-text-col { order: 2; }
  .hero-photo-col { order: 1; padding-top: 4px; }

  .photo-frame {
    width: clamp(160px, 46vw, 220px);
    height: clamp(160px, 46vw, 220px);
    margin: 0 auto;
    overflow: hidden;
  }
  /* Scale down rings on mobile */
  .photo-ring-1 { inset: -4px; }
  .photo-ring-2 { inset: -10px; }
  .photo-ring-3 { inset: -20px; }

  /* Bigger title on mobile */
  .hero-title { font-size: clamp(60px, 17vw, 96px); }

  .hero-subtitle { margin-inline: auto; max-width: 88%; font-size: .9rem; }
  /* Hero CTAs: both same size and stacked nicely */
  .hero-ctas {
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-ctas .hero-btn-wa,
  .hero-ctas .btn-outline {
    flex: 1; min-width: 130px; max-width: 180px;
    justify-content: center;
  }
  .hero-headline-stat { margin-inline: auto; margin-bottom: 26px; gap: 12px; padding: 12px 18px; }
  .hhs-label { font-size: .64rem; }
  .hero-stats { justify-content: center; flex-wrap: nowrap; gap: 12px; }
  .stat-num { font-size: 1.5rem; }
  .stat-unit { font-size: .85rem; }
  .stat-label { font-size: .5rem; }
  .stat-divider { height: 30px; }

  /* Portfolio: 2 cols, show swipe hint */
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 3px; }
  .portfolio-tabs {
    gap: 4px; overflow-x: auto; flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 4px 4px;
    padding-right: 40px; /* room for swipe hint */
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .portfolio-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 7px 13px; font-size: .58rem; flex-shrink: 0; }
  /* Show swipe hint on mobile */
  .tabs-swipe-hint { display: flex; }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .footer-gold-line { display: none; }
  .contato-cta-card { padding: 28px 18px; }

  /* WhatsApp FAB — icon only */
  .fab-whatsapp span { display: none; }
  .fab-whatsapp { padding: 13px; border-radius: 50%; bottom: 20px; right: 16px; }

  /* Scroll indicator - mobile safe */
  .hero-scroll { bottom: 18px; }
  .scroll-line { height: 28px; }
}

@media (max-width: 420px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-ctas .hero-btn-wa,
  .hero-ctas .btn-outline { width: 100%; max-width: 260px; justify-content: center; flex: unset; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .case-stats { grid-template-columns: 1fr 1fr; }
}

@media (hover: none) {
  .portfolio-card:active { transform: scale(.97); }
  .portfolio-card.touched .thumb-overlay { opacity: 1; }
  .ai-card:active { background: var(--black-3); }
  .chip:active { border-color: rgba(201,168,76,.3); }
  /* On touch: always show play icon slightly */
  .thumb-overlay { opacity: .15; }
}

/* ── Mobile-specific spring reveal pulse ── */
@keyframes mobileRevealPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}
/* Photo tap ripple */
.photo-ripple {
  position: absolute; inset: -30px; border-radius: 50%;
  border: 2px solid rgba(201,168,76,.5);
  animation: photoRipple .8s var(--ease) forwards;
  pointer-events: none; z-index: 4;
}
@keyframes photoRipple {
  from { transform: scale(.8); opacity: 1; }
  to   { transform: scale(1.4); opacity: 0; }
}
