/* ═══════════════════════════════════════════════════════════════════
   TW COMUNICAÇÃO VISUAL — Premium CSS
   Paleta: #0A0A0A | #111111 | #D4AF37 | #F6E27A | #FFFFFF | #ECECEC
   ═══════════════════════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ───────────────────────────────────────────── */
:root {
  --black:        #0A0A0A;
  --black-2:      #111111;
  --black-3:      #1A1A1A;
  --gold:         #D4AF37;
  --gold-light:   #F6E27A;
  --gold-dark:    #A88A20;
  --white:        #FFFFFF;
  --gray-light:   #ECECEC;
  --gray:         #888888;
  --gray-dark:    #444444;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-gold:  0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-dark:  0 20px 60px rgba(0, 0, 0, 0.6);

  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h:        80px;
  --container:    1280px;
}

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

html {
  scroll-behavior: auto; /* Lenis gerencia */
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol { list-style: none; }

address { font-style: normal; }

/* ─── FOCUS STATES ────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* ─── SELECTION ───────────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--black);
}

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

/* ═══════════════════════════════════════ CURSOR PERSONALIZADO ══════ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--transition), height 0.35s var(--transition), border-color 0.25s;
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

body.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
}

/* ═══════════════════════════════════════════════ PRELOADER ════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.preloader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.preloader-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
  animation: pulseLogo 2s ease-in-out infinite;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes pulseLogo {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
  50%       { box-shadow: 0 0 80px rgba(212, 175, 55, 0.6); }
}

.preloader-bar-wrap {
  width: 240px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.preloader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: width 0.1s linear;
}

.preloader-percent {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
}

/* ══════════════════════════════════════════ SCROLL PROGRESS ═══════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 9000;
  transform-origin: left;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ═══════════════════════════════════════════════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.15);
  height: 68px;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: block;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 50%;
  transition: transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 2rem);
  height: 1px;
  background: var(--gold);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 36px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black-2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
  padding: 0.25rem 1rem;
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 100px;
}

/* ═══════════════════════════════════════ UTILITY CLASSES ═══════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.section-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  line-height: 1.7;
  margin-top: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-sub {
  margin: 1rem auto 0;
}

/* ─── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1rem 2.25rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-ripple {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  overflow: hidden;
  pointer-events: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
}

.btn--primary:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--black);
  padding: 1.125rem 2.75rem;
  font-size: 1rem;
}

.btn--gold:hover {
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
  transform: translateY(-3px);
}

.btn--outline {
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  color: var(--white);
  background: transparent;
}

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

.btn--outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: transparent;
}

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* Magnetic wrapper */
.btn-magnetic {
  position: relative;
}

/* ═══════════════════════════════════════════════════ HERO ══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 30% 50%, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.75) 60%, var(--black) 100%);
  z-index: 1;
}

.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-line {
  position: absolute;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.12) 50%, transparent 100%);
}

.hero-line--v1 {
  left: 15%;
  top: 0;
  width: 1px;
  height: 100%;
  animation: linePulse 4s ease-in-out infinite;
}

.hero-line--v2 {
  right: 25%;
  top: 0;
  width: 1px;
  height: 100%;
  animation: linePulse 4s ease-in-out 2s infinite;
}

.hero-line--h1 {
  left: 0;
  top: 60%;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.1) 50%, transparent 100%);
  animation: linePulse 6s ease-in-out 1s infinite;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  width: fit-content;
  opacity: 0;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,175,55,0); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(212,175,55,0.2); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.06em;
}

.hero-title-line--gold {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
}

.hero-stat {
  padding: 0 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: baseline;
}

.hero-stat-num::after {
  content: '+';
  font-size: 1.25rem;
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Hero mockup */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup {
  position: relative;
  width: 480px;
  height: 480px;
}

.mockup-card {
  position: absolute;
  width: 132px;
  opacity: 0;
  z-index: 1;
  cursor: none;
  transition: z-index 0s;
}

.mockup-card:hover {
  z-index: 10;
  transition: z-index 0s;
}

.mockup-card-scale {
  background: var(--black-3);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.08);
  transform: scale(1);
  transform-origin: center center;
  will-change: transform;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
}

.mockup-card:hover .mockup-card-scale {
  transform: scale(1.55);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(212, 175, 55, 0.35),
    0 0 0 1px rgba(212, 175, 55, 0.2);
}

/* Escurece os outros cards quando um está em hover */
.hero-mockup:hover .mockup-card:not(:hover) .mockup-card-scale {
  transform: scale(0.92);
  opacity: 0.55;
  filter: brightness(0.65);
}

.mockup-card--1 { top: 0; left: 50%; margin-left: -66px; }
.mockup-card--2 { top: 22%; right: 0; }
.mockup-card--3 { bottom: 22%; right: 0; }
.mockup-card--4 { bottom: 0; left: 50%; margin-left: -66px; }
.mockup-card--5 { top: 22%; left: 0; }

.mockup-card-inner {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.mockup-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mockup-card:hover .mockup-thumb {
  transform: scale(1.12);
}

.mockup-card:hover .mockup-label {
  padding-bottom: 0.65rem;
  font-size: 0.72rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
}

.mockup-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
  transition: padding 0.4s ease, font-size 0.4s ease, background 0.4s ease;
}

.mockup-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  z-index: 5;
  cursor: none;
}

.mockup-orb-scale {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(212, 175, 55, 0.05);
  overflow: hidden;
  transform: scale(1);
  transform-origin: center center;
  animation: orbFloat 4s ease-in-out infinite;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform;
}

.mockup-orb:hover {
  z-index: 11;
}

.mockup-orb:hover .mockup-orb-scale {
  animation-play-state: paused;
  transform: scale(1.45);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow:
    0 0 80px rgba(212, 175, 55, 0.45),
    0 0 120px rgba(212, 175, 55, 0.2),
    inset 0 0 40px rgba(212, 175, 55, 0.1);
}

.mockup-orb:hover .mockup-orb-logo {
  transform: scale(1.08);
}

/* Escurece cards quando hover no logo central */
.hero-mockup:has(.mockup-orb:hover) .mockup-card .mockup-card-scale {
  transform: scale(0.92);
  opacity: 0.55;
  filter: brightness(0.65);
}

/* Escurece logo quando hover em algum card */
.hero-mockup:has(.mockup-card:hover) .mockup-orb-scale {
  transform: scale(0.92);
  opacity: 0.7;
  filter: brightness(0.75);
  animation-play-state: paused;
}

.mockup-orb-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes orbFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%       { transform: scale(1) translateY(-10px); }
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════ QUEM SOMOS ════════ */
.about {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  background: var(--black-2);
}

.about-bg::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.about-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

/* Imagem real do about */
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-wrap:hover .about-img {
  transform: scale(1.04);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 10, 10, 0.5) 100%
  );
  pointer-events: none;
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.2);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.about-desc strong {
  color: var(--white);
  font-weight: 600;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}

.about-pillar:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.03);
}

.about-pillar-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-pillar strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.about-pillar p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════ SERVIÇOS ═════════ */
.services {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.services-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.services-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  cursor: none;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.service-card:hover,
.service-card:focus {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-4px);
}

.service-card:hover::before,
.service-card:focus::before {
  opacity: 1;
}

.service-card--highlight {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
  grid-column: span 1;
}

.service-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover .service-card-glow,
.service-card:focus .service-card-glow {
  opacity: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-card-icon,
.service-card:focus .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
}

.service-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-card-tags span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.service-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover .service-card-arrow,
.service-card:focus .service-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════ PORTFÓLIO ════════ */
.portfolio {
  padding: 8rem 0;
  background: var(--black-2);
  overflow: hidden;
}

.portfolio-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.portfolio-filter {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.portfolio-filter:hover {
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.3);
}

.portfolio-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
  transition: transform var(--transition);
}

.portfolio-item--large {
  grid-column: span 2;
}

.portfolio-item--tall {
  grid-row: span 2;
}

.portfolio-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Imagem real do portfólio */
.portfolio-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.2s ease;
  display: block;
  z-index: 1;
}

.portfolio-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-video--cover {
  opacity: 1;
  z-index: 1;
}

.portfolio-item.is-playing .portfolio-video {
  opacity: 1;
}

.portfolio-item.is-playing .portfolio-img {
  opacity: 0;
}

.portfolio-video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  font-size: 0.75rem;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, background 0.35s ease, opacity 0.35s ease;
}

.portfolio-item.is-playing .portfolio-video-badge {
  opacity: 0;
  transform: scale(0.8);
}

.portfolio-item:hover .portfolio-img,
.portfolio-item:hover .portfolio-video--cover {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info,
.portfolio-item:focus .portfolio-info {
  transform: translateY(0);
}

.portfolio-category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

.portfolio-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.portfolio-client {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.portfolio-link {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.portfolio-link:hover { transform: scale(1.15); }

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Itens extras ocultos até expandir */
.portfolio-grid:not(.is-expanded) .portfolio-item--more {
  display: none;
}

.portfolio-expand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.5rem auto 0;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.portfolio-expand:hover {
  color: var(--gold);
}

.portfolio-expand-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-expand:hover .portfolio-expand-arrow {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.portfolio-expand.is-open .portfolio-expand-arrow {
  transform: rotate(180deg);
}

/* ═════════════════════════════════════════════════ PROCESSO ════════ */
.process {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.process-bg::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.process-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.process-line {
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 4px;
}

.process-svg {
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.process-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-30px);
}

.process-step-num {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(212, 175, 55, 0.4);
  width: 80px;
  flex-shrink: 0;
  padding-top: 0.875rem;
  text-align: right;
  padding-right: 0.5rem;
}

.process-step-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: border-color var(--transition), background var(--transition);
}

.process-step:hover .process-step-content {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.025);
}

.process-step-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.process-step-title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.process-step-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════ NÚMEROS ════════ */
.numbers {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.numbers-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d00 0%, #1a1400 50%, #0d0d00 100%);
}

.numbers-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.numbers-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.number-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.number-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
}

.number-val {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.number-plus,
.number-percent {
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-left: 2px;
}

.number-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.number-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

/* ════════════════════════════════════════════ DIFERENCIAIS ═════════ */
.differentials {
  padding: 8rem 0;
  background: var(--black-2);
  overflow: hidden;
}

.differentials-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diff-card {
  padding: 2.25rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.diff-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-4px);
}

.diff-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.diff-card:hover .diff-card-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.diff-card-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.diff-card-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════════ DEPOIMENTOS ══════════ */
.testimonials {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.testimonials-bg::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
}

.testimonials-container {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  padding: 2.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.05);
}

.testimonial-quote {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author > div:nth-child(2) {
  flex: 1;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.7rem;
  margin-left: auto;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonials-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonials-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.15);
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.2);
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  width: 24px;
  background: var(--gold);
}

/* ════════════════════════════════════════════════════ FAQ ══════════ */
.faq {
  padding: 8rem 0;
  background: var(--black-2);
  overflow: hidden;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════════ CTA ═══════════ */
.cta {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at center, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.9) 100%);
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.cta-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotBlink 1.5s ease-in-out infinite;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-title em {
  color: var(--gold);
  font-style: italic;
}

.cta-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════ RODAPÉ ═══════════ */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
  padding: 6rem 0 4rem;
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.15);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contacts li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.footer-contacts li i {
  color: var(--gold);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contacts li a {
  color: inherit;
  transition: color var(--transition-fast);
}

.footer-contacts li a:hover {
  color: var(--gold);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 100px;
  color: #25D366;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all var(--transition-fast);
}

.footer-wa-btn:hover {
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: rgba(255,255,255,0.5); }

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: visible;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-float-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--black-3);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.06);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ════════════════════════════════════════════ REVEAL ANIMATION ══════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

[data-reveal="left"] {
  transform: translateX(-40px);
}

[data-reveal="right"] {
  transform: translateX(40px);
}

/* ═══════════════════════════════════════════════ RESPONSIVO ════════ */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-sub { max-width: 100%; }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    margin: 0 auto 1.75rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .numbers-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  body {
    cursor: auto;
  }

  .cursor { display: none; }

  .nav-links { display: none; }

  .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .portfolio-item--large,
  .portfolio-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .process-step-num {
    display: none;
  }

  .process-line {
    left: 22px;
  }

  .process-step {
    gap: 1rem;
  }

  .numbers-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .cta-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stat-num {
    font-size: 1.75rem;
  }

  .hero-stat:first-child { padding-left: 0; }

  .preloader-logo {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .numbers-container {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 92%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    justify-content: center;
  }
}

/* ══════════════════════════════ REDUCED MOTION ════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
