:root {
  --brand: #2ea2ff;
  --brand-2: #6ad7ff;
  --brand-dark: #1f7fda;
  --black: #070b12;
  --white: #ffffff;
  --gray: #c7d6ea;
  --panel: rgba(17, 27, 45, 0.78);
  --panel-solid: #0f1d33;
  --panel-2: #0a1020;
  --stroke: rgba(148, 190, 255, 0.18);
  --stroke-strong: rgba(148, 190, 255, 0.28);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --silver: rgba(233, 240, 255, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  background: radial-gradient(1200px 700px at 15% 0%, rgba(46, 162, 255, 0.14), transparent 55%),
    radial-gradient(1000px 600px at 85% 10%, rgba(106, 215, 255, 0.12), transparent 60%),
    radial-gradient(900px 700px at 30% 95%, rgba(46, 162, 255, 0.08), transparent 55%),
    var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
}

.alt {
  background: var(--panel-2);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  background: radial-gradient(900px 700px at 50% 10%, rgba(46, 162, 255, 0.18), transparent 60%),
    rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.js .page-loader {
  display: grid;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-card {
  width: min(420px, 92%);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, rgba(17, 27, 45, 0.86), rgba(10, 16, 32, 0.88));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
  text-align: center;
}

.loader-orb {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(46, 162, 255, 0.35) 35%, rgba(46, 162, 255, 0.08) 62%, rgba(0, 0, 0, 0) 70%);
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.28), 0 0 28px rgba(46, 162, 255, 0.35);
  animation: orbPulse 1.15s ease-in-out infinite;
}

.loader-text {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--silver);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 11, 18, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.header-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 120px at 50% 0%, rgba(46, 162, 255, 0.18), transparent 60%);
  opacity: 0.9;
  animation: headerGlow 4.8s ease-in-out infinite;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.75rem 0;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(46, 162, 255, 0.35) 35%, rgba(46, 162, 255, 0.12) 60%, rgba(0, 0, 0, 0) 72%);
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.3), 0 0 22px rgba(46, 162, 255, 0.35);
}

.menu {
  display: flex;
  order: 3;
  width: 100%;
  justify-content: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 0.2rem;
  flex-wrap: wrap;
}

.menu a {
  position: relative;
  color: rgba(233, 240, 255, 0.86);
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--white);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(46, 162, 255, 0.9), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {

  .header {
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      background 0.3s ease;
  }

  .header.hide-navbar {
    transform: translateY(-110%);
  }
}

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    top: -20px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 28px;
    height: 2px;
    background: white;
    border-radius: 999px;
  }

  .menu {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    background: rgba(7, 10, 18, 0.96);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;

    z-index: 1000;
  }

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

.nav-actions {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  padding: 0.68rem 1.05rem;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(46, 162, 255, 0.98), rgba(106, 215, 255, 0.92));
  color: #031024;
  box-shadow: 0 10px 26px rgba(46, 162, 255, 0.22);
}

.btn-secondary {
  background: rgba(17, 35, 63, 0.66);
  color: var(--white);
  border: 1px solid var(--stroke-strong);
}

.btn-ghost {
  background: rgba(17, 27, 45, 0.35);
  color: rgba(233, 240, 255, 0.9);
  border: 1px solid var(--stroke);
}

.btn-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
}

.glow:hover {
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.22), 0 0 34px rgba(46, 162, 255, 0.24);
  border-color: rgba(46, 162, 255, 0.34);
}

.hero {
  padding: 3.8rem 0 2.8rem;
  background: radial-gradient(circle at 10% 0%, rgba(46, 162, 255, 0.24) 0%, rgba(7, 11, 18, 0.4) 55%);
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.tagline {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.1rem);
  letter-spacing: 0.3px;
}

h2 {
  font-size: clamp(1.6rem, 4.6vw, 2.2rem);
}

.subtitle {
  color: var(--gray);
  max-width: 720px;
  margin-bottom: 1.1rem;
}

.lead {
  color: var(--gray);
  margin: -0.2rem 0 1.6rem;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
}

.hero-media {
  margin-top: 0.2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(15, 29, 51, 0.35);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.mockup {
  position: relative;
}

.mockup-top {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--stroke);
  background: rgba(10, 16, 32, 0.62);
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(233, 240, 255, 0.12);
  background: rgba(233, 240, 255, 0.06);
}

.mockup-glow {
  position: absolute;
  inset: -40px -40px auto -40px;
  height: 180px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 162, 255, 0.22), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.65rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 27, 45, 0.4);
  border: 1px solid var(--stroke);
  color: rgba(233, 240, 255, 0.86);
  font-weight: 700;
  font-size: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(46, 162, 255, 0.95);
  box-shadow: 0 0 18px rgba(46, 162, 255, 0.45);
}

.grid-3 {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature {
  padding: 1.2rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--stroke);
}

.feature img {
  display: block;
  margin-bottom: 0.7rem;
}

.feature p {
  color: var(--gray);
  margin: 0;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.cards-3 {
  grid-template-columns: 1fr;
}

.cards-4 {
  grid-template-columns: 1fr;
}

.card {
  border-radius: 16px;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(17, 27, 45, 0.82), rgba(10, 16, 32, 0.82));
  border: 1px solid var(--stroke);
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.06);
  transform: translateZ(0);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 162, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.12), 0 18px 70px rgba(0, 0, 0, 0.55);
}

.card-top {
  display: grid;
  gap: 0.35rem;
}

.muted {
  color: rgba(199, 214, 234, 0.85);
  margin: 0;
}

.feature-card h3 {
  margin-bottom: 0.3rem;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  background: rgba(46, 162, 255, 0.1);
  border: 1px solid rgba(46, 162, 255, 0.22);
  box-shadow: 0 0 30px rgba(46, 162, 255, 0.12);
}

.example-card .btn {
  margin-top: 0.6rem;
  width: fit-content;
}

.example-thumb {
  height: 160px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(46, 162, 255, 0.18), rgba(233, 240, 255, 0.06)),
    radial-gradient(500px 240px at 20% 0%, rgba(46, 162, 255, 0.26), transparent 60%),
    rgba(10, 16, 32, 0.72);
  box-shadow: inset 0 0 0 1px rgba(46, 162, 255, 0.06);
  margin-bottom: 0.9rem;
}

.split {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.split+.split {
  margin-top: 2.2rem;
}

.split-head {
  display: grid;
  gap: 0.6rem;
}

.price-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand);
}

.price-sep {
  color: var(--brand);
  font-weight: 800;
}

.per {
  color: rgba(199, 214, 234, 0.75);
  font-weight: 700;
}

.num {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(58, 160, 255, 0.14);
  border: 1px solid rgba(148, 190, 255, 0.25);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.85rem;
  margin-right: 0.45rem;
}

.stats {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.3rem;
}

.kpi {
  border-radius: 16px;
  padding: 1.2rem;
  background: var(--panel);
  border: 1px solid rgba(148, 190, 255, 0.2);
}

.kpi-value {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
}

.kpi-label {
  margin: 0.25rem 0 0;
  font-weight: 800;
}

.kpi-desc {
  margin: 0.35rem 0 0;
  color: var(--gray);
}

.quick-contact {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.quick-card {
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(17, 27, 45, 0.86), rgba(10, 16, 32, 0.86));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.badge {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 190, 255, 0.22);
  color: rgba(199, 214, 234, 0.92);
  font-weight: 700;
  font-size: 0.85rem;
}

.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px rgba(58, 160, 255, 0.3);
}

.card ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--gray);
}

.checklist {
  margin: 1rem 0;
  padding-left: 1.2rem;
  color: var(--gray);
}

.checklist li {
  margin: 0.35rem 0;
}

.service-split {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.service-side {
  display: grid;
  gap: 0.9rem;
}

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

.mini-card {
  position: relative;
  border-radius: 18px;
  padding: 1.2rem 1.2rem;
  background: linear-gradient(145deg, rgba(10, 18, 32, 0.8), rgba(5, 10, 20, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(to bottom, transparent, #007bff, transparent);
  opacity: 0.7;
}

.mini-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 123, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.08);
}

.mini-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mini-card:hover::after {
  opacity: 1;
}

.mini-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mini-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.plan .btn {
  width: fit-content;
}

.plan-bronze {
  border-color: rgba(34, 197, 94, 0.22);
}

.plan-prata {
  border-color: rgba(46, 162, 255, 0.3);
}

.plan-ouro {
  border-color: rgba(168, 85, 247, 0.22);
}

.testimonial .quote {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.steps {
  display: grid;
  gap: 0.8rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(148, 190, 255, 0.2);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #031024;
  background: var(--brand);
}

.step p {
  margin: 0.3rem 0 0;
  color: var(--gray);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

details {
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(148, 190, 255, 0.2);
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--gray);
  margin: 0.7rem 0 0;
}

.contact-form {
  display: grid;
  gap: 0.6rem;
  max-width: 560px;
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  background: linear-gradient(180deg, rgba(17, 27, 45, 0.86), rgba(10, 16, 32, 0.86));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.form-title {
  margin: 0 0 0.4rem;
}

.form-note {
  font-size: 0.92rem;
  margin: 0.2rem 0 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 10px;
  border: 1px solid var(--stroke-strong);
  background: rgba(13, 26, 45, 0.7);
  color: var(--white);
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(58, 160, 255, 0.35);
  border-color: var(--brand);
}

.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.feedback {
  min-height: 1.1rem;
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.feedback.success {
  color: #9ed0ff;
}

.feedback.error {
  color: #f6a8a8;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 0.75rem;
}

.map-wrap {
  margin-top: 1.1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(10, 16, 32, 0.6);
  box-shadow: var(--shadow);
}

.map {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.05);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 27, 45, 0.66);
  border: 1px solid rgba(46, 162, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(46, 162, 255, 0.12), 0 18px 70px rgba(0, 0, 0, 0.55);
}

.wa-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(46, 162, 255, 0.35) 35%, rgba(46, 162, 255, 0.08) 62%, rgba(0, 0, 0, 0) 70%);
  box-shadow: 0 0 18px rgba(46, 162, 255, 0.3);
  display: inline-block;
}

.wa-text {
  font-weight: 800;
  color: rgba(233, 240, 255, 0.92);
}

.footer {
  padding: 1rem 0 2rem;
  color: #a3a3a3;
  text-align: center;
}

.footer-links {
  margin: 0.5rem 0 0;
  display: inline-flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: center;
  color: rgba(233, 240, 255, 0.62);
}

.footer-links a:hover {
  color: rgba(233, 240, 255, 0.88);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

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

@keyframes orbPulse {
  0% {
    transform: scale(0.98);
    filter: saturate(1);
  }

  50% {
    transform: scale(1.06);
    filter: saturate(1.1);
  }

  100% {
    transform: scale(0.98);
    filter: saturate(1);
  }
}

@keyframes headerGlow {
  0% {
    opacity: 0.75;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(2px);
  }

  100% {
    opacity: 0.75;
    transform: translateY(0);
  }
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 740px) {
  .section {
    padding: 4rem 0;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 0.9rem 0;
  }

  .brand {
    font-size: 1.2rem;
  }

  .menu {
    order: 0;
    width: auto;
    padding-top: 0;
  }

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

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.8rem;
  }

  .service-split {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.4rem;
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
  }

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

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 739px) {
  .nav {
    justify-content: center;
  }

  .brand {
    width: 100%;
    text-align: center;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
    padding-top: 0.35rem;
  }

  .nav .btn {
    width: 100%;
  }

  .hero-grid {
    text-align: center;
  }

  .hero-actions,
  .trust-row,
  .project-links {
    justify-content: center;
  }

  .hero-media {
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

.example-thumb {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.example-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.example-card:hover .example-thumb {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

.academia-thumb {
  background-image: url('/assets/academia-saude-fit.png');
}

.pizzaria-thumb {
  background-image: url('/assets/ponto-da-pizza.png');
  background-position-y: -120px;
}

.barbearia-thumb {
  background-image: url('/assets/barbearia-prime.png');
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.hero-image {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}
