:root {
  --brand-900: #0a0f3d;
  --brand-800: #0d1566;
  --brand-700: #101a8a;
  --brand-600: #1219a6;
  --brand-500: #1a28c4;
  --brand-400: #3d4fd4;
  --gold-500: #dfb352;
  --gold-400: #e8c46a;
  --gold-300: #f0d48a;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-highlight: rgba(255, 255, 255, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--brand-900);
  color: #e8ecff;
}

/* Aurora / mesh background */
.bg-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(18, 25, 166, 0.55), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(223, 179, 82, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(61, 79, 212, 0.35), transparent 55%),
    linear-gradient(165deg, #060a28 0%, #0a0f3d 40%, #0d1566 100%);
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 var(--glass-highlight);
}

.glass-panel-strong {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.glass-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 179, 82, 0.45);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(223, 179, 82, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-link {
  color: rgba(232, 236, 255, 0.85);
  transition: color 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(223, 179, 82, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(223, 179, 82, 0.45);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

.text-gradient-gold {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon-ring {
  background: linear-gradient(135deg, rgba(223, 179, 82, 0.25), rgba(18, 25, 166, 0.4));
  border: 1px solid rgba(223, 179, 82, 0.35);
}

#header.scrolled {
  background: rgba(10, 15, 61, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#mobile-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

/* Swiper depoimentos */
.testimonialSwiper {
  padding-bottom: 2.5rem;
}

.testimonialSwiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: var(--gold-500);
  width: 22px;
  border-radius: 6px;
}

/* Bento grid serviços */
.bento-item {
  min-height: 180px;
}

@media (min-width: 1024px) {
  .bento-featured {
    grid-row: span 2;
    min-height: 100%;
  }
}

.breadcrumb a {
  color: rgba(232, 236, 255, 0.6);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.step-card {
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--brand-900);
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.steps-list {
  counter-reset: step;
}

.faq-item {
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.25s ease;
}

.prose-seo p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: rgba(232, 236, 255, 0.78);
}

.prose-seo ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: rgba(232, 236, 255, 0.75);
}

.prose-seo li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.nav-link-active {
  color: var(--gold-400);
}
