/* ===== RYZO — Rise Your Zone | Landing Page ===== */
:root {
  --bg: #0a0610;
  --bg-soft: #0f0b16;
  --surface: #15101f;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-bright: #c4b5fd;
  --purple-dark: #6d28d9;
  --accent-glow: #a78bfa;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --gradient-line: linear-gradient(90deg, #8b5cf6, #6366f1);
  --gradient-text: linear-gradient(90deg, #a78bfa, #6366f1);
  --font: 'Outfit', sans-serif;
  --radius: 12px;
  --header-h: 72px;
  --whatsapp: #25d366;
  --whatsapp-hover: #20bd5a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/* Noise overlay sutil */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Grid de fundo (estilo dos prints) */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 6, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  transition: background 0.3s, border-color 0.3s;
}

.header.scrolled {
  background: rgba(10, 6, 16, 0.95);
  border-bottom-color: rgba(139, 92, 246, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 36px;
  height: 42px;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.5));
  transition: transform 0.3s;
}

.logo-link:hover .logo-icon {
  transform: translateY(-2px);
}

.logo-text {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.6);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--purple-light);
}

.btn-nav {
  color: var(--purple-light) !important;
  padding: 8px 18px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: var(--radius);
  background: transparent;
}

.btn-nav:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: var(--purple-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-soft);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  z-index: 999;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(167, 139, 250, 0.5);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border: 1px solid rgba(167, 139, 250, 0.5);
}

.btn-outline:hover {
  background: rgba(167, 139, 250, 0.1);
  border-color: var(--purple-light);
  box-shadow: none;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.4);
  gap: 10px;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  box-shadow: 0 0 32px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-icon::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-arrow {
  margin-left: 4px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
}

.hero-bg-rings {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
              radial-gradient(ellipse 60% 40% at 50% 50%, rgba(139, 92, 246, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-star {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  background: transparent;
  opacity: 0.6;
}

.hero-star-tl { top: 15%; left: 10%; }
.hero-star-br { bottom: 20%; right: 10%; }

.hero-logo-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  background: rgba(10, 6, 16, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
  margin-bottom: 40px;
}

.hero-logo-icon {
  width: 56px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(167, 139, 250, 0.5));
  animation: float 4s ease-in-out infinite;
}

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

.hero-logo-box .hero-brand {
  font-size: 1.5rem;
  margin: 0;
}

.hero-logo-box .hero-line {
  width: 60px;
  height: 2px;
  margin: 0;
}

.hero-logo-box .hero-slogan {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.hero-headline {
  font-size: clamp(1.5rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 20px;
  min-height: 1.4em;
}

.hero-headline-static {
  color: #fff;
}

.hero-headline-dynamic {
  color: var(--purple-light);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.6);
}

.hero-cursor {
  animation: blink 1s step-end infinite;
  color: var(--purple-bright);
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  border-radius: 1px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ===== Manchete + Benefícios ===== */
.manchete {
  position: relative;
  padding: 100px 24px;
}

.manchete-rings {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.manchete-quote-box {
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 28px 32px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius);
  background: rgba(139, 92, 246, 0.06);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

.manchete-quote {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}

.manchete-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.beneficio-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.beneficio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(139, 92, 246, 0.08);
}

.beneficio-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.beneficio-icon-rocket { background: rgba(139, 92, 246, 0.2); color: var(--purple-light); }
.beneficio-icon-target { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.beneficio-icon-bolt { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.beneficio-icon-chart { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

.beneficio-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}

.beneficio-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Section titles ===== */
.section-pill {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(99, 102, 241, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 16px;
}

.section-pill-upper {
  letter-spacing: 0.15em;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 48px;
}

.section-sub strong {
  color: var(--purple-light);
}

/* ===== Serviços ===== */
.servicos {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.servicos .section-title,
.servicos .section-sub {
  text-align: center;
}

.servicos .section-pill {
  display: block;
  text-align: center;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.servico-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.servico-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
}

.servico-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.servico-icon {
  font-size: 1.35rem;
}

.servico-icon-wrap.servico-icon-target { background: rgba(139, 92, 246, 0.2); color: var(--purple-light); }
.servico-icon-wrap.servico-icon-search { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.servico-icon-wrap.servico-icon-social { background: rgba(236, 72, 153, 0.2); color: #f472b6; }
.servico-icon-wrap.servico-icon-data { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.servico-icon-wrap.servico-icon-growth { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.servico-icon-wrap.servico-icon-ads { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }

.servico-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
}

.servico-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* ===== Sobre ===== */
.sobre {
  padding: 100px 24px;
}

.sobre .section-title {
  text-align: left;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
}

.sobre-lead {
  font-size: 1.15rem;
  color: var(--purple-light);
  font-weight: 600;
  margin: 0 0 20px;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.sobre-content p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

.sobre-content strong {
  color: var(--purple-light);
}

.sobre-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-glow-box {
  padding: 48px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.15);
}

.sobre-quote {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 30px rgba(167, 139, 250, 0.6);
}

/* ===== Resultados ===== */
.resultados {
  padding: 100px 24px;
}

/* Resultados (comentado no HTML por enquanto) */
.resultados .section-pill,
.resultados .section-title,
.resultados .section-sub {
  text-align: center;
}

.resultados .section-pill {
  display: block;
}

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

.resultado-card {
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.resultado-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.resultado-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.resultado-icon-leads { background: rgba(139, 92, 246, 0.2); }
.resultado-icon-growth { background: rgba(99, 102, 241, 0.2); }
.resultado-icon-projetos { background: rgba(236, 72, 153, 0.2); }
.resultado-icon-satisfacao { background: rgba(34, 197, 94, 0.2); }

.resultado-num {
  display: block;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
  margin-bottom: 6px;
}

.resultado-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Processo / Como Trabalhamos ===== */
.processo {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.processo .section-pill,
.processo .section-title,
.processo .section-sub {
  text-align: center;
}

.processo .section-pill {
  display: block;
}

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

.processo-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.processo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(139, 92, 246, 0.08);
}

.processo-step {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  opacity: 0.7;
  margin-bottom: 14px;
}

.processo-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.processo-icon-diag { background: rgba(139, 92, 246, 0.2); }
.processo-icon-strat { background: rgba(99, 102, 241, 0.2); }
.processo-icon-exec { background: rgba(34, 197, 94, 0.2); }
.processo-icon-result { background: rgba(236, 72, 153, 0.2); }

.processo-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #fff;
}

.processo-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .processo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .processo-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Portfólio ===== */
.portfolio {
  padding: 100px 24px;
  background: var(--bg-soft);
}

.portfolio .section-pill,
.portfolio .section-title,
.portfolio .section-sub {
  text-align: center;
}

.portfolio .section-pill {
  display: block;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.portfolio-card-bg-img {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
}

.portfolio-card-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 6, 16, 0.9) 0%, rgba(10, 6, 16, 0.4) 40%, transparent 70%);
}

.portfolio-card-purple .portfolio-card-bg {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(109, 40, 217, 0.8));
}

.portfolio-card-blue .portfolio-card-bg {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.8));
}

.portfolio-card-green .portfolio-card-bg {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(22, 163, 74, 0.75));
}

.portfolio-card-gold .portfolio-card-bg {
  background: linear-gradient(135deg, rgba(180, 140, 80, 0.9), rgba(139, 110, 60, 0.85));
}

.portfolio-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(139, 92, 246, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.5);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.portfolio-card-title {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 24px 24px 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.portfolio-card-desc {
  position: relative;
  z-index: 1;
  padding: 4px 24px 24px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 100px 24px;
  text-align: center;
}

.cta-rings {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.cta-card {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(30, 27, 75, 0.4));
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.2);
}

.cta-card-inner {
  position: relative;
  z-index: 1;
}

.cta-logo-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.cta-logo-icon {
  width: 40px;
  height: 46px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(167, 139, 250, 0.5));
}

.cta-logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.cta-logo-slogan {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.cta-title-accent {
  color: var(--purple-light);
  text-shadow: 0 0 24px rgba(167, 139, 250, 0.6);
}

.cta-text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.cta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-bottom: 28px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
}

.cta-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-brand .footer-logo-wrap {
  margin-bottom: 12px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
  display: block;
  color: #fff;
}

.footer-slogan {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 280px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-social-link:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-icon {
  font-size: 1rem;
  opacity: 0.8;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-copy,
.footer-dev {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.9;
}

.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.brand-face {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ===== Botão flutuante WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.3s;
  animation: wppPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

@keyframes wppPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsivo ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-mobile.is-open {
    display: flex;
  }

  .hero-logo-box {
    padding: 20px 24px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .sobre-visual {
    order: -1;
  }

  .sobre-glow-box {
    padding: 32px;
  }

  .sobre-quote {
    font-size: 1.2rem;
  }

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

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

  .cta-card {
    padding: 36px 24px;
  }

  .cta-pills {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .footer-desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

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

@media (max-width: 600px) {
  .resultados-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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