/* Cyborg informática — estilos principais */

:root {
  --accent: #0076f0;
  --accent-soft: rgba(0, 118, 240, 0.35);
  --bg: #051022;
  --bg-elevated: #0a1a32;
  /* Contraste alto no tema escuro (corpo + subtítulos em todo o site) */
  --text: #f8fafc;
  --text-muted: #e2e8f0;
  --border: rgba(0, 118, 240, 0.22);
  --glow: 0 0 24px rgba(0, 118, 240, 0.35);
  --radius: 14px;
  --header-h: 72px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 118, 240, 0.18), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(0, 118, 240, 0.08), transparent 45%),
    linear-gradient(180deg, #020814 0%, var(--bg) 38%, #030a18 100%);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 16, 34, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, calc(100vw - 5rem));
  text-decoration: none;
  line-height: 0;
}

.site-logo__img {
  display: block;
  height: clamp(32px, 8vw, 40px);
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0, 118, 240, 0.2));
}

.site-logo:hover .site-logo__img {
  filter: drop-shadow(0 2px 16px rgba(0, 118, 240, 0.45));
}

.site-logo:focus-visible {
  outline-offset: 4px;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(0, 118, 240, 0.08);
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  box-shadow: var(--glow);
  border-color: var(--accent-soft);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(5, 16, 34, 0.97);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.25rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-nav a {
  display: block;
  padding: 0.75rem 0.5rem;
  color: var(--text);
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(0, 118, 240, 0.12);
  color: var(--accent);
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    background: transparent;
    border: none;
    padding: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.45rem 0.55rem;
    font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  }
}

/* Hero — canvas cyber (gradientes + luzes; sem foto de stock) */

.hero {
  position: relative;
  box-sizing: border-box;
  min-height: min(92vh, 820px);
  min-height: min(92dvh, 820px); /* melhor em mobile com barra de endereço */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Espaço do header fixo + centro vertical do conteúdo na área útil */
  padding: var(--header-h) clamp(1rem, 5vw, 1.75rem) 2.75rem;
  overflow: hidden;
  isolation: isolate;
  font-family: "Montserrat", var(--font);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 90% at 50% -18%, rgba(0, 118, 240, 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 50% 108%, rgba(0, 118, 240, 0.1) 0%, transparent 52%),
    linear-gradient(185deg, #01040c 0%, var(--bg) 45%, #020612 100%);
}

.hero__spotlight {
  position: absolute;
  inset: -25% -15% 30% -15%;
  background: radial-gradient(
    ellipse 58% 56% at 50% 32%,
    rgba(0, 118, 240, 0.5) 0%,
    rgba(0, 118, 240, 0.12) 42%,
    transparent 70%
  );
  animation: heroSpotPulse 9s ease-in-out infinite;
}

.hero__bloom--top {
  position: absolute;
  top: -8%;
  left: 50%;
  width: 130%;
  height: 58%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 0%, rgba(0, 118, 240, 0.38) 0%, transparent 62%);
  filter: blur(28px);
  opacity: 0.95;
}

.hero__bloom--center {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 52% 48% at 50% 44%, rgba(0, 118, 240, 0.16) 0%, transparent 58%);
}

.hero__flare {
  position: absolute;
  top: 6%;
  height: 88%;
  width: min(22%, 200px);
  filter: blur(36px);
  opacity: 0.85;
}

.hero__flare--left {
  left: -6%;
  background: linear-gradient(
    180deg,
    rgba(0, 118, 240, 0.6) 0%,
    rgba(0, 118, 240, 0.1) 48%,
    transparent 88%
  );
  transform: rotate(-7deg);
}

.hero__flare--right {
  right: -6%;
  background: linear-gradient(
    180deg,
    rgba(0, 118, 240, 0.48) 0%,
    rgba(0, 118, 240, 0.08) 52%,
    transparent 90%
  );
  transform: rotate(7deg);
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0, 118, 240, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 118, 240, 0.32) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 82% 72% at 50% 36%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 82% 72% at 50% 36%, #000 0%, transparent 78%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
}

.hero__orb--a {
  width: min(46vw, 440px);
  height: min(46vw, 440px);
  left: -10%;
  bottom: 14%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 118, 240, 0.55) 0%, transparent 72%);
  animation: heroOrbFloatA 16s ease-in-out infinite;
}

.hero__orb--b {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  right: -8%;
  top: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 118, 240, 0.38) 0%, transparent 74%);
  animation: heroOrbFloatB 16s ease-in-out infinite;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 95% 85% at 50% 48%, transparent 32%, rgba(0, 0, 0, 0.62) 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

@keyframes heroSpotPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.88;
  }
}

@keyframes heroOrbFloatA {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(5%, -4%);
  }
}

@keyframes heroOrbFloatB {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, 5%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__spotlight,
  .hero__orb--a,
  .hero__orb--b {
    animation: none;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(52rem, 100%);
  margin-inline: auto;
  /* Sobe o bloco um pouco sem usar transform (evita conflito com .reveal) */
  margin-top: -40px;
  padding-block: 0;
}

/* Evita somar margem do .container com o padding lateral do .hero */
.hero .hero__content.container {
  width: min(52rem, 100%);
  max-width: 52rem;
}

.hero__eyebrow {
  margin: 0 0 1.25rem;
}

.hero__eyebrow-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0f6ff;
  background: linear-gradient(
    135deg,
    rgba(0, 118, 240, 0.35) 0%,
    rgba(0, 118, 240, 0.12) 100%
  );
  border: 1px solid rgba(0, 118, 240, 0.45);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 28px rgba(0, 118, 240, 0.35);
  backdrop-filter: blur(10px);
}

.hero__title {
  margin: 0 0 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero__title-pre {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow:
    0 0 20px rgba(0, 118, 240, 0.35),
    0 2px 16px rgba(0, 0, 0, 0.55);
}

.hero__title-accent {
  display: block;
  font-size: clamp(1.85rem, 5.2vw, 3.05rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    #b8d9ff 28%,
    var(--accent) 72%,
    #4da3ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(0, 118, 240, 0.45)) drop-shadow(0 0 60px rgba(0, 118, 240, 0.22));
}

.hero__divider {
  width: min(11rem, 55vw);
  height: 3px;
  margin: -0.25rem 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 118, 240, 0.25) 15%,
    var(--accent) 50%,
    rgba(0, 118, 240, 0.25) 85%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(0, 118, 240, 0.55);
  opacity: 0.95;
}

@supports not (background-clip: text) {
  .hero__title-accent {
    color: var(--text);
    background: none;
    text-shadow:
      0 0 32px rgba(0, 118, 240, 0.55),
      0 0 2px rgba(255, 255, 255, 0.35);
  }
}

.hero__subtitle {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-size: 1.06rem;
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.65;
  color: #f5f9ff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 0 20px rgba(0, 0, 0, 0.35);
}

.hero__text {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hero__actions {
    align-items: center;
  }

  .hero__actions .btn {
    width: auto;
    min-width: 11rem;
  }
}

.hero .btn--secondary {
  background: rgba(5, 16, 34, 0.5);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f2f7ff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(0, 118, 240, 0.12) inset;
}

.hero .btn--secondary:hover {
  background: rgba(0, 118, 240, 0.12);
  border-color: rgba(0, 118, 240, 0.55);
  color: #fff;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(180deg, #1a8cff 0%, var(--accent) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0, 118, 240, 0.55);
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: var(--accent);
  box-shadow: var(--glow);
  text-decoration: none;
}

.btn--large {
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
  min-height: 52px;
}

@media (max-width: 767px) {
  .btn,
  .btn--large {
    width: 100%;
    min-height: 48px;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Sections */

.section {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.section__header {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section--about {
  border-top: 1px solid var(--border);
}

.section--services {
  background: rgba(0, 118, 240, 0.04);
  border-block: 1px solid var(--border);
}

.section--videos {
  border-top: 1px solid var(--border);
}

.section--how {
  background: rgba(0, 0, 0, 0.12);
  border-block: 1px solid var(--border);
}

.section--testimonials {
  border-top: 1px solid var(--border);
}

.section--location {
  background: rgba(0, 0, 0, 0.2);
  border-block: 1px solid var(--border);
}

.section--contact {
  padding-block: clamp(4rem, 10vw, 6rem);
}

/* About grid */

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
  }
}

.about-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), var(--glow);
}

.about-grid__text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.about-block__title {
  margin: 1.35rem 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-block__title:first-child {
  margin-top: 0;
}

.about-differentials {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1.25rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
}

.about-differentials li {
  padding-left: 0.15rem;
}

/* Service cards */

.service-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-cards--compact {
  max-width: 100%;
}

@media (min-width: 640px) {
  .service-cards--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sobrescreve o grid de 3 colunas da lista padrão */
@media (min-width: 1024px) {
  .service-cards--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-cards--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-footnote {
  margin: 2.25rem auto 0;
  max-width: 44rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 118, 240, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), var(--glow);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(0, 118, 240, 0.12);
  color: var(--accent);
  border: 1px solid var(--border);
}

.service-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Videos */

.video-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.video-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.video-block__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.video-block__desc {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.video-block__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(0, 118, 240, 0.15);
}

.video-block__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Location */

.location-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .location-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.location-layout__text p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.location-intro {
  font-size: 1.02rem;
  line-height: 1.6;
}

.location-address {
  font-size: 1.05rem;
  line-height: 1.55;
}

.location-address strong {
  color: var(--text);
  font-weight: 700;
}

.location-hours {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 118, 240, 0.06);
}

.location-hours__title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.location-hours__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.location-hours__note {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.location-layout__map {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), var(--glow);
}

.location-layout__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

/* Como funciona (passos) */

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 52rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .steps-list {
    gap: 1.5rem;
  }
}

.steps-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.steps-list__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(0, 118, 240, 0.95) 0%, #0056b3 100%);
  box-shadow: 0 0 20px rgba(0, 118, 240, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-list__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.steps-list__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Depoimentos */

.testimonial-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-style: italic;
}

.testimonial-card__author {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

/* Contact CTA */

.contact-cta {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: 2.5rem 2rem;
  background: linear-gradient(165deg, rgba(0, 118, 240, 0.12) 0%, rgba(5, 16, 34, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--glow);
}

.contact-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
}

.contact-cta__text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 2.75rem 0 6rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5, 16, 34, 0.5) 0%, rgba(0, 0, 0, 0.45) 100%);
}

@media (min-width: 768px) {
  .site-footer {
    padding: 3rem 0 2.5rem;
  }
}

.site-footer__grid {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 2rem 2.5rem;
  }
}

.site-footer__col {
  min-width: 0;
}

.site-footer__col--brand {
  padding-bottom: 0.25rem;
}

.site-footer__brand-link {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.site-footer__brand-link:focus-visible {
  outline-offset: 4px;
}

.site-footer__logo {
  display: block;
  height: auto;
  width: min(200px, 100%);
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.site-footer__brand-name {
  margin: 0.85rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 22rem;
}

.site-footer__heading {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.site-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.site-footer__nav-list a:hover {
  color: var(--accent);
  padding-left: 0.2rem;
  text-decoration: none;
}

.site-footer__address {
  margin: 0 0 1rem;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__hours {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.site-footer__hours strong {
  color: var(--text);
  font-weight: 600;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 118, 240, 0.12);
  border: 1px solid rgba(0, 118, 240, 0.35);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-footer__pill:hover {
  background: rgba(0, 118, 240, 0.22);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.site-footer__pill--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}

.site-footer__pill--outline:hover {
  border-color: var(--accent);
  color: var(--text);
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.site-footer__copyright {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.site-footer__social-note {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Floating WhatsApp */

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(18, 140, 126, 0.65);
  text-decoration: none;
}

.whatsapp-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .whatsapp-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Reveal: fade-in + slide (html.no-js mantém tudo visível) */

html.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

html:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html:not(.no-js) .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
