/* =========================================
   CLAW PRODUTORA — GLOBAL STYLES
   ========================================= */

/* Font: loaded via <link rel="stylesheet"> in <head> of every page (not @import — avoids render-blocking chain) */

:root {
  --pink: #ed2790;
  --pink-dim: rgba(237, 39, 144, 0.15);
  --pink-glow: rgba(237, 39, 144, 0.4);
  --black: #080808;
  --card: #111111;
  --card-border: rgba(237, 39, 144, 0.18);
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --nav-height: 72px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor {
  width: 12px; height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(237, 39, 144, 0.6);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
body:hover .cursor { opacity: 1; }
.cursor.hovering { width: 24px; height: 24px; }
.cursor-ring.hovering { width: 56px; height: 56px; opacity: 0.5; }

/* =========================================
   NAVIGATION — PILL STYLE (Human Academy)
   ========================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.4s ease;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.logo-default, .logo-scrolled {
  grid-area: 1 / 1;
  transition: opacity 0.4s ease;
  height: 69px;
  width: auto;
}
.logo-default { opacity: 1; }
.logo-scrolled { opacity: 0; }
nav.scrolled .logo-default { opacity: 0; }
nav.scrolled .logo-scrolled { opacity: 1; }

/* Logo */
.nav-logo {
  display: grid;
  align-items: center;
  flex-shrink: 0;
  margin-left: 80px;
}
.nav-logo span { color: var(--pink); }

/* ── PILL CONTAINER ── */
.nav-pill {
  display: flex;
  align-items: center;
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 5px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.nav-links > li.active > a,
.nav-links > li > a.active {
  background: var(--white);
  color: #0a0a0a !important;
  font-weight: 600;
}
.nav-links > li > a .chevron {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
.nav-links > li:hover > a .chevron { transform: rotate(180deg); }

/* ── RICH DROPDOWN ── */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(14, 14, 14, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  min-width: 520px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Bridge invisível que preenche o gap entre o link e o dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  height: 24px;
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.18s;
  cursor: none;
}
.dropdown-item:hover { background: rgba(255, 255, 255, 0.05); }
.dropdown-item-icon {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.2s, border-color 0.2s;
}
.dropdown-item:hover .dropdown-item-icon {
  background: rgba(237, 39, 144, 0.12);
  border-color: rgba(237, 39, 144, 0.25);
}
.dropdown-item-text { display: flex; flex-direction: column; gap: 3px; }
.dropdown-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.18s;
}
.dropdown-item:hover .dropdown-item-title { color: var(--pink); }
.dropdown-item-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

/* ── RIGHT SIDE ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 120px;
  justify-content: flex-end;
}
.nav-cta {
  background: var(--white);
  color: #0a0a0a !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X quando menu aberto */
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 998;
  flex-direction: column;
  align-items: stretch;
  padding: calc(var(--nav-height) + 12px) 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 2px;
  /* slide down animation */
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.35s;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.mobile-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.65);
  padding: 11px 18px;
  border-radius: 0;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.mobile-menu a:hover,
.mobile-menu a:active { color: var(--white); background: rgba(255,255,255,0.07); }
.mobile-menu a.active { color: #0a0a0a !important; background: var(--white); font-weight: 600; border-radius: 0; }
.mobile-menu .btn-primary {
  background: var(--pink) !important;
  color: white !important;
  text-align: center;
  margin-top: 12px;
  border-radius: 100px;
  padding: 12px 20px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
}
.mobile-menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 0;
}
.mobile-close { display: none !important; }

@media (max-width: 1024px) {
  .nav-pill { display: none; }
  .nav-right .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
}

/* =========================================
   NOISE OVERLAY
   ========================================= */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: noiseShift 0.5s steps(2) infinite;
}
@keyframes noiseShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-2px, 1px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, 2px); }
  100% { transform: translate(0,0); }
}

/* =========================================
   HERO SHARED
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 48px 80px;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240vh;
  background-image:
    linear-gradient(rgba(237,39,144,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,39,144,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  background: transparent;
  position: relative;
  z-index: 1;
  border-top: 2px solid rgba(255,255,255,0.07);
  border-bottom: 2px solid rgba(255,255,255,0.07);
  opacity: 0.70;
  mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 75%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 24s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   SECTION LABELS
   ========================================= */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--pink);
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(237,39,144,0.1);
  border: 1px solid rgba(237,39,144,0.1);
  border-radius: 24px;
  overflow: hidden;
}
.service-card {
  background: var(--black);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, rgba(237,39,144,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover { background: #0e0e0e; }
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--pink);
  letter-spacing: 0.14em;
  opacity: 0.7;
}
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--pink-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--card-border);
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-card-icon {
  background: rgba(237,39,144,0.2);
  transform: scale(1.08) rotate(-3deg);
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 12px; }
.service-card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, color 0.2s;
}
.service-card:hover .service-card-btn {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: none;
  border: none;
}
.btn-primary:hover {
  background: #ff3aa5;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(237,39,144,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s;
  cursor: none;
}
.btn-ghost:hover {
  border-color: var(--pink);
  background: rgba(237,39,144,0.05);
}

/* =========================================
   STATS
   ========================================= */
.stats-row {
  display: flex;
  align-items: center;
  gap: 64px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Space Mono', monospace;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number span { color: var(--pink); }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* =========================================
   PILLS / TAGS
   ========================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,39,144,0.1);
  border: 1px solid rgba(237,39,144,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.04em;
}
.pill-dot {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* =========================================
   ACCORDION / FAQ
   ========================================= */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: none;
  gap: 24px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--pink); }
.faq-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.faq-item.open .faq-icon {
  background: var(--pink);
  border-color: var(--pink);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  padding: 80px 48px 40px;
  border-top: 1px solid rgba(237,39,144,0.1);
}
.footer-logo-img {
  height: 62px;
  width: auto;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(237,39,144,0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-col:first-child { margin-left: 70px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.footer-service-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
}
.footer-service-btn {
  display: inline-block;
  border: 1px solid var(--pink);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.8rem;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer-service-btn:hover { background: var(--pink); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-contact-item:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: var(--gray);
}

/* =========================================
   CTA FOOTER SECTION (Home only)
   ========================================= */
.cta-footer {
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  text-align: center;
  background: var(--black);
}
.cta-footer::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(237,39,144,0.2) 0%, transparent 65%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-footer-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 24px;
}
.cta-footer h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.cta-footer h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #ed2790, #ff6ab0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-footer p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-footer-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* =========================================
   PAGE INNER HERO (Subpages)
   ========================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 80px) 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-hero-content { max-width: 700px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.page-hero h1 span { color: var(--pink); }
.page-hero p {
  font-size: 1.1rem;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 560px;
  margin-top: 16px;
}

/* =========================================
   CONTENT SECTIONS
   ========================================= */
section { padding: 100px 80px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
/* Centralize all section titles globally (except page heroes) */
section h2 { text-align: center; }
section .section-label { display: flex; justify-content: center; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header h2 span { color: var(--pink); }
.section-header p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(237,39,144,0.1);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(237,39,144,0.12);
}
.comparison-col { background: var(--black); padding: 40px; }
.comparison-col.ours { background: rgba(237,39,144,0.04); }
.comparison-col h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.comparison-col.ours h4 { color: var(--pink); border-bottom-color: rgba(237,39,144,0.2); }
.comparison-col.theirs h4 { color: var(--gray); }
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comparison-item:last-child { border-bottom: none; }
.check { color: var(--pink); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.cross { color: #444; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* =========================================
   GLITCH TEXT
   ========================================= */
.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
}
.glitch::before {
  animation: glitch1 4s steps(1) infinite;
  color: var(--pink);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, 0);
}
.glitch::after {
  animation: glitch2 4s steps(1) infinite;
  color: #00e5ff;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
}
@keyframes glitch1 {
  0%, 90%, 100% { opacity: 0; transform: translate(-2px, 0); }
  92% { opacity: 0.8; transform: translate(-4px, 0); }
  94% { opacity: 0; }
  96% { opacity: 0.6; transform: translate(2px, 0); }
  98% { opacity: 0; }
}
@keyframes glitch2 {
  0%, 90%, 100% { opacity: 0; transform: translate(2px, 0); }
  91% { opacity: 0.7; transform: translate(4px, 0); }
  93% { opacity: 0; }
  97% { opacity: 0.5; transform: translate(-3px, 0); }
  99% { opacity: 0; }
}

/* =========================================
   VIDEO CARD
   ========================================= */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   PORTFOLIO GRID
   ========================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
/* Desktop: verticals container vira "transparente" — filhos entram direto no grid */
.portfolio-verticals {
  display: contents;
}
.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(237,39,144,0.1);
}
.yt-thumb {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.yt-thumb:hover img { transform: scale(1.04); }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.yt-play svg {
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  padding: 14px;
  width: 60px;
  height: 60px;
  box-sizing: content-box;
  transition: background 0.3s, transform 0.3s;
}
.yt-thumb:hover .yt-play { background: rgba(0,0,0,0.15); }
.yt-thumb:hover .yt-play svg { background: var(--pink); transform: scale(1.1); }
.portfolio-item iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Desktop: horizontal → coluna direita linha 1 */
.portfolio-item--horizontal {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 16/9;
}
/* Desktop: primeiro vertical → coluna esquerda, abrange as 2 linhas */
.portfolio-item--vert:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: unset;
  height: 100%;
}
/* Desktop: segundo vertical → coluna direita linha 2, aparece como 16:9 */
.portfolio-item--vert:last-child {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 16/9;
}

/* =========================================
   PHOTO STRIP (scroll)
   ========================================= */
.photo-strip {
  overflow: hidden;
  padding: 0;
}
.photo-strip-track {
  display: flex;
  gap: 16px;
  animation: photoScroll 30s linear infinite;
  width: max-content;
}
.photo-strip:hover .photo-strip-track { animation-play-state: paused; }
.photo-strip-img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.photo-strip-img:hover { opacity: 1; }
@keyframes photoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================
   ABOUT SPLIT
   ========================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.trait {
  background: var(--card);
  border: 1px solid rgba(237,39,144,0.12);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.trait:hover {
  transform: translateY(-4px);
  border-color: rgba(237,39,144,0.5);
  box-shadow: 0 0 24px rgba(237,39,144,0.18), 0 8px 32px rgba(0,0,0,0.3);
  animation: traitPulse 0.6s ease;
}
@keyframes traitPulse {
  0%   { box-shadow: 0 0 0 rgba(237,39,144,0); }
  40%  { box-shadow: 0 0 28px rgba(237,39,144,0.35); }
  100% { box-shadow: 0 0 24px rgba(237,39,144,0.18), 0 8px 32px rgba(0,0,0,0.3); }
}
.trait-icon { font-size: 1.4rem; }
.trait-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.trait-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
/* About title */
.about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: left;
}
.about-title-muted {
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}
.about-title-bold {
  color: var(--white);
  font-weight: 800;
}

.about-visual {
  position: relative;
}

/* Vertical scroll 2 colunas */
.about-scroll-wrap {
  display: flex;
  gap: 10px;
  height: 560px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}
.about-scroll-col {
  flex: 1;
  overflow: hidden;
}
.about-scroll-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollUp 36s linear infinite;
}
.about-scroll-track--slow {
  animation-duration: 48s;
}
.about-scroll-track img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  flex-shrink: 0;
}
@keyframes scrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* =========================================
   TOUCH / REDUCED MOTION
   ========================================= */

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  a, button, [role="button"] { cursor: pointer !important; }
  .dropdown-item { cursor: pointer !important; }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* TABLET: ≤1024px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-mosaic { height: 380px; }
  section { padding: 80px 48px; }

  .nav-logo { margin-left: 0; }
  .nav-links > li > a { padding: 8px 11px; font-size: 0.78rem; }
  .dropdown { min-width: 400px; }
}

/* MOBILE: ≤768px */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-pill, .nav-links, .nav-cta { display: none; }
  .nav-logo { margin-left: 0; display: block; }
  .hamburger { display: flex; }

  /* Logo principal (CLAW completo) centralizado no mobile */
  .logo-default {
    position: fixed;
    left: 50%;
    top: calc(var(--nav-height) / 2);
    transform: translate(-50%, -50%);
    height: 44px;
    z-index: 1001;
    grid-area: unset;
  }
  /* Logo C — fica à esquerda normalmente */
  .logo-scrolled {
    position: static;
    display: block;
    height: 40px;
    grid-area: unset;
  }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Portfolio mobile: horizontal topo + 2 verticais lado a lado */
  .portfolio-grid { display: flex; flex-direction: column; gap: 16px; }
  .portfolio-verticals { display: flex; flex-direction: column; gap: 16px; }
  .portfolio-item--horizontal { aspect-ratio: 16/9; grid-column: auto; grid-row: auto; }
  .portfolio-item--vert:first-child { grid-column: auto; grid-row: auto; aspect-ratio: 9/16; height: auto; }
  .portfolio-item--vert:last-child { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-logo-img { height: 56px; }
  .footer-col { align-items: center; text-align: center; }
  .footer-col:first-child { margin-left: 0; }
  .footer-tagline { text-align: center; }
  .footer-service-btns { justify-content: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; justify-content: center; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 20px; }
  .page-hero { padding: calc(var(--nav-height) + 40px) 20px 40px; }
  .hero { padding: calc(var(--nav-height) + 40px) 20px 60px; }
  .comparison { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cta-footer { padding: 72px 20px; }
  .cta-inner h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .section-header h2 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .service-card { padding: 28px 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { gap: 12px; }

  /* Mobile menu larger touch targets */
  .mobile-menu a { padding: 14px 0; font-size: 1.1rem; min-height: 44px; }
}

/* SMALL MOBILE: ≤480px */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  section { padding: 48px 16px; }
  .services-grid { gap: 12px; }
  .portfolio-grid { gap: 12px; }
  .cta-inner h2 { font-size: 2rem; }
  .section-header h2 { font-size: 1.8rem; }
}
