/* ═══════════════════════════════════════════════════
   R2 CREATORS — style.css
   Dark theme: deep navy/black bg, magenta/purple accents
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #09090f;
  color: #e2e2f0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── VARIABLES ───────────────────────────────────── */
:root {
  --pink:    #e040fb;
  --purple:  #7c3aed;
  --blue:    #2563eb;
  --dark:    #09090f;
  --dark2:   #0f0f1a;
  --dark3:   #15152a;
  --card:    #11111e;
  --border:  rgba(255,255,255,0.07);
  --text:    #e2e2f0;
  --muted:   #8888aa;
  --grad:    linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  --grad2:   linear-gradient(135deg, var(--purple), var(--blue));
  --nav-h:   72px;
}

/* ── TYPOGRAPHY ──────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--muted); }
em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
a  { text-decoration: none; color: inherit; }

/* ── UTILITIES ───────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--muted); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 0 30px rgba(192,38,211,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(192,38,211,0.6); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--pink); background: rgba(224,64,251,0.08); transform: translateY(-2px); }

.btn-nav {
  background: var(--grad);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 0 20px rgba(192,38,211,0.3);
}
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── NAVBAR ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(9,9,15,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
}
#navbar.scrolled {
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(9,9,15,0.97);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-link:hover { color: #fff; }
.mobile-cta { margin-top: 12px; text-align: center; border: none; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.r2-logo-3d{
  position: relative;
}

.logo-svg{
  width: min(380px, 70vw);
  height: auto;
}
.logo-glow{
  position:absolute;
  inset:0;
  z-index:1;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 { width: 600px; height: 600px; background: #7c3aed; top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: #c026d3; bottom: -100px; left: -50px; animation: float2 10s ease-in-out infinite; }
.blob-3 { width: 300px; height: 300px; background: #2563eb; top: 40%; left: 40%; animation: float3 12s ease-in-out infinite; }

@keyframes float1 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-30px, 30px) scale(1.05); } }
@keyframes float2 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(20px,-20px) scale(1.08); } }
@keyframes float3 { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-15px,25px) scale(0.95); } }

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title { color: #fff; margin-bottom: 24px; }
.hero-title em { display: inline-block; }
.hero-title strong { font-weight: 800; }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; max-width: 500px; }
.hero-ctas { margin-bottom: 32px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-visual { display: flex; justify-content: center; align-items: center; }
.r2-logo-3d { position: relative; animation: logoFloat 4s ease-in-out infinite; }
@keyframes logoFloat { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-20px) rotate(2deg); } }
.logo-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,38,211,0.4), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{ opacity: 0.6; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.1); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 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; } }

/* ── ANIMATIONS ──────────────────────────────────── */
.animate-fade        { animation: fadeIn .8s ease forwards; opacity: 0; }
.animate-slide-up    { animation: slideUp .9s ease forwards .1s; opacity: 0; }
.animate-fade-delay  { animation: fadeIn .8s ease forwards .3s; opacity: 0; }
.animate-fade-delay2 { animation: fadeIn .8s ease forwards .5s; opacity: 0; }
.animate-tags        { animation: fadeIn .8s ease forwards .7s; opacity: 0; }
.animate-visual      { animation: fadeIn 1s ease forwards .4s; opacity: 0; }

@keyframes fadeIn  { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(40px); } }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }
.reveal:nth-child(7) { transition-delay: .15s; }

/* ── PROBLEMA ────────────────────────────────────── */
.problema { padding: 100px 0; background: var(--dark2); }
.problema-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problema-left h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: #fff; margin-bottom: 32px; }
.problema-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problema-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: background .2s, border-color .2s;
}
.problema-list li:hover { background: rgba(224,64,251,0.06); border-color: rgba(224,64,251,0.2); }
.icon-x { color: var(--pink); font-weight: 700; font-size: 0.85rem; }

.solucao-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.solucao-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 32px;
}
.team-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.tc {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}
.tc1 { background: linear-gradient(135deg, #c026d3, #7c3aed); }
.tc2 { background: linear-gradient(135deg, #7c3aed, #2563eb); }
.tc3 { background: linear-gradient(135deg, #2563eb, #0891b2); }
.tc4 { background: linear-gradient(135deg, #0891b2, #059669); }
.tc5 { background: linear-gradient(135deg, #d97706, #dc2626); }
.tc6 { background: linear-gradient(135deg, #dc2626, #c026d3); }
.solucao-card p { font-size: 0.95rem; color: var(--muted); }

/* ───────── PORTFOLIO ───────── */
section.portfolio {
  background: #ffffff !important;
  padding: 120px 24px !important;
  text-align: center !important;
}

section.portfolio .portfolio-header {
  text-align: center !important;
  max-width: 700px !important;
  margin: 0 auto 60px !important;
}

section.portfolio .portfolio-header h2 {
  color: #111111 !important;
  font-size: 40px !important;
  margin-bottom: 10px !important;
  background: none !important;
  -webkit-text-fill-color: #111111 !important;
}

section.portfolio .portfolio-header p {
  color: #666666 !important;
  margin-bottom: 0 !important;
}

section.portfolio .portfolio-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  overflow-x: auto !important;
  padding-bottom: 16px !important;
}

section.portfolio .video-card {
  flex: 0 0 220px !important;
  width: 220px !important;
  min-width: 220px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15) !important;
}

section.portfolio .video-card.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

section.portfolio .video-wrapper {
  position: relative !important;
  width: 100% !important;
  padding-top: 177.77% !important;
}

section.portfolio .video-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
}

@media (max-width: 768px) {
  section.portfolio .portfolio-grid {
    justify-content: flex-start !important;
  }
  section.portfolio .video-card {
    flex: 0 0 180px !important;
    width: 180px !important;
    min-width: 180px !important;
  }
}
/* ── SERVIÇOS ────────────────────────────────────── */
.servicos { padding: 100px 0; }
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.servico-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.servico-card:hover {
  border-color: rgba(192,38,211,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.2);
}
.servico-icon { font-size: 2rem; margin-bottom: 16px; }
.servico-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
.servico-card p { font-size: 0.9rem; color: var(--muted); }

/* ── COMO FUNCIONA ───────────────────────────────── */
.como-funciona { padding: 100px 0; background: var(--dark2); }
.steps-track { position: relative; display: flex; flex-direction: column; gap: 0; }
.steps-line {
  position: absolute;
  left: 39px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pink), var(--purple), transparent);
  opacity: 0.3;
}
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 0 30px rgba(192,38,211,0.3);
}
.step-content h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { font-size: 0.95rem; }

/* ── POR QUE R2 ──────────────────────────────────── */
.porque { padding: 100px 0; }
.porque-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.porque-left p { margin-bottom: 16px; }
.porque-left .btn-primary { margin-top: 12px; }
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diferencial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .3s, transform .3s;
}
.diferencial:hover { border-color: rgba(192,38,211,0.3); transform: translateY(-4px); }
.dif-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.diferencial h4 { color: #fff; margin-bottom: 8px; font-size: 0.95rem; }
.diferencial p { font-size: 0.85rem; }

/* ── TIME ────────────────────────────────────────── */
.time { padding: 100px 0; background: var(--dark2); }
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.membro { text-align: center; }
.membro-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(192,38,211,0.2);
  transition: transform .3s, box-shadow .3s;
}
.membro:hover .membro-avatar { transform: scale(1.1); box-shadow: 0 0 35px rgba(192,38,211,0.4); }
.membro h4 { color: #fff; font-size: 0.95rem; margin-bottom: 4px; }
.membro p { font-size: 0.8rem; color: var(--pink); }

/* ── PARA QUEM ───────────────────────────────────── */
.para-quem { padding: 100px 0; }
.nichos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nicho {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .3s, transform .3s;
}
.nicho:hover { border-color: rgba(192,38,211,0.3); transform: translateY(-4px); }
.nicho-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
.nicho h4 { color: #fff; margin-bottom: 8px; }
.nicho p { font-size: 0.88rem; }

/* ── FAQ ─────────────────────────────────────────── */
.faq { padding: 100px 0; background: var(--dark2); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 16px; }
.faq-header p { font-size: 0.95rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow {
  color: var(--pink);
  font-size: 0.7rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--muted);
  padding-bottom: 20px;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── CTA FINAL ───────────────────────────────────── */
.cta-final {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.25) 0%, rgba(192,38,211,0.15) 40%, transparent 70%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); color: #fff; margin-bottom: 20px; }
.cta-inner p { font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: #060609;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a, .footer-col li span { font-size: 0.85rem; color: var(--muted); transition: color .2s; line-height: 1.6; }
.footer-col li a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--pink); color: var(--pink); background: rgba(224,64,251,0.08); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 48px; }
  .hero-visual { order: -1; }
  .logo-svg { width: 220px; }

  .problema-inner,
  .porque-inner { grid-template-columns: 1fr; gap: 40px; }

  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .nichos-grid { grid-template-columns: 1fr 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
  .step { padding: 24px 0; }
  .step-num { width: 64px; height: 64px; font-size: 1rem; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .nichos-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
}
