/* ===== RYZO — Rise Your Zone | Tech Innovation Landing Page ===== */
:root {
  --bg: #0a0610;
  --bg-soft: #0f0b16;
  --surface: #15101f;
  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-bright: #c4b5fd;
  --purple-dark: #6d28d9;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --accent-glow: #a78bfa;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --gradient-line: linear-gradient(90deg, #8b5cf6, #06b6d4);
  --gradient-text: linear-gradient(90deg, #a78bfa, #22d3ee);
  --gradient-tech: linear-gradient(135deg, #8b5cf6, #06b6d4, #a78bfa);
  --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 160px;
}

.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;
  transition: text-shadow 0.3s ease;
}

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

.hero-headline-dynamic {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.4)); }
  50% { filter: drop-shadow(0 0 25px rgba(34, 211, 238, 0.5)); }
}

.hero-cursor {
  animation: blink 1s step-end infinite;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  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: linear-gradient(135deg, rgba(15, 11, 22, 0.9), rgba(10, 6, 16, 0.7));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.1), transparent);
  transition: left 0.5s;
  pointer-events: none;
}

.beneficio-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25), 0 0 40px rgba(167, 139, 250, 0.15), inset 0 0 20px rgba(167, 139, 250, 0.05);
  background: linear-gradient(135deg, rgba(20, 15, 30, 0.95), rgba(15, 10, 22, 0.8));
}

.beneficio-card:hover::before {
  left: 100%;
}

.beneficio-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.beneficio-card:hover .beneficio-icon-wrap {
  transform: scale(1.15) rotate(5deg);
}

.beneficio-icon-rocket { background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.2)); color: var(--purple-light); box-shadow: 0 0 20px rgba(167, 139, 250, 0.2); }
.beneficio-icon-target { background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(34, 211, 238, 0.2)); color: var(--cyan-light); box-shadow: 0 0 20px rgba(34, 211, 238, 0.2); }
.beneficio-icon-bolt { background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(74, 222, 128, 0.2)); color: #4ade80; box-shadow: 0 0 20px rgba(74, 222, 128, 0.2); }
.beneficio-icon-chart { background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(244, 114, 182, 0.2)); color: #f472b6; box-shadow: 0 0 20px rgba(244, 114, 182, 0.2); }

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

.beneficio-card:hover h3 {
  color: var(--cyan-light);
}

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

/* ===== 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: linear-gradient(135deg, rgba(15, 11, 22, 0.9), rgba(10, 6, 16, 0.7));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.1), transparent);
  transition: left 0.5s;
  pointer-events: none;
}

.servico-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25), 0 0 40px rgba(167, 139, 250, 0.15), inset 0 0 20px rgba(167, 139, 250, 0.05);
  background: linear-gradient(135deg, rgba(20, 15, 30, 0.95), rgba(15, 10, 22, 0.8));
}

.servico-card:hover::before {
  left: 100%;
}

.servico-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 0 25px rgba(167, 139, 250, 0.15);
}

.servico-card:hover .servico-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(34, 211, 238, 0.2));
  box-shadow: 0 0 35px rgba(34, 211, 238, 0.25);
}

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

.servico-icon-wrap.servico-icon-automation { background: rgba(139, 92, 246, 0.2); color: var(--purple-light); }
.servico-icon-wrap.servico-icon-ai       { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.servico-icon-wrap.servico-icon-chat     { background: rgba(34, 197, 94, 0.2);  color: #4ade80; }
.servico-icon-wrap.servico-icon-site     { background: rgba(6, 182, 212, 0.2);  color: #22d3ee; }
.servico-icon-wrap.servico-icon-data     { background: rgba(249, 115, 22, 0.2); color: #fb923c; }
.servico-icon-wrap.servico-icon-target   { background: rgba(236, 72, 153, 0.2); color: #f472b6; }
.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;
  transition: color 0.3s;
}

.servico-card:hover h3 {
  color: var(--cyan-light);
}

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

.servico-card:hover p {
  color: var(--text);
}

/* ===== 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: linear-gradient(135deg, rgba(15, 11, 22, 0.9), rgba(10, 6, 16, 0.7));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s, border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.processo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.1), transparent);
  transition: left 0.5s;
  pointer-events: none;
}

.processo-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25), 0 0 40px rgba(167, 139, 250, 0.15), inset 0 0 20px rgba(167, 139, 250, 0.05);
  background: linear-gradient(135deg, rgba(20, 15, 30, 0.95), rgba(15, 10, 22, 0.8));
}

.processo-card:hover::before {
  left: 100%;
}

.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;
  transition: color 0.3s;
}

.processo-card:hover h3 {
  color: var(--cyan-light);
}

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

.processo-card:hover p {
  color: var(--text);
}

@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-badge-tech {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border: 1px solid rgba(167, 139, 250, 0.6);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.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(167, 139, 250, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-link svg {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  border-color: #fff;
  color: #fff;
}

.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 ===== */
/* ===== 768px ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-mobile.is-open { display: flex; }

  .hero {
    padding: calc(var(--header-h) + 32px) 20px 140px;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 48px);
  }

  .hero-inner { width: 100%; }

  .hero-logo-box { padding: 18px 20px; margin-bottom: 28px; }
  .hero-logo-icon { width: 44px; height: 50px; }

  .hero-headline { font-size: clamp(1.4rem, 5vw, 2rem); }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  .hero-stats {
    gap: 0;
    margin-top: 32px;
    padding-top: 24px;
    flex-wrap: nowrap;
  }

  .hero-stat { padding: 0 16px; min-width: 80px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .hero-stat-divider { height: 36px; }

  .hero-scroll-hint { bottom: 24px; }

  .sobre-inner { grid-template-columns: 1fr; gap: 36px; }
  .sobre-visual { order: -1; }
  .sobre-glow-box { padding: 28px; }
  .sobre-quote { font-size: 1.2rem; }

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

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

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

  .cta-card { padding: 36px 20px; }
  .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: 0 auto 20px; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== 600px ===== */
@media (max-width: 600px) {
  .hero-stats {
    gap: 0;
    justify-content: space-around;
  }
  .hero-stat { padding: 0 10px; min-width: 60px; }
  .hero-stat-num { font-size: 1.15rem; }
  .hero-stat-label { font-size: 0.65rem; }

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

/* ===== 480px ===== */
@media (max-width: 480px) {
  .hero {
    padding: calc(var(--header-h) + 32px) 16px 130px;
  }

  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }

  .hero-headline { font-size: 1.3rem; }

  .hero-sub { font-size: 0.95rem; }

  .hero-stats {
    gap: 0;
    padding-top: 20px;
    margin-top: 24px;
  }
  .hero-stat { padding: 0 8px; min-width: 0; flex: 1; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.62rem; white-space: nowrap; }
  .hero-stat-divider { height: 30px; }

  .hero-scroll-hint { display: none; }

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

  .manchete { padding: 60px 16px; }
  .sobre { padding: 60px 16px; }
  .servicos { padding: 60px 16px; }
  .resultados { padding: 60px 16px; }
  .processo { padding: 60px 16px; }
  .portfolio { padding: 60px 16px; }
  .cta { padding: 60px 16px; }
}

/* ===== Canvas particles ===== */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* ===== Custom cursor ===== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 14px var(--purple-light), 0 0 28px rgba(167, 139, 250, 0.4);
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: left, top;
}

.cursor-follower {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.4);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: left, top;
}

body.cursor-hover .cursor {
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 0 18px var(--purple-bright);
}

body.cursor-hover .cursor-follower {
  width: 56px;
  height: 56px;
  border-color: rgba(167, 139, 250, 0.22);
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ===== Hero orbs ===== */
.hero {
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 70%);
  top: -5%;
  left: -8%;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  bottom: 5%;
  right: -8%;
  animation: orbFloat 13s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(28px, -22px); }
  66%       { transform: translate(-14px, 18px); }
}

/* ===== Hero badge ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple-bright);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(74, 222, 128, 0.8); }
  50%       { opacity: 0.5; box-shadow: 0 0 4px rgba(74, 222, 128, 0.4); }
}

/* ===== Hero tags (linha abaixo do badge) ===== */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero-tag:hover {
  border-color: rgba(167, 139, 250, 0.45);
  color: var(--purple-bright);
  background: rgba(139, 92, 246, 0.08);
}

@media (max-width: 480px) {
  .hero-tags { gap: 6px; }
  .hero-tag  { font-size: 0.72rem; padding: 4px 11px; }
}

/* ===== Hero brand/line/slogan ===== */
.hero-brand {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.hero-line {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gradient-line);
  border-radius: 1px;
}

.hero-slogan {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ===== Hero stats strip ===== */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.hero-stat {
  text-align: center;
  padding: 0 28px;
  min-width: 100px;
}

.hero-stat-num {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 22px rgba(167, 139, 250, 0.55);
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(139, 92, 246, 0.2);
  flex-shrink: 0;
}

/* ===== Ticker ===== */
.ticker-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  background: rgba(139, 92, 246, 0.03);
  padding: 14px 0;
  z-index: 1;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

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

.ticker-item {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 0 20px;
}

.ticker-sep {
  color: var(--purple);
  font-size: 0.6rem;
  opacity: 0.55;
  align-self: center;
  padding: 0 4px;
}

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

/* ===== Glitch effect on logo ===== */
.logo-text {
  position: relative;
}

.logo-text::before,
.logo-text::after {
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.logo-link:hover .logo-text::before {
  color: #00e5ff;
  clip-path: polygon(0 20%, 100% 20%, 100% 45%, 0 45%);
  animation: glitch1 0.35s steps(2) forwards;
}

.logo-link:hover .logo-text::after {
  color: #ff00e5;
  clip-path: polygon(0 55%, 100% 55%, 100% 80%, 0 80%);
  animation: glitch2 0.35s steps(2) forwards;
}

@keyframes glitch1 {
  0%   { opacity: 0.8; transform: translate(-3px, 0); }
  50%  { opacity: 0.5; transform: translate(3px, 0); }
  100% { opacity: 0;   transform: translate(0, 0); }
}

@keyframes glitch2 {
  0%   { opacity: 0.8; transform: translate(3px, 0); }
  50%  { opacity: 0.5; transform: translate(-3px, 0); }
  100% { opacity: 0;   transform: translate(0, 0); }
}

/* ===== Featured service cards ===== */
.servico-card-featured {
  border-color: rgba(139, 92, 246, 0.3);
}

.servico-card-featured::after {
  content: 'NOVO';
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-bright);
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 999px;
  padding: 3px 10px;
  z-index: 2;
}

/* ===== Resultado card bottom accent ===== */
.resultado-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.resultado-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.resultado-card:hover {
  transform: translateY(-3px);
}

.resultado-card:hover::after {
  transform: scaleX(1);
}

/* ===== Manchete quote strong ===== */
.manchete-quote strong {
  color: var(--cyan-light);
}

/* ===== Star pulse ===== */
.hero-star {
  animation: starPulse 4s ease-in-out infinite;
}

.hero-star-br {
  animation-delay: -2s;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 0.3; }
}
