:root {
  color-scheme: dark;
  --lime: #b6ff00;
  --green: #20e048;
  --black: #020403;
  --panel: #0d1714;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 14% 10%, rgba(182, 255, 0, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 25%, rgba(32, 224, 72, 0.1), transparent 30rem),
    linear-gradient(180deg, #030806 0%, #020403 46%, #010201 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 3, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-grid;
  gap: 0;
  color: white;
  text-decoration: none;
}

.site-logo {
  display: block;
  width: clamp(88px, 9vw, 116px);
  height: auto;
}

.site-logo--footer {
  width: 120px;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-ball {
  position: relative;
  width: 0.72em;
  aspect-ratio: 1;
  border: 0.08em solid white;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, #101810 0 18%, transparent 20%),
    conic-gradient(from 18deg, var(--lime) 0 18%, white 18% 32%, var(--green) 32% 50%, white 50% 68%, var(--lime) 68% 84%, white 84% 100%);
  box-shadow: 0 0 16px rgba(182, 255, 0, 0.42);
}

.nav-link {
  position: relative;
  transition: color 160ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover {
  color: white;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  transform-origin: top;
}

.menu-toggle {
  display: inline-grid;
  color: white;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-menu.is-open {
  display: grid;
  gap: 10px;
  animation: menuIn 160ms ease both;
}

.mobile-menu a {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu .mobile-cta {
  color: #07100e;
  background: var(--lime);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-section {
  background: #020403;
}

.hero-photo {
  background-image: url("../images/banner.png");
  background-position: center;
  background-size: cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.hero-vignette {
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 0.98) 0%, rgba(2, 4, 3, 0.82) 42%, rgba(2, 4, 3, 0.36) 76%, rgba(2, 4, 3, 0.58) 100%),
    linear-gradient(180deg, rgba(2, 4, 3, 0.3), #020403 96%);
}

.hero-title {
  font-size: clamp(2.8rem, 4.45vw, 4.6rem);
  line-height: 0.96;
}

.hero-people {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  align-items: center;
  justify-items: end;
  overflow: visible;
}

.hero-people img {
  width: min(100%, 760px);
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.42));
  margin-top: auto;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.cta-button {
  gap: 12px;
  padding: 0 22px;
  color: #061007;
  background: linear-gradient(135deg, #d9ff39, var(--lime) 52%, #74ff38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22) inset, 0 18px 42px rgba(182, 255, 0, 0.28);
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.ghost-button {
  gap: 10px;
  padding: 0 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.ghost-button:hover {
  border-color: rgba(182, 255, 0, 0.62);
  box-shadow: 0 0 26px rgba(182, 255, 0, 0.1);
}

.ghost-button svg {
  width: 18px;
  height: 18px;
}

.hero-showcase {
  position: relative;
  min-height: 560px;
}

.totem-shell {
  position: absolute;
  right: 18%;
  bottom: 10px;
  width: min(330px, 72vw);
  padding: 12px;
  border: 2px solid rgba(190, 255, 153, 0.86);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(5, 12, 10, 0.96), rgba(13, 23, 20, 0.92));
  box-shadow:
    0 0 32px rgba(32, 224, 72, 0.58),
    0 32px 90px rgba(0, 0, 0, 0.74);
  transform: perspective(1100px) rotateY(-9deg) rotateX(2deg);
}

.totem-shell::after {
  position: absolute;
  right: 26px;
  bottom: -26px;
  left: 26px;
  height: 20px;
  border-radius: 999px;
  content: "";
  background: rgba(32, 224, 72, 0.72);
  filter: blur(12px);
}

.totem-camera {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 70px;
  height: 18px;
  border: 2px solid rgba(190, 255, 153, 0.75);
  border-radius: 999px;
  background: #061007;
  transform: translateX(-50%);
}

.totem-screen {
  min-height: 500px;
  padding: 28px 24px;
  overflow: hidden;
  border-radius: 19px;
  background:
    radial-gradient(circle at 80% 16%, rgba(32, 224, 72, 0.22), transparent 8rem),
    radial-gradient(circle at 15% 50%, rgba(60, 246, 255, 0.13), transparent 11rem),
    linear-gradient(180deg, #08100e, #050808);
}

.totem-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
  margin: 0 auto 20px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.totem-logo span {
  display: inline-block;
  width: 0.78em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(var(--lime), white, var(--green), white, var(--lime));
}

.totem-screen p {
  margin: 0;
  color: var(--lime);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.totem-screen h2 {
  max-width: 230px;
  margin: 20px auto 16px;
  color: white;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.quiz-options {
  display: grid;
  gap: 9px;
}

.quiz-options button {
  min-height: 36px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: left;
}

.quiz-options .is-correct {
  color: #061007;
  background: var(--green);
}

.totem-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.totem-actions span {
  display: grid;
  gap: 5px;
  justify-items: center;
}

.totem-actions svg {
  width: 18px;
  height: 18px;
  color: var(--lime);
}

.soccer-orbit {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 22px auto 0;
  border: 10px solid #101810;
  border-top-color: var(--lime);
  border-right-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(182, 255, 0, 0.24);
}

.soccer-orbit::before {
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, #050808 0 20%, transparent 22%),
    conic-gradient(#fff 0 16%, #101810 16% 31%, #fff 31% 48%, #101810 48% 65%, #fff 65% 82%, #101810 82% 100%);
}

.neon-sign {
  position: absolute;
  top: 168px;
  right: -36px;
  z-index: 2;
  display: grid;
  gap: 2px;
  width: 168px;
  padding: 18px;
  border: 3px solid #ffd43b;
  border-radius: 8px;
  color: var(--lime);
  background: rgba(4, 7, 6, 0.7);
  box-shadow: 0 0 24px rgba(255, 212, 59, 0.34);
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 0.96;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.neon-sign strong {
  color: #ffd43b;
}

.benefit-strip {
  border: 1px solid rgba(182, 255, 0, 0.42);
  border-radius: 18px;
  background: rgba(5, 10, 8, 0.5);
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(182, 255, 0, 0.14) inset,
    0 0 28px rgba(182, 255, 0, 0.14),
    0 18px 54px rgba(0, 0, 0, 0.35);
}

.benefit-item {
  display: flex;
  align-items: center;
  min-height: 104px;
  gap: 18px;
  padding: 22px;
  background: rgba(5, 10, 8, 0.76);
}

.benefit-item svg {
  width: 42px;
  height: 42px;
  color: var(--lime);
  stroke-width: 1.7;
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-shell {
  width: min(100% - 2.5rem, 80rem);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-shell.pt-0 {
  padding-top: 0;
}

.hero-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading h2,
.section-title {
  max-width: 780px;
  margin: 0;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.solucoes-title {
  max-width: 760px;
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  line-height: 0.96;
}

.section-heading h2 span,
.section-title span {
  color: var(--lime);
}

.experience-card {
  position: relative;
  display: flex;
  min-height: 370px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #07100e;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.experience-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  background:
    radial-gradient(circle at 50% 18%, color-mix(in srgb, var(--card-accent, var(--lime)) 18%, transparent), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
  opacity: 0.95;
  pointer-events: none;
}

.experience-card:hover {
  border-color: rgba(182, 255, 0, 0.45);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.experience-card[data-accent="rainbow"] {
  --card-accent: linear-gradient(135deg, #ff2e63, #ffd43b, #35ff69, #2de2ff, #9b5cff);
}

.experience-card[data-accent="violet"] {
  --card-accent: #8c4dff;
}

.experience-card[data-accent="cyan"] {
  --card-accent: #3cf6ff;
}

.experience-card[data-accent="amber"] {
  --card-accent: #ffb000;
}

.experience-card[data-accent="pink"] {
  --card-accent: #ff42d0;
}

.icon-orb {
  display: grid;
  width: 132px;
  height: 132px;
  margin: 2px 0 20px;
  place-items: center;
  border-radius: 20px;
  color: var(--lime);
  background: transparent;
  box-shadow: none;
}

.icon-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(182, 255, 0, 0.18));
}

.icon-orb svg {
  width: 122px;
  height: 122px;
  filter: drop-shadow(0 0 10px currentColor);
}

.experience-card h3 {
  margin: 0 0 10px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.experience-card p {
  margin: 0;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
  line-height: 1.5;
}

.experience-card a {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: auto;
  place-items: center;
  color: #d6db42;
  text-decoration: none;
}

.experience-card a svg {
  width: 20px;
  height: 20px;
}

.segment-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #07100e;
}

.segment-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.02);
  transition: transform 260ms ease;
}

.segment-card:hover img {
  transform: scale(1.08);
}

.segment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(2, 4, 3, 0.92) 100%);
}

.segment-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
}

.segment-card svg {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 999px;
  color: #061007;
  background: var(--lime);
}

.segment-card strong {
  font-size: 1rem;
  line-height: 1.1;
}

.cases-layout {
  display: grid;
  gap: 24px;
}

.cases-intro {
  align-self: start;
}

.cases-eyebrow {
  margin: 0 0 10px;
  color: white;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cases-title {
  display: block;
  margin-top: 4px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.3rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--lime);
}

.cases-rating {
  margin-top: 34px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-row strong {
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
}

.rating-star {
  width: clamp(1.7rem, 2.2vw, 2.2rem);
  height: clamp(1.7rem, 2.2vw, 2.2rem);
  color: var(--lime);
}

.cases-rating p {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.32;
}

.google-logo {
  width: 26px;
  height: 26px;
  margin-top: 1px;
}

@media (min-width: 1024px) {
  .cases-layout {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
  }
}

.testimonial-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.testimonial-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 22px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #07100e;
}

.stars {
  color: #ffd43b;
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  margin: 16px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

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

  .testimonial-card {
    min-height: 280px;
  }
}

@media (min-width: 1180px) {
  .testimonial-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: auto;
  font-weight: 900;
}

.testimonial-card span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 700;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition:
    width 160ms ease,
    background 160ms ease;
}

.slider-dots button.is-active {
  width: 42px;
  background: var(--lime);
}

.field-photo {
  background-image: url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
  opacity: 0.82;
}

.result-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border-left: 1px solid rgba(182, 255, 0, 0.34);
}

.result-item--tight {
  gap: 1px 14px;
}

.result-item--tight strong,
.result-item--tight span {
  line-height: 1;
}

.result-item svg {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  padding: 12px;
  border: 1px solid rgba(182, 255, 0, 0.45);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(2, 4, 3, 0.48);
}

.result-item strong {
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.result-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  gap: 22px;
}

.cta-panel::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(182, 255, 0, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 40px rgba(182, 255, 0, 0.12);
}

.cta-copy {
  max-width: 460px;
}

.cta-center {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.cta-button--panel {
  min-width: min(100%, 340px);
  justify-content: center;
  padding-inline: 26px;
  font-size: 0.92rem;
}

.cta-phone {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.cta-phone span {
  color: rgba(255, 255, 255, 0.62);
}

.cta-phone a {
  color: var(--lime);
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
}

.cta-art {
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  /*background:
    radial-gradient(circle at 75% 25%, rgba(182, 255, 0, 0.12), transparent 40%),
    rgba(2, 4, 3, 0.48);*/
}

.cta-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
  filter: saturate(1.02) brightness(0.95);
}

.footer-shell {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: start;
  justify-content: space-between;
}

.footer-brand p {
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-col strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-contact a,
.footer-contact .footer-contact-line {
  width: 100%;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--lime);
  flex: 0 0 16px;
}

.footer-contact-line {
  margin-top: 8px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.social-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #061007;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.34);
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #38e274;
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.42);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 520px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 52px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

.footer-copy {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #07100e;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-family: "Bricolage Grotesque", Inter, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.1;
}

.faq-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .hero-showcase {
    min-height: 520px;
  }

  .totem-shell {
    right: 50%;
    transform: translateX(50%) perspective(1100px) rotateY(-8deg) rotateX(2deg);
  }

  .neon-sign {
    top: 48px;
    right: calc(50% - 258px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .slider-dots {
    display: flex;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    max-width: 100%;
    text-align: left;
  }

  .cta-center {
    justify-items: start;
  }

  .cta-phone {
    text-align: left;
  }

  .cta-art {
    min-height: 220px;
  }

  .faq-grid {
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 92px;
  }

  .hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
    font-size: clamp(2.55rem, 11vw, 3rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .cta-button--panel {
    width: 100%;
    min-width: 0;
  }

  .hero-showcase {
    min-height: 500px;
    margin-top: 48px;
  }

  .totem-shell {
    width: min(270px, 74vw);
  }

  .totem-screen {
    min-height: 408px;
    padding: 24px 18px;
  }

  .neon-sign {
    top: 12px;
    right: 0;
    width: 142px;
    padding: 12px;
    font-size: 1.16rem;
  }

  .benefit-item {
    min-height: 86px;
  }

  .site-logo {
    width: 96px;
  }

  .site-logo--footer {
    width: 100px;
  }

  .section-shell {
    width: min(100% - 1.5rem, 80rem);
  }

  .experience-card {
    min-height: 250px;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
