/* Inicio: base global */
:root {
  --bg: #f5fbff;
  --bg-soft: #e9f6ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(42, 139, 214, 0.18);
  --line-strong: rgba(42, 139, 214, 0.38);
  --text: #09213d;
  --muted: #47637d;
  --muted-strong: #1c4163;
  --cyan: #32b8ff;
  --blue: #1167c8;
  --green: #2f91ff;
  --amber: #ffd166;
  --rose: #7dbdff;
  --shadow: 0 24px 70px rgba(24, 90, 154, 0.14);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 8%, rgba(74, 174, 255, 0.22), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 46%, #dcedff 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 14%, rgba(39, 137, 226, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 46%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

li + li {
  margin-top: 0.35rem;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--cyan);
  color: #06213b;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}
/* Fim: base global */

/* Inicio: header e navegacao */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  opacity: 0.9;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(42, 139, 214, 0.16);
  box-shadow: 0 18px 50px rgba(24, 90, 154, 0.12);
  backdrop-filter: blur(18px);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 139, 214, 0.28);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(24, 90, 154, 0.16);
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.brand-text {
  font-size: 1rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.7rem 0.85rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.38rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue);
  display: block;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* Fim: header e navegacao */

/* Inicio: estrutura geral de secoes */
.section-shell,
.section {
  position: relative;
}

.section {
  padding: 96px 0;
}
/* Fim: estrutura geral de secoes */

/* Inicio: hero principal */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 150px 0 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 20%, rgba(86, 174, 255, 0.24), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 45%, #d8edff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 62% 42%, rgba(61, 151, 232, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 58%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -170px;
  top: 12%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(86, 174, 255, 0.18), transparent 68%);
  filter: blur(38px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 3.25rem;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(50, 184, 255, 0.24);
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: clamp(2.75rem, 4.7vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 640px;
  margin: 0 0 1.85rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.82rem 1.18rem;
  color: var(--text);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-large {
  min-height: 54px;
  padding: 0.98rem 1.35rem;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #32b8ff 0%, #1167c8 100%);
  box-shadow:
    0 18px 42px rgba(17, 103, 200, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-primary:hover {
  box-shadow:
    0 22px 54px rgba(17, 103, 200, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(42, 139, 214, 0.18);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(42, 139, 214, 0.42);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(24, 90, 154, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.78rem;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(42, 139, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-video-visual {
  perspective: 1200px;
}

.video-frame {
  position: relative;
  width: min(100%, 760px);
  display: grid;
  place-items: center;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 7% 5% 11%;
  z-index: -1;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(50, 184, 255, 0.22), rgba(17, 103, 200, 0.14)),
    rgba(255, 255, 255, 0.7);
  filter: blur(28px);
  opacity: 0.75;
}

.video-glow {
  position: absolute;
  width: 86%;
  aspect-ratio: 1.5;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(50, 184, 255, 0.24), transparent 62%),
    radial-gradient(circle at 70% 30%, rgba(17, 103, 200, 0.16), transparent 55%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-showcase-video {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
  background: transparent;
  filter:
    drop-shadow(0 34px 74px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 34px rgba(50, 184, 255, 0.16));
  transform: rotateY(-7deg) rotateX(3deg);
  transform-origin: center;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  width: min(210px, 38%);
  padding: 0.85rem 0.92rem;
  border: 1px solid rgba(42, 139, 214, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 255, 0.86)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 56px rgba(24, 90, 154, 0.14);
  backdrop-filter: blur(18px);
  animation: float-card 6.5s ease-in-out infinite;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--text);
  font-size: 0.95rem;
}

.hero-floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.card-top {
  top: 9%;
  right: 0;
}

.card-bottom {
  left: 0;
  bottom: 10%;
  animation-delay: -2.2s;
}

@media (max-width: 1240px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  }

  .hero-showcase-video,
  .video-frame {
    width: min(100%, 680px);
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-showcase-video {
    transform: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 124px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    letter-spacing: -0.055em;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: block;
    margin-top: 0.5rem;
  }

  .video-frame {
    width: 100%;
  }

  .hero-floating-card {
    position: relative;
    width: 100%;
    margin-top: 0.75rem;
    inset: auto;
  }
}
/* Fim: hero principal */

/* Inicio: componentes compartilhados */
.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.showcase-ribbon {
  padding: 22px 0 0;
}

.showcase-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.showcase-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  width: 100%;
  padding: 1rem;
}

.showcase-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(224, 243, 255, 0.76)),
    rgba(255, 255, 255, 0.88);
  color: var(--muted-strong);
  font-weight: 800;
  white-space: nowrap;
}

.glass-card {
  min-height: 260px;
  padding: 1.3rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glass-card:hover,
.niche-card:hover,
.service-row:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 26px 70px rgba(24, 90, 154, 0.16), 0 0 34px rgba(50, 184, 255, 0.12);
}

.card-index,
.service-number,
.timeline-item > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(42, 139, 214, 0.24);
  color: var(--cyan);
  background: rgba(50, 184, 255, 0.1);
  font-weight: 900;
  margin-bottom: 1.1rem;
}

.glass-card h3,
.glass-card h2 {
  margin-bottom: 0.75rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-weight: 800;
  margin-top: 0.55rem;
  transition: transform 160ms ease, color 160ms ease;
}

.text-link:hover {
  color: var(--blue);
}
/* Fim: componentes compartilhados */

/* Inicio: secoes de conteudo da home */
.split-section {
  background: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(42, 139, 214, 0.12);
  border-bottom: 1px solid rgba(42, 139, 214, 0.12);
}

.home-overview {
  padding-top: 70px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.overview-copy p {
  max-width: 640px;
}

.overview-points {
  display: grid;
  gap: 1rem;
}

.overview-card,
.result-card,
.mini-niche-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(232, 246, 255, 0.78)),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.overview-card {
  padding: 1.15rem 1.2rem;
}

.overview-card strong,
.mini-niche-card strong {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
}

.overview-card p,
.mini-niche-card p,
.faq-item p,
.result-card p {
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
}

.split-grid p {
  font-size: 1.03rem;
  margin-bottom: 1.45rem;
}

.feature-stack {
  display: grid;
  gap: 0.9rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
}

.feature-item > span {
  width: 12px;
  height: 100%;
  min-height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(50, 184, 255, 0.2);
}

.feature-item p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline.mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline.full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline-item {
  position: relative;
  padding: 1.25rem;
}

.timeline-item p {
  margin-bottom: 0;
}

.process-preview .center-action {
  margin-top: 1.5rem;
}

.results-strip {
  background: rgba(232, 246, 255, 0.38);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.result-card {
  padding: 1.2rem;
}

.result-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 0.9rem;
  color: var(--cyan);
  font-weight: 900;
  background: rgba(50, 184, 255, 0.1);
  border: 1px solid rgba(42, 139, 214, 0.22);
}
/* Fim: secoes de conteudo da home */

/* Inicio: chamada de orcamento e contato */
.budget-band {
  padding: 64px 0;
}

.budget-content,
.contact-panel,
.cta-panel {
  position: relative;
  overflow: hidden;
}

.budget-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(42, 139, 214, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(214, 238, 255, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(24, 90, 154, 0.14);
}

.budget-content::before,
.contact-panel::before,
.cta-panel::before {
  content: none;
}

.budget-content > *,
.contact-panel > *,
.cta-panel > * {
  position: relative;
}

.budget-content h2,
.contact-panel h2,
.cta-panel h2 {
  margin-bottom: 0.75rem;
}

.budget-content p,
.contact-panel p,
.cta-panel p {
  margin-bottom: 0;
  max-width: 700px;
}

.contact-home {
  padding-top: 60px;
}

.contact-panel,
.cta-panel {
  padding: 2.4rem;
  text-align: center;
}

.contact-panel p,
.cta-panel p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.4rem;
}
/* Fim: chamada de orcamento e contato */

/* Inicio: heros e visuais de paginas internas */
.page-hero {
  min-height: 64svh;
  display: flex;
  align-items: center;
}

.page-hero h1 {
  font-size: 3.45rem;
}

.page-visual,
.process-visual,
.about-sigil,
.niche-radar {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(224, 243, 255, 0.78)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.page-visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  padding: 1.1rem;
}

.page-visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(0.95);
}

.visual-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 152px;
  height: 152px;
  object-fit: cover;
  border: 1px solid rgba(42, 139, 214, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 54px rgba(24, 90, 154, 0.18);
  animation: pulse-logo 4.8s ease-in-out infinite;
}

.page-visual span {
  display: none;
}

.page-visual span:nth-child(2),
.page-visual span:nth-child(3) {
  transform: none;
}
/* Fim: heros e visuais de paginas internas */

/* Inicio: pagina de servicos */
.services-list {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) minmax(220px, 0.7fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.2rem;
}

.service-row h2 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.service-row p,
.service-benefit span {
  margin-bottom: 0;
}

.service-number {
  margin-bottom: 0;
}

.service-benefit {
  color: var(--muted);
}

.service-benefit strong {
  display: block;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.services-showcase-section {
  background: rgba(255, 255, 255, 0.36);
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-showcase-card {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 245, 255, 0.82)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-showcase-card.featured {
  border-color: rgba(42, 139, 214, 0.3);
  box-shadow: 0 30px 80px rgba(24, 90, 154, 0.18);
}

.service-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  padding: 1.1rem;
  color: #ffffff;
  overflow: hidden;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 33, 61, 0.06), rgba(9, 33, 61, 0.72)),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.34), transparent 9rem);
}

.service-visual::after {
  content: "";
  position: absolute;
  right: -34px;
  top: 34px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.service-visual > * {
  position: relative;
  z-index: 1;
}

.service-visual .service-number {
  width: 44px;
  height: 44px;
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.service-visual strong {
  font-size: 1.35rem;
  line-height: 1.05;
}

.service-visual-landing {
  background: linear-gradient(135deg, #0f8fd9, #51c8ff);
}

.service-visual-site {
  background: linear-gradient(135deg, #1156b7, #7bbdff);
}

.service-visual-portfolio {
  background: linear-gradient(135deg, #2474d3, #a8d9ff);
}

.service-visual-system {
  background: linear-gradient(135deg, #0b407e, #2fa8ff);
}

.service-visual-improve {
  background: linear-gradient(135deg, #2a8bd6, #d7f0ff);
}

.service-content {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 1.25rem;
}

.service-kicker {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-content h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.service-content p {
  margin-bottom: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tags span {
  border: 1px solid rgba(42, 139, 214, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-checklist {
  margin-top: 0;
  padding-left: 1.05rem;
}

.service-checklist li {
  color: var(--muted);
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.service-actions .btn {
  min-height: 44px;
}

.services-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  border: 1px dashed rgba(42, 139, 214, 0.28);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
}

.services-note strong {
  color: var(--text);
}

.services-note p {
  margin: 0;
}

.service-method-section {
  background: rgba(232, 246, 255, 0.42);
}

.service-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 1rem;
}

.method-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 245, 255, 0.78)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.method-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(50, 184, 255, 0.1);
  border: 1px solid rgba(42, 139, 214, 0.18);
  font-weight: 900;
}

.method-card p {
  margin-bottom: 0;
}
/* Fim: pagina de servicos */

/* Inicio: nichos e solucoes */
.niche-radar {
  display: grid;
  place-items: center;
}

.niche-radar div {
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(42, 139, 214, 0.28);
  background:
    radial-gradient(circle, rgba(50, 184, 255, 0.18), transparent 44%),
    conic-gradient(from 0deg, rgba(50, 184, 255, 0.08), rgba(17, 103, 200, 0.16), rgba(125, 189, 255, 0.12), rgba(50, 184, 255, 0.08));
  box-shadow: 0 20px 48px rgba(24, 90, 154, 0.14);
  animation: slow-spin 22s linear infinite;
}

.niche-radar div img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 38px rgba(24, 90, 154, 0.18);
  animation: reverse-spin 22s linear infinite;
}

.niche-radar span {
  position: absolute;
  border: 1px solid rgba(42, 139, 214, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-strong);
  padding: 0.5rem 0.72rem;
  font-weight: 800;
  font-size: 0.88rem;
}

.niche-radar span:nth-of-type(1) { top: 16%; left: 12%; }
.niche-radar span:nth-of-type(2) { top: 22%; right: 8%; }
.niche-radar span:nth-of-type(3) { bottom: 18%; right: 18%; }
.niche-radar span:nth-of-type(4) { bottom: 22%; left: 10%; }

.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.niche-card {
  padding: 1.35rem;
}

.niche-media {
  margin: -1.35rem -1.35rem 1.15rem;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid rgba(42, 139, 214, 0.14);
}

.niche-media-wide {
  height: 260px;
}

.niche-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.niche-card:hover .niche-media img,
.hero-photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.niche-card.wide {
  grid-column: 1 / -1;
}

.niche-tag {
  display: inline-flex;
  border: 1px solid rgba(42, 139, 214, 0.22);
  border-radius: 999px;
  background: rgba(50, 184, 255, 0.1);
  color: var(--blue);
  padding: 0.35rem 0.65rem;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.niche-card h2 {
  font-size: 1.75rem;
}

.niche-card .btn {
  margin-top: 1.2rem;
}
/* Fim: nichos e solucoes */

/* Inicio: processo, sobre e estatisticas */
.process-visual {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem;
  align-content: center;
}

.process-logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border: 1px solid rgba(42, 139, 214, 0.22);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(24, 90, 154, 0.16);
}

.process-visual span {
  display: block;
  border: 1px solid rgba(42, 139, 214, 0.16);
  border-radius: 8px;
  padding: 1rem;
  color: var(--muted-strong);
  font-weight: 900;
  background:
    linear-gradient(90deg, rgba(50, 184, 255, 0.1), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.78);
}

.process-visual span:nth-child(2) {
  transform: translateX(22px);
}

.process-visual span:nth-child(3) {
  transform: translateX(44px);
}

.process-visual span:nth-child(4) {
  transform: translateX(66px);
  background:
    linear-gradient(90deg, rgba(17, 103, 200, 0.12), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.78);
}

.about-sigil {
  display: grid;
  place-items: center;
}

.about-sigil img {
  width: min(82%, 330px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(42, 139, 214, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 90, 154, 0.16);
}

.stat-panel {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.stat-panel div {
  padding: 1rem;
  border: 1px solid rgba(42, 139, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.stat-panel strong {
  display: block;
  color: var(--cyan);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-panel span {
  color: var(--muted);
}
/* Fim: processo, sobre e estatisticas */

/* Inicio: footer */
.site-footer {
  border-top: 1px solid rgba(42, 139, 214, 0.14);
  padding: 38px 0 24px;
  background: rgba(235, 247, 255, 0.92);
}

.footer-brand-block p {
  max-width: 420px;
  margin: 0.8rem 0 1rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-pills span {
  border: 1px solid rgba(42, 139, 214, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.niche-preview {
  border-top: 1px solid rgba(42, 139, 214, 0.12);
  border-bottom: 1px solid rgba(42, 139, 214, 0.12);
  background: rgba(232, 246, 255, 0.42);
}

.mini-niche-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mini-niche-card {
  overflow: hidden;
}

.mini-niche-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(42, 139, 214, 0.14);
}

.mini-niche-card > div {
  padding: 1rem;
}

.faq-home {
  background: rgba(255, 255, 255, 0.36);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.1rem 1.2rem;
}

.faq-item h3 {
  margin-bottom: 0.55rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(180px, 0.7fr));
  gap: 2rem;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 0.9rem;
}

.footer-title {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-links span {
  color: var(--muted);
}

.footer-actions .btn {
  width: fit-content;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(42, 139, 214, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
/* Fim: footer */

/* Inicio: botao flutuante do WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #32b8ff, #1167c8);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 44px rgba(17, 103, 200, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp::before {
  content: none;
}

.floating-whatsapp .wa-icon {
  width: 1.28rem;
  height: 1.28rem;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 56px rgba(17, 103, 200, 0.36);
}
/* Fim: botao flutuante do WhatsApp */

/* Inicio: animacoes e efeitos reutilizaveis */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.glass-card,
.service-row,
.niche-card,
.timeline-item,
.feature-item {
  position: relative;
  overflow: hidden;
}

.glass-card::before,
.service-row::before,
.niche-card::before,
.timeline-item::before,
.feature-item::before {
  content: none;
}

.glass-card:hover::before,
.service-row:hover::before,
.niche-card:hover::before,
.timeline-item:hover::before,
.feature-item:hover::before {
  opacity: 1;
}
/* Fim: animacoes e efeitos reutilizaveis */

/* Inicio: keyframes */
@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes reverse-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes pulse-logo {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.86;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
/* Fim: keyframes */

/* Inicio: responsivo ate 1040px */
@media (max-width: 1040px) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .overview-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .service-grid,
  .about-grid,
  .timeline.mini,
  .results-grid,
  .mini-niche-grid,
  .services-showcase-grid,
  .service-method-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: auto 1fr;
  }

  .service-row .btn,
  .service-benefit {
    grid-column: 2;
  }

  .service-showcase-card {
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
/* Fim: responsivo ate 1040px */

/* Inicio: responsivo ate 820px */
@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .menu-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    gap: 0.3rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

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

  .nav-link {
    padding: 0.85rem 0.9rem;
  }

  .nav-link::after {
    left: 0.9rem;
    right: auto;
    width: 38px;
  }

  .nav-panel .btn {
    margin-top: 0.35rem;
    width: 100%;
  }

  .hero,
  .page-hero {
    padding: 122px 0 68px;
  }

  .section {
    padding: 72px 0;
  }

  .page-hero h1,
  h1 {
    font-size: 2.55rem;
    line-height: 1.06;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .center-action {
    align-items: stretch;
  }

  .hero-actions .btn,
  .center-action .btn {
    width: 100%;
  }

  .page-visual,
  .process-visual,
  .about-sigil,
  .niche-radar {
    min-height: 300px;
  }

  .hero-photo-card {
    width: min(48%, 220px);
  }

  .timeline.full,
  .niche-grid {
    grid-template-columns: 1fr;
  }

  .niche-card.wide {
    grid-column: auto;
  }

  .budget-content {
    grid-template-columns: 1fr;
    padding: 1.35rem;
  }

  .budget-content .btn {
    width: 100%;
  }

  .contact-panel,
  .cta-panel {
    padding: 1.45rem;
  }
}
/* Fim: responsivo ate 820px */

/* Inicio: responsivo ate 560px */
@media (max-width: 560px) {
  .brand-text {
    font-size: 0.94rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .page-hero h1,
  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-photo-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 84%;
    margin-top: 1rem;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-showcase-card {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 190px;
  }

  .services-note {
    display: grid;
  }

  .service-row .btn,
  .service-benefit {
    grid-column: auto;
  }

  .service-row .btn {
    width: 100%;
  }

  .process-visual span:nth-child(2),
  .process-visual span:nth-child(3),
  .process-visual span:nth-child(4) {
    transform: none;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 52px;
  }

  .niche-media {
    height: 180px;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Fim: responsivo ate 560px */

/* Inicio: acessibilidade para movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Fim: acessibilidade para movimento reduzido */
