/* ================================================
   CRIAR+ STUDIO — DESIGN SYSTEM
   ================================================ */

:root {
  --orange: #FF6200;
  --orange-light: #FF7A28;
  --orange-dark: #E55500;
  --orange-glow: rgba(255, 98, 0, 0.25);
  --black: #000000;
  --black-2: #0A0A0A;
  --black-3: #111111;
  --black-4: #1A1A1A;
  --black-5: #222222;
  --white: #FFFFFF;
  --gray-1: #F5F5F5;
  --gray-3: #AAAAAA;
  --gray-5: #555555;
  --gray-6: #333333;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-orange: 0 0 40px rgba(255, 98, 0, 0.3);
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

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

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

ul {
  list-style: none;
}

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

/* ===== UTILITIES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.d-none-mobile {
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  cursor: pointer;
}

/* shimmer sweep em todos os botões */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: none;
}

.btn:hover::after {
  left: 130%;
  transition: left 0.55s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #FF7A28 0%, var(--orange) 50%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow:
    0 4px 20px rgba(255, 98, 0, 0.45),
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 -2px 0 rgba(0,0,0,0.2) inset;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(255, 98, 0, 0.6),
    0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-primary:active {
  transform: translateY(0px) scale(0.99);
}

.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.1);
}

.btn-outline {
  color: var(--orange);
  border: 2px solid var(--orange);
  background: rgba(255, 98, 0, 0.05);
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 98, 0, 0.5);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.0625rem;
}

.btn-xl {
  padding: 20px 48px;
  font-size: 1.0625rem;
}

.btn-arrow {
  font-size: 1.1em;
  transition: transform var(--transition);
  display: inline-block;
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 98, 0, 0.12);
  border: 1px solid rgba(255, 98, 0, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--white);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

[data-aos="fade-down"] {
  transform: translateY(-20px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.10) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 98, 0, 0.08);
  border: 1px solid rgba(255, 98, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gray-3);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-3);
  font-weight: 500;
}

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


/* ===== HERO MEDAL ===== */
.hero-medal-wrap {
  position: absolute;
  right: -1%;
  top: 52%;
  transform: translateY(-50%);
  width: 1200px;
  height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

/* Anéis orbitais */
.medal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 98, 0, 0.18);
  animation: ringRotate 12s linear infinite;
}

.medal-ring-1 {
  width: 620px;
  height: 620px;
  border-color: rgba(255, 98, 0, 0.22);
  animation-duration: 10s;
}

.medal-ring-1::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px 4px var(--orange);
  transform: translateX(-50%);
}

.medal-ring-2 {
  width: 720px;
  height: 720px;
  border-color: rgba(255, 98, 0, 0.12);
  animation-duration: 16s;
  animation-direction: reverse;
}

.medal-ring-2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 30%;
  width: 6px;
  height: 6px;
  background: rgba(255, 200, 80, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(255, 200, 80, 0.7);
}

.medal-ring-3 {
  width: 520px;
  height: 520px;
  border-color: rgba(255, 98, 0, 0.09);
  animation-duration: 22s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Glow de fundo pulsante */
.medal-glow-pulse {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 98, 0, 0.28) 0%, rgba(255, 98, 0, 0.08) 50%, transparent 75%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1);   opacity: 0.7; }
  50%       { transform: scale(1.2); opacity: 1;   }
}

/* A medalha em si */
.hero-medal {
  width: 1200px;
  height: 1200px;
  object-fit: contain;
  position: relative;
  z-index: 3;
  animation: medalFloat 5s ease-in-out infinite, medalSpin 18s linear infinite;
  filter:
    drop-shadow(0 0 24px rgba(255, 98, 0, 0.7))
    drop-shadow(0 0 60px rgba(255, 98, 0, 0.35))
    drop-shadow(0 8px 32px rgba(0,0,0,0.8));
  will-change: transform, filter;
}

@keyframes medalFloat {
  0%, 100% { transform: translateY(0px)   rotateX(0deg); }
  25%       { transform: translateY(-14px) rotateX(3deg); }
  75%       { transform: translateY(8px)   rotateX(-2deg); }
}

@keyframes medalSpin {
  0%   { filter: drop-shadow(0 0 24px rgba(255, 98, 0, 0.7))  drop-shadow(0 0 60px rgba(255, 98, 0, 0.35)) brightness(1); }
  25%  { filter: drop-shadow(0 0 36px rgba(255, 150, 0, 0.9)) drop-shadow(0 0 80px rgba(255, 98, 0, 0.5))  brightness(1.15); }
  50%  { filter: drop-shadow(0 0 24px rgba(255, 98, 0, 0.7))  drop-shadow(0 0 60px rgba(255, 98, 0, 0.35)) brightness(1); }
  75%  { filter: drop-shadow(0 0 42px rgba(255, 200, 80, 0.8)) drop-shadow(0 0 90px rgba(255, 160, 0, 0.5)) brightness(1.2); }
  100% { filter: drop-shadow(0 0 24px rgba(255, 98, 0, 0.7))  drop-shadow(0 0 60px rgba(255, 98, 0, 0.35)) brightness(1); }
}

/* Reflexo de luz passando */
.medal-light-sweep {
  position: absolute;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
  clip-path: circle(28% at 50% 50%);
}

.medal-light-sweep::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 40%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.04) 60%,
    transparent 100%
  );
  animation: lightSweep 5s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes lightSweep {
  0%   { transform: translateX(0%)   skewX(-10deg); opacity: 0; }
  5%   { opacity: 1; }
  45%  { transform: translateX(600%) skewX(-10deg); opacity: 1; }
  55%  { opacity: 0; }
  100% { opacity: 0; transform: translateX(600%) skewX(-10deg); }
}

/* Responsivo medalha */
@media (max-width: 900px) {
  .hero-medal-wrap {
    right: -10%;
    top: 50%;
    width: 380px;
    height: 380px;
    opacity: 0.35;
  }
  .hero-medal {
    width: 340px;
    height: 340px;
  }
  .medal-ring-1 { width: 280px; height: 280px; }
  .medal-ring-2 { width: 340px; height: 340px; }
  .medal-ring-3 { width: 240px; height: 240px; }
  .medal-glow-pulse { width: 240px; height: 240px; }
  .medal-light-sweep { width: 340px; height: 340px; }
}

@media (max-width: 600px) {
  .hero-medal-wrap {
    display: none;
  }
}

/* ===== PERFORMANCE MOBILE ===== */
@media (max-width: 768px) {
  /* Desativa animações pesadas em mobile */
  .medal-ring,
  .medal-glow-pulse,
  .about-scan-line,
  .ticker-track {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ticker-track {
    animation: ticker 40s linear infinite;
  }

  /* Garante que nada extrapole a largura */
  section,
  .container,
  .nav-container {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Parallax desativado no mobile */
  .hero-image,
  .hero-glow {
    transform: none !important;
    transition: none !important;
  }
}

/* Prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}

.scroll-indicator span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  padding: 18px 0;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.ticker-dot {
  color: rgba(255, 255, 255, 0.5) !important;
}

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

/* ===== SERVICES ===== */
.services {
  background: var(--black-2);
}

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

.service-card {
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(255, 98, 0, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 98, 0, 0.1);
}

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

.service-card.featured {
  background: linear-gradient(145deg, var(--black-4) 0%, rgba(255, 98, 0, 0.06) 100%);
  border-color: rgba(255, 98, 0, 0.2);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 98, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-5);
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.65;
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
}

.service-link span {
  transition: transform var(--transition);
}

.service-link:hover span {
  transform: translateX(4px);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.about-text strong {
  color: var(--white);
  font-weight: 700;
}

/* Checklist */
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.check-icon {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

.check-icon svg {
  width: 100%;
  height: 100%;
}

/* Visual — foto do Breno */
.about-visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: -70px auto 0;
  height: 700px;
}

/* Card escuro que fica atrás — ocupa a parte inferior */
.about-card-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: #0d0d0d;
  border-radius: 20px;
  border: 2px solid var(--orange);
  box-shadow:
    0 0 24px rgba(255, 98, 0, 0.3),
    0 0 80px rgba(255, 98, 0, 0.1);
  z-index: 0;
}

/* Foto centralizada, começa do topo e ultrapassa o card */
.about-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 105%;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  filter: drop-shadow(0 -4px 20px rgba(0,0,0,0.5));
}

/* Badge CEO */
.about-ceo-card {
  position: absolute;
  bottom: 24px;
  right: -10px;
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(255, 98, 0, 0.55);
}

.ceo-card-logo {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.ceo-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ceo-card-info strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.ceo-card-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar:hover {
  border-color: rgba(255, 98, 0, 0.2);
  background: rgba(255, 98, 0, 0.04);
}

.pillar-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar strong {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.pillar span {
  font-size: 0.875rem;
  color: var(--gray-3);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--black-2);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-3);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

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

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

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

.portfolio-item:hover {
  transform: scale(1.02);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--black-4);
}

.portfolio-item.large .portfolio-image {
  height: 100%;
  min-height: 580px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

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

.portfolio-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  width: fit-content;
}

.portfolio-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-overlay p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Video & Social placeholders */
/* ===== VÍDEO NO PORTFÓLIO ===== */
.portfolio-video-wrap {
  position: relative;
  background: var(--black);
  overflow: hidden;
}

.portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-video {
  transform: scale(1.04);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}

.portfolio-item:hover .video-play-overlay {
  opacity: 0;
}

.portfolio-video-wrap.playing .video-play-overlay {
  display: none;
}

.video-play-btn-real {
  width: 72px;
  height: 72px;
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(255,98,0,0.5));
  transition: transform var(--transition);
}

.video-play-btn-real:hover {
  transform: scale(1.15);
}

.video-play-btn-real svg {
  width: 100%;
  height: 100%;
}

.portfolio-social-placeholder {
  background: var(--black-5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.social-mock {
  background: var(--black-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.social-mock-header {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dot:first-child { background: #FF5F57; }
.dot:nth-child(2) { background: #FEBC2E; }
.dot:last-child { background: #28C840; }

.social-mock-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.mock-line.short {
  width: 60%;
}

.mock-image-placeholder {
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 98, 0, 0.15) 0%, rgba(255, 98, 0, 0.05) 100%);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 98, 0, 0.15);
}

.portfolio-cta {
  text-align: center;
  margin-top: 56px;
}

/* ===== PROCESS ===== */
.process {
  background: var(--black);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(255, 98, 0, 0.2);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 98, 0, 0.15);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: var(--transition);
}

.process-step:hover .step-number {
  color: var(--orange);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.65;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--orange);
  z-index: 1;
  opacity: 0.5;
  font-weight: 700;
}

.step-arrow.last {
  opacity: 1;
  color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--black-2);
}

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

.testimonial-card {
  background: var(--black-4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 98, 0, 0.2);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: linear-gradient(145deg, var(--black-4) 0%, rgba(255, 98, 0, 0.06) 100%);
  border-color: rgba(255, 98, 0, 0.2);
  position: relative;
  top: -12px;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--gray-3);
}

/* ===== FAQ ===== */
.faq {
  background: var(--black);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.faq-heading p {
  font-size: 1rem;
  color: var(--gray-3);
  line-height: 1.65;
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 98, 0, 0.12) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.cta-desc {
  font-size: 1.125rem;
  color: var(--gray-3);
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--gray-5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  object-position: left;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--black-5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--gray-3);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact p {
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--gray-5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .step-arrow {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }


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

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

  .hero-badge {
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .testimonial-card.featured {
    top: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
    padding: 40px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 14px 24px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1000;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

  .portfolio-item.large .portfolio-image {
    height: 280px;
    min-height: unset;
  }

  .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .d-none-mobile {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .btn-xl {
    padding: 16px 28px;
    font-size: 0.9375rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.625rem;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Cursor pointer nas imagens do portfólio */
.portfolio-item .portfolio-image img {
  cursor: zoom-in;
}
