/* =============================
   Theme
   ============================= */

:root {
  --bg-900: #0f0f12;
  --bg-850: #141418;
  --text: #f4f4f6;
  --muted: #b6b7be;
  --line: rgba(255, 255, 255, .10);

  --lime: #E1F066;
  --purple: #B3A1FF;

  --radius-xl: 28px;
  --radius-lg: 22px;

  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
  --glass: rgba(255, 255, 255, .06);
}

/* =============================
   Base / Scrollbars
   ============================= */

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--lime) var(--bg-850);
  scrollbar-gutter: stable;
  background: var(--bg-900);
}

html.menu-open {
  scrollbar-gutter: auto;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: var(--bg-850);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(225, 240, 102, .95),
    rgba(225, 240, 102, .55)
  );
  border-radius: 999px;
  border: 3px solid var(--bg-850);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background: var(--lime);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: var(--bg-850);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(179, 161, 255, .22), transparent 55%),
    radial-gradient(1200px 900px at 85% 25%, rgba(225, 240, 102, .20), transparent 55%),
    linear-gradient(180deg, var(--bg-900), #0b0b0d);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(55px);
  opacity: .65;
  z-index: -1;
}

body::before {
  background: rgba(225, 240, 102, .30);
  left: -180px;
  top: 260px;
}

body::after {
  background: rgba(179, 161, 255, .28);
  right: -220px;
  top: -160px;
}

/* =============================
   Layout / Header
   ============================= */

.container {
  width: min(1380px, 96vw);
  margin-inline: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(14px);
  background: rgba(15, 15, 18, .55);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: .4px;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225, 240, 102, .95), rgba(179, 161, 255, .95));
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* =============================
   Desktop Nav (Goo)
   ============================= */

.desk-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  overflow: visible;
}

.desk-goo-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.desk-goo-layer-inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 72px;
  filter: url(#goo);
  -webkit-filter: url(#goo);
}

.goo-blob {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, .94);
}

.goo-blob.pill {
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.goo-blob.bridge {
  border-radius: var(--br, 55% 45% 60% 40% / 45% 55% 45% 55%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
  animation: gooWobble var(--dur, 3.8s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

@keyframes gooWobble {
  0% {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(2deg) scale(1.06);
  }
}

.desk-item {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0f1012;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: transparent;
  white-space: nowrap;
  transition: transform .15s ease, color .15s ease;
  will-change: transform;
}

.desk-item:hover {
  transform: translateY(-1px);
}

.desk-item.active {
  color: #000;
}

.desk-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .75), 0 0 0 6px rgba(179, 161, 255, .35);
  border-radius: 999px;
}

/* =============================
   Bottom Nav
   ============================= */

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.bn-item {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(0, 0, 0, .55);
  background: rgba(0, 0, 0, .07);
  transition: .15s ease;
}

.bn-item i {
  font-size: 18px;
}

.bn-item:hover {
  background: rgba(0, 0, 0, .10);
}

.bn-item.active {
  background: var(--purple);
  color: #0f1012;
}

/* =============================
   Responsive (<= 740px)
   ============================= */

@media (max-width: 740px) {
  .desk-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    overflow: visible;
  }

  .desk-goo-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
  }

  .desk-goo-layer-inner {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 72px;
    filter: url(#goo);
    -webkit-filter: url(#goo);
  }

  .goo-blob {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .94);
  }

  .goo-blob.pill {
    border-radius: 999px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  }

  .goo-blob.bridge {
    border-radius: var(--br, 55% 45% 60% 40% / 45% 55% 45% 55%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
    animation: gooWobble var(--dur, 3.8s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
    will-change: transform;
  }

  @keyframes gooWobble {
    0% {
      transform: translate(-50%, -50%) rotate(-2deg) scale(1);
    }
    100% {
      transform: translate(-50%, -50%) rotate(2deg) scale(1.06);
    }
  }

  .bottom-nav {
    display: flex;
  }

  .page {
    padding-bottom: 130px;
  }

  body {
    padding-bottom: 96px;
  }
}

/* =============================
   Page / Card
   ============================= */

.page {
  padding: 26px 0 60px;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(179, 161, 255, .22), transparent 55%),
    radial-gradient(1200px 900px at 85% 25%, rgba(225, 240, 102, .20), transparent 55%),
    linear-gradient(180deg, var(--bg-900), #0b0b0d);
}

.card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.card-inner {
  padding: 22px;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(700px 260px at 20% 0%, rgba(225, 240, 102, .18), transparent 55%),
    radial-gradient(700px 260px at 80% 0%, rgba(179, 161, 255, .18), transparent 55%);
  pointer-events: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 34px;
  align-items: start;
  margin-top: 22px;
}

.contact-kicker {
  color: rgba(255, 255, 255, .70);
  font-size: 16px;
  margin: 0 0 16px;
}

.contact-title {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.6px;
  font-weight: 900;
}

.contact-title .accent {
  color: var(--lime);
}

.contact-desc {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.7;
  max-width: 44ch;
}

.contact-block-title,
.follow-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .70);
  font-size: 18px;
  line-height: 1.6;
}

.contact-item i {
  color: var(--lime);
  font-size: 18px;
  margin-top: 4px;
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--lime);
}

.social-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-link {
  --brand: #ffffff;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255, 255, 255, .92);
  color: #0f1012;
  border: 1px solid rgba(255, 255, 255, .25);

  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  text-decoration: none;
}

.social-link i {
  font-size: 18px;
}

.social-link:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.social-link.facebook {
  --brand: #1877F2;
}

.social-link.whatsapp {
  --brand: #25D366;
}

.social-link.linkedin {
  --brand: #0A66C2;
}

.social-link.instagram {
  --brand: #E4405F;
}

.contact-form-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .45);
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
  font-size: 18px;
}

.req {
  color: var(--lime);
  font-weight: 900;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .25);
  color: rgba(255, 255, 255, .92);
  outline: none;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 10px 30px rgba(0, 0, 0, .25);
}

.contact-form-card input {
  height: 56px;
}

.contact-form-card textarea {
  min-height: 180px;
  resize: none;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(225, 240, 102, .35);
  box-shadow:
    0 0 0 4px rgba(225, 240, 102, .10),
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 14px 45px rgba(0, 0, 0, .35);
}

.field.full {
  grid-column: 1 / -1;
}

.contact-send {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-send {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 56px;
  min-width: 210px;
  border: none;
  padding: 0 56px 0 28px;
  background: var(--lime);
  color: #0f1012;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(225, 240, 102, .18);
  transition: transform .2s ease, background-color .8s ease, box-shadow .8s ease, color .8s ease;
  overflow: hidden;
}

.btn-send .btn-text {
  display: inline-block;
  transition: opacity .8s ease, transform .8s ease;
  will-change: opacity, transform;
}

.btn-send .btn-icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  font-size: 16px;
  transition: left .8s ease, right .8s ease, transform .8s ease, color .8s ease;
  will-change: left, right, transform;
}

.btn-send:hover {
  background-color: rgb(168, 38, 255);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(168, 38, 255, .22);
}

.btn-send:hover .btn-text {
  opacity: 0;
  transform: translateX(-8px);
}

.btn-send:hover .btn-icon {
  right: auto;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
}

.btn-send:active {
  transform: translate(3px, 3px);
  box-shadow: 0 10px 26px rgba(168, 38, 255, .18);
}

.btn-send:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .75),
    0 0 0 6px rgba(179, 161, 255, .35),
    0 18px 45px rgba(168, 38, 255, .18);
}

.notice {
  color: rgba(255, 255, 255, .60);
  font-size: 13px;
}

@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}
/* =============================
   Banner
   ============================= */

.page-banner {
  width: 100vw;
  height: 220px;
  overflow: hidden;

  position: relative;
  left: 50%;
  transform: translateX(-50%);

  background: transparent;
  margin: 0;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================
   Footer
   ============================= */

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .35);
}

.site-footer .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 40px;
  padding-right: 140px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-left {
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.4;
}

.footer-left a {
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.footer-left a:hover {
  color: var(--lime);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 44px;
}

.footer-right a {
  color: rgba(255, 255, 255, .70);
  text-decoration: none;
  font-weight: 600;
  transition: .2s ease;
}

.footer-right a:hover {
  color: rgba(255, 255, 255, .92);
}

@media (max-width: 740px) {
  .site-footer .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .footer-left {
    width: 100%;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-social-icons {
    width: 100%;
    justify-content: center;
  }
}

/* =============================
   Header / Menu (Overrides)
   ============================= */

header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(15, 15, 18, .75) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .10) !important;
}

.nav.nav-simple {
  padding: 18px 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  height: auto;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  mix-blend-mode: difference;
}

.menu-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;

  display: grid;
  place-content: center;
  gap: 6px;

  color: rgba(255, 255, 255, .95);
  mix-blend-mode: difference;

  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}

.menu-line {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}

.menu-line.line1 {
  margin-left: 4px;
}

.menu-line.line2 {
  margin-left: -4px;
}

body.menu-open .menu-line {
  margin-left: 0;
}

body.menu-open .menu-line.line1 {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-line.line2 {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-toggle:focus-visible,
.logo-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .75), 0 0 0 6px rgba(179, 161, 255, .35);
  border-radius: 10px;
}

@media (max-width: 560px) {
  .logo-img {
    height: 80px;
  }
  .nav.nav-simple {
    padding: 14px 0;
  }
  .menu-toggle {
    padding: 8px;
  }
}

.top-strip {
  height: 140px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 120px 22px 40px;

  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(16px);

  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

html.menu-open {
  overflow: hidden;
}

.menu-links {
  display: grid;
  gap: 18px;
  text-align: center;
}

.menu-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .95);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.6px;
  transition: transform .15s ease, color .15s ease;
}

.menu-links a:hover {
  transform: translateY(-1px);
  color: var(--lime);
}

.menu-links a.active {
  color: var(--purple);
}

/* =============================
   Footer (Mobile Icons)
   ============================= */

.footer-social-icons {
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer .footer-social-icons .social-link {
  width: 46px;
  height: 46px;
}

@media (max-width: 740px) {
  .page .container {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-footer .footer-links {
    display: none;
  }

  .site-footer .footer-social-icons {
    display: flex;
  }
}

/* =============================
   Header (Hide/Reveal)
   ============================= */

header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;

  transition: transform .28s ease, opacity .28s ease;
  will-change: transform, opacity;

  background: transparent !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
}

header.header-hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
