:root {
  --midnight: #010c1f;
  --deep-space: #031937;
  --primary: #0a6dff;
  --secondary: #08345c;
  --accent: #4c1f93;
  --accent-strong: #2ed0ff;
  --neutral: #b9cbea;
  --surface: #041f42;
  --surface-alt: #02132a;
  --card: #06254c;
  --light: #f0f6ff;
  --success: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Space Mono", sans-serif;
  color: var(--light);
  background:
    radial-gradient(
      circle at 18% 25%,
      rgba(10, 109, 255, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 10%,
      rgba(46, 208, 255, 0.25) 0%,
      transparent 40%
    ),
    linear-gradient(130deg, var(--midnight), var(--surface-alt));
  min-height: 100vh;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100px 100px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -2;
}

@keyframes glowIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

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

@keyframes neonPulse {
  0% {
    box-shadow: 0 0 20px rgba(177, 139, 255, 0.15);
  }
  70% {
    box-shadow: 0 0 40px rgba(102, 196, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 22px rgba(177, 139, 255, 0.2);
  }
}

@keyframes gradientDrift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes auroraSweep {
  0% {
    background-position: 0% 0%;
    opacity: 0.35;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.55;
  }
  100% {
    background-position: 0% 100%;
    opacity: 0.35;
  }
}

@keyframes panZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(-6px, 6px);
  }
  100% {
    transform: scale(1.02) translate(4px, -4px);
  }
}

@keyframes cardShimmer {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 109, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(10, 109, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 109, 255, 0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes tiltIn {
  0% {
    opacity: 0;
    transform: perspective(800px) rotateY(12deg) translateZ(-40px);
  }
  100% {
    opacity: 1;
    transform: perspective(800px) rotateY(0) translateZ(0);
  }
}

@keyframes glowRing {
  0% {
    box-shadow:
      0 0 12px rgba(46, 208, 255, 0.3),
      inset 0 0 8px rgba(46, 208, 255, 0.15);
  }
  50% {
    box-shadow:
      0 0 28px rgba(10, 109, 255, 0.65),
      inset 0 0 16px rgba(46, 208, 255, 0.3);
  }
  100% {
    box-shadow:
      0 0 12px rgba(46, 208, 255, 0.3),
      inset 0 0 8px rgba(46, 208, 255, 0.15);
  }
}

@keyframes underlineSweep {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.45;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

img {
  max-width: 100%;
  display: block;
}

section {
  position: relative;
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  animation: glowIn 0.8s ease-out both;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  height: 3px;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-strong), var(--primary));
}

.section-header.visible .section-title::after {
  animation: underlineSweep 0.7s 0.3s ease-out forwards;
}

.section-subtitle {
  color: var(--neutral);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  animation: glowIn 0.8s ease-out 0.1s both;
}

.gradient-text {
  background: linear-gradient(
    120deg,
    #e0eeff 0%,
    var(--accent-strong) 45%,
    #0a6dff 65%,
    #dce8ff 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar .brand-name.gradient-text {
  background-size: 280% 280%;
  animation: gradientDrift 7s ease-in-out infinite;
}

.navbar {
  background: rgba(3, 11, 29, 0.9);
  backdrop-filter: blur(18px);
  padding: 1.1rem 0;
  transition:
    padding 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(2, 5, 18, 0.6);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(177, 139, 255, 0.3),
    transparent 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ── Toggler branco ── */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.4rem 0.55rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(46, 208, 255, 0.35);
}

/* ── Offcanvas lateral ── */
.offcanvas.offcanvas-start {
  width: 280px;
  background: linear-gradient(180deg, #0a1628 0%, #06101f 100%);
  border-right: 1px solid rgba(10, 109, 255, 0.15);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 1080;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.4rem 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.offcanvas-brand .brand-logo {
  width: 44px;
  height: 44px;
}

.offcanvas-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.offcanvas-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.offcanvas-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.offcanvas-body {
  padding: 1.2rem 1rem;
}

.offcanvas-body .navbar-nav {
  gap: 0.2rem;
}

.offcanvas-body .nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.1rem !important;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7) !important;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.25s ease;
}

.offcanvas-body .nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link:focus {
  background: rgba(10, 109, 255, 0.1);
  color: rgba(255, 255, 255, 0.95) !important;
  transform: translateX(4px);
}

.offcanvas-body .nav-link:hover i,
.offcanvas-body .nav-link:focus i {
  opacity: 1;
}

.offcanvas-body .nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(10, 109, 255, 0.35),
    rgba(46, 208, 255, 0.2)
  );
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(10, 109, 255, 0.2);
}

.offcanvas-body .nav-link.active i {
  opacity: 1;
  color: var(--accent-strong);
}

.offcanvas-body .nav-link::after {
  display: none;
}

.offcanvas-backdrop {
  z-index: 1070;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.3rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 60%;
  left: 20%;
}

.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(10, 109, 255, 0.35),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(46, 208, 255, 0.25),
      transparent 50%
    ),
    linear-gradient(140deg, var(--surface), var(--deep-space));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 109, 255, 0.25),
    rgba(76, 31, 147, 0.2),
    rgba(46, 208, 255, 0.25)
  );
  filter: blur(60px);
  opacity: 0.4;
  animation: auroraSweep 18s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60H120' stroke='rgba(255,255,255,0.04)'/%3E%3Cpath d='M60 0V120' stroke='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content {
  animation: glowIn 0.9s ease-out both;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(177, 139, 255, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(102, 196, 255, 0.4);
}

.hero-highlights {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.8rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.hero-highlights i {
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-hero-primary,
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-hero-primary {
  background: linear-gradient(120deg, #7b5dff 0%, #63c4ff 100%);
  color: #050624;
  box-shadow: 0 20px 40px rgba(37, 82, 255, 0.35);
  animation: pulseBorder 3.5s ease-in-out infinite;
}

.btn-hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
  transform: translateY(-3px);
}

.btn-hero-primary:active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.3);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

.btn-hero-primary {
  position: relative;
  overflow: hidden;
}

.hero-panel {
  background: linear-gradient(
    145deg,
    rgba(4, 32, 74, 0.95),
    rgba(2, 19, 42, 0.9)
  );
  border: 1px solid rgba(76, 31, 147, 0.25);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  animation: glowIn 1.1s ease-out 0.2s both;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-panel-image {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 1.5rem;
}

.hero-panel-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(1.05);
  animation: panZoom 16s ease-in-out infinite;
  will-change: transform;
}

.hero-panel-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(10, 109, 255, 0.18)
  );
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.hero-panel-card--secondary {
  background: linear-gradient(
    135deg,
    rgba(46, 208, 255, 0.2),
    rgba(76, 31, 147, 0.15)
  );
  border-color: rgba(46, 208, 255, 0.35);
}

.hero-panel-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--neutral);
}

.hero-panel-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.4rem 0;
}

.stats {
  background: var(--light);
  color: var(--primary);
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(9, 18, 41, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation: glowIn 0.8s ease-out both;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
}

.services,
.benefits {
  background: rgba(255, 255, 255, 0.02);
}

.service-card,
.benefit-card {
  background: linear-gradient(
    145deg,
    rgba(4, 32, 74, 0.92),
    rgba(5, 17, 38, 0.92)
  );
  border: 1px solid rgba(10, 109, 255, 0.25);
  border-radius: 22px;
  padding: 2.75rem;
  height: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px rgba(2, 10, 32, 0.6);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-12px) perspective(800px) rotateY(-2deg);
  border-color: rgba(10, 109, 255, 0.55);
}

.service-card::after,
.benefit-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    120deg,
    rgba(46, 208, 255, 0.35),
    rgba(76, 31, 147, 0.2)
  );
  transform: translateX(-100%) rotate(20deg);
  filter: blur(20px);
  opacity: 0;
  pointer-events: none;
}

.service-card:hover::after,
.benefit-card:hover::after {
  opacity: 1;
  animation: cardShimmer 2.2s ease-out forwards;
}

.service-card.visible,
.benefit-card.visible {
  animation: glowIn 0.85s ease-out both;
}

.col-lg-6:nth-child(odd) .service-card.visible,
.col-lg-6:nth-child(odd) .benefit-card.visible {
  animation: slideInLeft 0.8s ease-out both;
}

.col-lg-6:nth-child(even) .service-card.visible,
.col-lg-6:nth-child(even) .benefit-card.visible {
  animation: slideInRight 0.8s ease-out both;
}

.service-icon,
.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #0a6dff 0%, rgba(76, 31, 147, 0.6) 70%);
  margin-bottom: 1.5rem;
  color: #f0f6ff;
  font-size: 1.8rem;
  box-shadow: 0 10px 35px rgba(2, 15, 42, 0.65);
}

.service-card h3,
.benefit-content h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p,
.benefit-content p {
  color: rgba(255, 255, 255, 0.85);
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
}

.service-features i {
  color: var(--success);
}

.neon-accordion-wrapper {
  margin-top: 3rem;
  padding: 3rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(10, 109, 255, 0.3), transparent 55%),
    linear-gradient(145deg, rgba(3, 18, 46, 0.96), rgba(11, 32, 74, 0.9));
  border: 1px solid rgba(76, 31, 147, 0.3);
  box-shadow: 0 45px 90px rgba(5, 0, 33, 0.65);
  position: relative;
  overflow: hidden;
}

.neon-accordion-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04),
    transparent 40%
  );
}

.neon-accordion-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.75rem;
}

.neon-accordion-subtitle {
  color: rgba(255, 255, 255, 0.7);
  max-width: 720px;
  margin: 0;
}

.neon-accordion {
  margin-top: 2rem;
}

.neon-accordion .accordion-item {
  background: linear-gradient(
    135deg,
    rgba(4, 29, 60, 0.92),
    rgba(6, 18, 40, 0.85)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: border-color 0.3s ease;
}

.neon-accordion .accordion-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(
    120deg,
    rgba(46, 208, 255, 0.45),
    rgba(76, 31, 147, 0.35)
  );
  opacity: 0;
  filter: blur(18px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.neon-accordion .accordion-item.is-open::before {
  opacity: 1;
  animation: neonPulse 2.5s ease-in-out infinite;
}

.neon-accordion .accordion-item.visible {
  opacity: 1;
  transform: translateY(0);
  animation: glowIn 0.8s ease-out both;
}

.neon-accordion .accordion-button {
  background: transparent;
  color: #f4f4ff;
  font-weight: 600;
  padding: 1.2rem 1.25rem;
  border: none;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.neon-accordion .accordion-button::after {
  filter: invert(1);
}

.neon-accordion .accordion-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(46, 208, 255, 0.4),
    transparent
  );
  opacity: 0;
}

.neon-accordion .accordion-button:not(.collapsed)::before {
  opacity: 1;
  animation: cardShimmer 1.6s ease-out;
}

.neon-accordion .accordion-button:focus {
  box-shadow: none;
}

.neon-accordion .accordion-body {
  color: rgba(255, 255, 255, 0.85);
  padding: 0 1.25rem 1.5rem;
}

.neon-accordion .accordion-item.is-open {
  border-color: rgba(46, 208, 255, 0.55);
}

.process {
  background: rgba(4, 16, 33, 0.25);
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(
    160deg,
    rgba(4, 34, 78, 0.92),
    rgba(5, 20, 44, 0.88)
  );
  border: 1px solid rgba(10, 109, 255, 0.2);
  box-shadow: 0 25px 60px rgba(9, 4, 34, 0.55);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 2px;
  bottom: 15px;
  left: -30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 208, 255, 0.7),
    transparent
  );
  opacity: 0;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
  animation: tiltIn 0.75s ease-out both;
}

.process-step.visible::after {
  animation: cardShimmer 1.6s ease-out;
  opacity: 1;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #031125;
  animation: glowRing 4s ease-in-out infinite;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  background-size: 200% 200%;
  animation: gradientDrift 14s ease-in-out infinite;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
}

.footer {
  background: #010817;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-dev {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.footer-dev .gradient-text {
  font-weight: 600;
}

.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 25px 45px rgba(37, 211, 102, 0.6);
  text-decoration: none;
  z-index: 50;
  transition: transform 0.3s ease;
  animation:
    pulse 2.8s infinite,
    floaty 4s ease-in-out infinite;
  animation-play-state: running, running;
  will-change: transform;
}

.whatsapp-btn:hover {
  animation-play-state: running, paused;
  transform: translateY(-6px) scale(1.03);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ════════════════════════════════════════
   BOTÃO TOGGLE DE TEMA
   ════════════════════════════════════════ */

.theme-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.2s ease;
  font-size: 1rem;
  flex-shrink: 0;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: scale(1.1);
}

/* ════════════════════════════════════════
   MODO CLARO  [data-theme="light"]
   ════════════════════════════════════════ */

[data-theme="light"] {
  --midnight: #f0f6ff;
  --deep-space: #dce8ff;
  --accent: #5215a8;
  --accent-strong: #0a6dff;
  --neutral: #3d5580;
  --surface: #d8e5ff;
  --surface-alt: #eaf2ff;
  --card: #ffffff;
  --light: #0d1f3c;
}

[data-theme="light"] body {
  color: var(--light);
  background:
    radial-gradient(
      circle at 18% 25%,
      rgba(10, 109, 255, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 82% 10%,
      rgba(46, 208, 255, 0.08) 0%,
      transparent 40%
    ),
    linear-gradient(130deg, #f0f6ff, #e6eeff);
}

[data-theme="light"] body::before {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

/* Navbar */
[data-theme="light"] .navbar {
  background: rgba(240, 246, 255, 0.92);
  box-shadow: 0 10px 30px rgba(0, 60, 180, 0.1);
}

[data-theme="light"] .nav-link {
  color: rgba(13, 31, 60, 0.8) !important;
}

[data-theme="light"] .nav-link::after {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

[data-theme="light"] .navbar-toggler {
  border-color: rgba(13, 31, 60, 0.3);
}

[data-theme="light"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(13,31,60,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

[data-theme="light"] .theme-toggle-btn {
  border-color: rgba(13, 31, 60, 0.3);
  color: rgba(13, 31, 60, 0.8);
}

[data-theme="light"] .theme-toggle-btn:hover {
  background: rgba(13, 31, 60, 0.08);
  color: #0d1f3c;
}

/* Offcanvas */
[data-theme="light"] .offcanvas.offcanvas-start {
  background: linear-gradient(180deg, #f0f6ff 0%, #e6eeff 100%);
  border-right-color: rgba(10, 109, 255, 0.15);
  box-shadow: 8px 0 40px rgba(0, 40, 120, 0.12);
}

[data-theme="light"] .offcanvas-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .offcanvas-subtitle {
  color: rgba(13, 31, 60, 0.5);
}

[data-theme="light"] .btn-close {
  filter: invert(0.75) sepia(1) hue-rotate(190deg);
}

[data-theme="light"] .offcanvas-body .nav-link {
  color: rgba(13, 31, 60, 0.7) !important;
}

[data-theme="light"] .offcanvas-body .nav-link:hover,
[data-theme="light"] .offcanvas-body .nav-link:focus {
  background: rgba(10, 109, 255, 0.08);
  color: rgba(13, 31, 60, 0.95) !important;
}

[data-theme="light"] .offcanvas-body .nav-link.active {
  color: #fff !important;
}

/* Hero */
[data-theme="light"] .hero {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(10, 109, 255, 0.1),
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(46, 208, 255, 0.08),
      transparent 50%
    ),
    linear-gradient(140deg, #e6eeff, #f0f6ff);
}

[data-theme="light"] .hero-content h1 {
  color: #0d1f3c;
}

[data-theme="light"] .hero-content p {
  color: rgba(13, 31, 60, 0.78);
}

[data-theme="light"] .btn-hero-secondary {
  border-color: rgba(13, 31, 60, 0.35);
  color: #0d1f3c;
}

/* Títulos das seções */
[data-theme="light"] .section-title {
  color: #0d1f3c;
}

[data-theme="light"] .section-subtitle {
  color: var(--neutral);
}

/* Cards de serviços e benefícios */
[data-theme="light"] .service-card,
[data-theme="light"] .benefit-card {
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border-color: rgba(10, 109, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 40, 120, 0.1);
}

[data-theme="light"] .service-card h3,
[data-theme="light"] .benefit-content h4 {
  color: #0d1f3c;
}

[data-theme="light"] .service-card p,
[data-theme="light"] .benefit-content p {
  color: rgba(13, 31, 60, 0.75);
}

[data-theme="light"] .service-features li {
  color: rgba(13, 31, 60, 0.75);
}

/* Accordion */
[data-theme="light"] .neon-accordion-wrapper {
  background:
    radial-gradient(circle at top, rgba(10, 109, 255, 0.08), transparent 55%),
    linear-gradient(145deg, #f0f6ff, #e6eeff);
  border-color: rgba(82, 21, 168, 0.18);
  box-shadow: 0 45px 90px rgba(0, 30, 100, 0.08);
}

[data-theme="light"] .neon-accordion-title {
  color: #0d1f3c;
}

[data-theme="light"] .neon-accordion-subtitle {
  color: rgba(13, 31, 60, 0.7);
}

[data-theme="light"] .neon-accordion .accordion-item {
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border-color: rgba(10, 109, 255, 0.12);
}

[data-theme="light"] .neon-accordion .accordion-button {
  color: #0d1f3c;
}

[data-theme="light"] .neon-accordion .accordion-button::after {
  filter: none;
}

[data-theme="light"] .neon-accordion .accordion-body {
  color: rgba(13, 31, 60, 0.75);
}

/* Processo */
[data-theme="light"] .process {
  background: rgba(200, 218, 255, 0.2);
}

[data-theme="light"] .process-step {
  background: linear-gradient(160deg, #ffffff, #f0f5ff);
  border-color: rgba(10, 109, 255, 0.18);
  box-shadow: 0 25px 60px rgba(0, 40, 120, 0.08);
}

[data-theme="light"] .process-step h4 {
  color: #0d1f3c;
}

[data-theme="light"] .process-step p {
  color: rgba(13, 31, 60, 0.7);
}

/* Serviços e benefícios (fundo da seção) */
[data-theme="light"] .services,
[data-theme="light"] .benefits {
  background: rgba(220, 232, 255, 0.25);
}

/* Rodapé */
[data-theme="light"] .footer {
  background: #dce8ff;
}

[data-theme="light"] .footer-content {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer-contact a {
  color: rgba(13, 31, 60, 0.8);
}

[data-theme="light"] .footer-contact a:hover {
  color: var(--accent);
}

[data-theme="light"] .footer-bottom {
  color: rgba(13, 31, 60, 0.6);
}

[data-theme="light"] .footer-dev {
  color: rgba(13, 31, 60, 0.45);
}

/* ════════════════════════════════════════ */

@media (max-width: 992px) {
  .hero {
    padding-top: 140px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .hero-panel-image img {
    height: 200px;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

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

  .neon-accordion-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 120px;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .hero-highlights li {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .neon-accordion-wrapper {
    padding: 1.5rem;
  }
}
