:root {
  --bg: #07090d;
  --bg-soft: #10151d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --card: rgba(12, 17, 24, 0.84);
  --card-alt: rgba(18, 25, 34, 0.96);
  --text: #f7fbff;
  --muted: #b8c4cf;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 194, 53, 0.3);
  --yellow: #ffc531;
  --yellow-strong: #ffb400;
  --orange: #ff7b1f;
  --green: #63d93b;
  --green-soft: #2fe075;
  --cyan: #23afff;
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.42);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(99, 217, 59, 0.16), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(255, 123, 31, 0.16), transparent 20%),
    linear-gradient(180deg, #05070a 0%, #091019 42%, #06080d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 96%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.6rem, 6vw, 5.6rem) 0;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.energy-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}

.energy-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.5;
}

.energy-orb-left {
  width: 24rem;
  height: 24rem;
  left: -8rem;
  top: 10rem;
  background: radial-gradient(circle, rgba(99, 217, 59, 0.4), transparent 70%);
}

.energy-orb-right {
  width: 32rem;
  height: 32rem;
  right: -8rem;
  top: 0;
  background: radial-gradient(circle, rgba(255, 123, 31, 0.32), transparent 72%);
}

.energy-grid {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(30vw, 18rem);
  height: min(34vw, 20rem);
  right: 2rem;
  bottom: 12rem;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(35, 175, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 175, 255, 0.18) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, transparent 0%, black 26%, transparent 100%);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 9, 13, 0.82);
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-inner a {
  font-weight: 700;
  color: #f2f7fc;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 15, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  background: rgba(7, 10, 15, 0.94);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem;
  border-radius: 16px;
  background: #050607;
  box-shadow: var(--shadow-md);
}

.brand img {
  width: clamp(64px, 8vw, 76px);
  max-height: 76px;
  border-radius: 12px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  position: relative;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.28rem;
  border-radius: 999px;
  font-family: "Oxanium", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition);
}

.button-primary {
  color: #0a0d12;
  background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 52%, var(--orange) 100%);
  box-shadow: 0 18px 40px rgba(255, 180, 0, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button:focus-visible,
.product-card:hover,
.value-card:hover,
.flow-card:hover,
.proof-card:hover,
.gallery-card:hover,
.faq-item:hover,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  padding: 0;
  background: #020304;
}

.hero::before {
  content: none;
}

.hero-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #020304;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.4);
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.value-card h2,
.location-copy h2,
.footer-contact h2 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.3vw, 4.65rem);
}

.hero-lead,
.products-copy p,
.location-copy p,
.section-heading p,
.value-card p,
.proof-card p,
.product-body p,
.flow-card p,
.faq-item p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-lead {
  max-width: 60ch;
  margin: 1.15rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.07rem);
}

.hero-actions,
.location-actions,
.header-actions {
  flex-wrap: wrap;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

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

.hero-quick article,
.proof-card,
.value-card,
.flow-card,
.faq-item,
.product-card,
.stage-photo,
.gallery-card,
.product-aside,
.aside-chip {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-md);
}

.hero-quick article {
  padding: 0.92rem;
  border-radius: 18px;
}

.hero-quick strong,
.proof-card strong {
  display: block;
  font-size: 1rem;
  font-family: "Oxanium", sans-serif;
}

.hero-quick span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-stage {
  display: block;
}

.stage-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.stage-photo {
  min-height: 520px;
}

.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 15, 0.9));
}

.stage-badge {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(10, 14, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.stage-badge-label {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stage-badge strong {
  display: block;
  font-size: 1.05rem;
  font-family: "Oxanium", sans-serif;
}

.brand-ticker {
  position: relative;
  z-index: 1;
  margin-top: 1.05rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.quick-band {
  padding-bottom: 1.15rem;
}

.brand-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.95rem 0;
  will-change: transform;
  animation: ticker 34s linear infinite;
}

.brand-track span {
  flex: 0 0 auto;
  font-family: "Oxanium", sans-serif;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-strip {
  padding-top: 1rem;
}

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

.value-card {
  padding: 1.3rem;
  border-radius: 26px;
}

.value-index {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  color: #0a0d12;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  font-family: "Oxanium", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.value-card h2,
.section-heading h2,
.products-copy h2,
.location-copy h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
}

.value-card p {
  margin-bottom: 0;
}

.products-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.3rem;
  align-items: start;
}

.products-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.filter-button {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: "Oxanium", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #0a0d12;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-color: transparent;
}

.product-aside {
  margin-top: 1.1rem;
  border-radius: 28px;
  padding: 1rem;
}

.aside-chip + .aside-chip {
  margin-top: 0.8rem;
}

.aside-chip {
  padding: 0.95rem 1rem;
  border-radius: 20px;
}

.aside-chip strong {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: 0.96rem;
}

.aside-chip span {
  display: block;
  margin-top: 0.34rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.product-card.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  display: none;
}

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

.product-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-card-wide .product-media {
  aspect-ratio: 2.2 / 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 1.1rem 1.1rem 1.25rem;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--yellow);
  border: 1px solid rgba(255, 197, 49, 0.24);
  background: rgba(255, 197, 49, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-body h3,
.flow-card h3 {
  margin: 0;
  font-family: "Oxanium", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.2;
}

.product-body p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 48rem;
}

.section-heading p:last-child {
  margin-top: 0.85rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.flow-card {
  padding: 1.3rem;
  border-radius: 24px;
}

.flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  color: #0a0d12;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}

.location-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
  min-height: 220px;
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-logo {
  padding: 0.75rem;
  background: #050607;
}

.gallery-logo img {
  object-fit: contain;
}

.location-points {
  display: grid;
  gap: 0.9rem;
  margin: 1.35rem 0 1.55rem;
}

.location-points article {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.location-points strong,
.footer-contact h2 {
  display: block;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
}

.location-points span,
.footer-contact span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  line-height: 1.5;
}

.location-actions {
  display: flex;
  gap: 0.85rem;
}

.proof {
  padding-top: 0;
}

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

.proof-card {
  padding: 1.25rem;
  border-radius: 24px;
}

.proof-card p {
  margin-bottom: 0;
}

.faq-shell {
  display: grid;
  gap: 1.4rem;
}

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

.faq-item {
  border-radius: 22px;
  padding: 0 1.1rem;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 1.15rem 2rem 1.15rem 0;
  cursor: pointer;
  font-family: "Oxanium", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--yellow);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.2rem;
}

.site-footer {
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.94);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  padding: 1rem;
}

.footer-brand img {
  width: min(15rem, 100%);
  border-radius: 18px;
}

.footer-brand p {
  max-width: 26rem;
  margin-bottom: 0;
}

.footer-contact {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.footer-contact a {
  color: #f8fbff;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  border-radius: 999px;
  color: #07100a;
  background: linear-gradient(135deg, #47e36e, #b9ff4b);
  box-shadow: 0 18px 36px rgba(71, 227, 110, 0.28);
  font-family: "Oxanium", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.9rem;
  }

  .products-shell,
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .products-copy {
    position: static;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .location-gallery {
    order: 2;
  }

  .location-copy {
    order: 1;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 0.45rem 0;
    text-align: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(10, 15, 21, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

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

  .site-nav a {
    padding: 0.8rem 0.6rem;
    border-radius: 14px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-quick,
  .value-grid,
  .flow-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1.1rem));
  }

  .header-shell {
    min-height: 76px;
  }

  .hero {
    padding: 0;
  }

  .hero-banner img {
    height: auto;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .hero-quick {
    gap: 0.75rem;
  }

  .products-grid,
  .location-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .product-card-wide .product-media {
    aspect-ratio: 1 / 1;
  }

  .location-actions,
  .hero-actions {
    flex-direction: column;
  }

  .location-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .stage-photo {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-height: 860px) and (min-width: 1000px) {
  .hero {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 3.3vw, 3.3rem);
  }

  .hero-lead {
    margin-top: 0.8rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .stage-photo {
    min-height: 400px;
  }
}
