:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --surface: #121216;
  --surface-2: #17171c;
  --text: #ffffff;
  --muted: #b9bac1;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #08a9ff;
  --pink: #f0007f;
  --yellow: #ffc400;
  --green: #73d000;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.84);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Montserrat", sans-serif;
}

.brand-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.15em;
  line-height: 1;
  padding-right: 0.15em;
}

.brand-name span {
  display: inline-block;
}

.s1 { color: var(--blue); }
.s2 { color: #ff3a00; }
.s3 { color: var(--pink); }
.s4 { color: var(--yellow); }

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  font-weight: 800;
  color: #fff;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-menu > a:not(.nav-cta) {
  color: #d7d7dc;
  transition: color 0.2s ease;
}

.main-menu > a:not(.nav-cta):hover {
  color: #fff;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 196, 0, 0.65);
  border-radius: 999px;
  color: var(--yellow);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 145px 0 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(8, 169, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(240, 0, 127, 0.12), transparent 28%),
    linear-gradient(180deg, #050505 0%, #09090b 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.orb {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  z-index: -2;
}

.orb-blue {
  left: -160px;
  bottom: 0;
  background: var(--blue);
}

.orb-pink {
  right: -170px;
  top: 80px;
  background: var(--pink);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1,
.section-heading h2,
.location-copy h2,
.cta-box h2 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-description {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #090909;
  background: var(--yellow);
  box-shadow: 0 14px 38px rgba(255, 196, 0, 0.18);
}

.button-secondary {
  color: #fff;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}

.button-light {
  color: #111;
  background: #fff;
  flex: 0 0 auto;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.quick-info > div {
  display: grid;
  gap: 3px;
}

.quick-label {
  color: #74757d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.quick-info strong,
.quick-info a {
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.logo-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(8,169,255,.12), transparent 32%),
    radial-gradient(circle at 85% 17%, rgba(240,0,127,.13), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-card::before,
.logo-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 8px;
  bottom: 30px;
  border-radius: 999px;
}

.logo-card::before {
  left: 30px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.logo-card::after {
  right: 30px;
  background: linear-gradient(90deg, transparent, var(--pink));
}

.logo-word {
  display: flex;
  align-items: baseline;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(5.8rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.16em;
  line-height: 0.82;
  padding-right: 0.16em;
}

.logo-word span {
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.32));
}

.logo-s {
  color: var(--blue);
}

.logo-e {
  color: #ff4b00;
}

.logo-t {
  color: var(--pink);
  transform: translateY(-0.08em);
}

.logo-a {
  color: var(--yellow);
}

.logo-caption {
  margin-top: 22px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.55em;
  padding-left: 0.55em;
}

.color-dots {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.color-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.color-dots span:nth-child(1) { background: var(--blue); }
.color-dots span:nth-child(2) { background: var(--pink); }
.color-dots span:nth-child(3) { background: var(--yellow); }
.color-dots span:nth-child(4) { border: 1px solid #fff; }

.logo-card p {
  max-width: 330px;
  margin: 28px auto 0;
  color: var(--muted);
  text-align: center;
}

.section {
  padding: 110px 0;
}

.services-section {
  background: #08080a;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 48px;
}

.section-heading h2,
.location-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  position: relative;
  min-height: 295px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.15;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-blue:hover { border-color: rgba(8,169,255,.5); }
.service-pink:hover { border-color: rgba(240,0,127,.5); }
.service-yellow:hover { border-color: rgba(255,196,0,.5); }
.service-green:hover { border-color: rgba(115,208,0,.5); }

.service-blue::after { background: var(--blue); }
.service-pink::after { background: var(--pink); }
.service-yellow::after { background: var(--yellow); }
.service-green::after { background: var(--green); }

.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 55px;
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-blue .service-icon { color: var(--blue); background: rgba(8,169,255,.11); }
.service-pink .service-icon { color: var(--pink); background: rgba(240,0,127,.11); }
.service-yellow .service-icon { color: var(--yellow); background: rgba(255,196,0,.11); }
.service-green .service-icon { color: var(--green); background: rgba(115,208,0,.11); }

.service-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.2;
}

.service-card p {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--muted);
}

.benefits-section {
  background:
    radial-gradient(circle at 7% 35%, rgba(8,169,255,.08), transparent 25%),
    radial-gradient(circle at 94% 40%, rgba(240,0,127,.08), transparent 25%),
    var(--bg);
}

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

.benefit {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.benefit-number {
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.benefit h3 {
  margin: 24px 0 12px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.location-section {
  background: #09090b;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 60px;
}

.location-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.location-list > div {
  display: grid;
  gap: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.location-list span {
  color: #7f8088;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-list a,
.location-list strong {
  width: fit-content;
  font-size: 1.03rem;
}

.map-card {
  position: relative;
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(32deg, transparent 45%, rgba(8,169,255,.16) 46%, rgba(8,169,255,.16) 48%, transparent 49%),
    linear-gradient(-25deg, transparent 44%, rgba(255,255,255,.1) 45%, rgba(255,255,255,.1) 47%, transparent 48%),
    linear-gradient(110deg, #101014, #18181e);
  box-shadow: var(--shadow);
}

.map-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(25deg, transparent 48%, rgba(255,255,255,.14) 49%, rgba(255,255,255,.14) 51%, transparent 52%),
    linear-gradient(95deg, transparent 48%, rgba(255,255,255,.09) 49%, rgba(255,255,255,.09) 51%, transparent 52%);
  background-size: 160px 120px, 190px 150px;
}

.map-pin {
  position: absolute;
  left: 55%;
  top: 43%;
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  background: var(--pink);
  transform: rotate(-45deg);
  box-shadow: 0 18px 45px rgba(240,0,127,.35);
}

.map-pin span {
  position: absolute;
  inset: 19px;
  border: 5px solid #fff;
  border-radius: 50%;
}

.map-card-label {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(5,5,5,.75);
  backdrop-filter: blur(12px);
}

.map-card-label span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-section {
  padding: 28px 0 100px;
  background: #09090b;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 46px;
  border-radius: 28px;
  color: #080808;
  background:
    linear-gradient(115deg, var(--yellow), #ffdf4d 48%, #ff8e00);
}

.cta-box .eyebrow {
  color: rgba(0,0,0,.62);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta-box p:last-child {
  margin: 14px 0 0;
  color: rgba(0,0,0,.7);
}

.site-footer {
  padding: 55px 0 30px;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px 60px;
  align-items: start;
}

.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.footer-brand span {
  color: var(--yellow);
}

.footer-content p {
  max-width: 520px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 28px;
  font-weight: 600;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-float svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 980px) {
  .main-menu {
    position: fixed;
    inset: 84px 20px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(10,10,12,.97);
    box-shadow: var(--shadow);
  }

  .main-menu.open {
    display: flex;
  }

  .main-menu a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-button {
    display: block;
  }

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

  .hero-content {
    gap: 55px;
  }

  .hero-visual {
    max-width: 680px;
  }

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

  .location-grid {
    gap: 45px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 72px;
  }

  .brand-name {
    font-size: 1.75rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .main-menu {
    inset: 72px 14px auto;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 17vw, 5.2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-info {
    gap: 22px;
  }

  .logo-card {
    min-height: 390px;
    padding: 28px 20px;
  }

  .logo-word {
    font-size: clamp(5rem, 25vw, 7rem);
  }

  .logo-caption {
    font-size: 0.94rem;
  }

  .section {
    padding: 82px 0;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 27px;
  }

  .service-icon {
    margin-bottom: 36px;
  }

  .benefit {
    padding: 26px 20px;
  }

  .map-card {
    min-height: 390px;
  }

  .cta-section {
    padding-bottom: 72px;
  }

  .cta-box {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
