* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(217,255,47,0.10), transparent 20%),
    radial-gradient(circle at bottom left, rgba(217,255,47,0.06), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, #04101f 100%);
  position: relative;
}


body.page-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 18%, rgba(217,255,47,0.14), transparent 26%),
    radial-gradient(circle at 80% 75%, rgba(88,216,255,0.16), transparent 24%),
    linear-gradient(180deg, rgba(3,10,23,0.94), rgba(4,16,31,0.98));
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 88%);
  opacity: 0.28;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__glow {
  position: absolute;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.32;
}

.site-loader__glow--one {
  left: -6vw;
  top: -7vw;
  background: rgba(217,255,47,0.30);
}

.site-loader__glow--two {
  right: -10vw;
  bottom: -10vw;
  background: rgba(27, 97, 255, 0.26);
}

.site-loader__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px 32px 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.35);
  text-align: center;
}

.site-loader__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217,255,47,0.26);
  background: rgba(217,255,47,0.09);
  color: #f2ff9d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-loader__media {
  position: relative;
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.site-loader__ring,
.site-loader__ring::before,
.site-loader__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.site-loader__ring {
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.site-loader__ring::before {
  inset: -10px;
  border: 1px solid rgba(217,255,47,0.18);
  animation: loaderPulse 2s ease-in-out infinite;
}

.site-loader__ring::after {
  inset: 14px;
  border: 1px solid rgba(88,216,255,0.16);
  animation: loaderPulse 2s ease-in-out infinite 0.4s;
}

.site-loader__video {
  width: 76%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 46px rgba(0,0,0,0.34);
  background: rgba(3,10,23,0.8);
}

.site-loader__fallback-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 62%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.34));
  pointer-events: none;
  display: none;
}

.site-loader__media.is-fallback .site-loader__video {
  display: none;
}

.site-loader__media.is-fallback .site-loader__fallback-logo {
  display: block;
}

.site-loader__copy strong {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.site-loader__copy p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 18px;
}

.site-loader__progress {
  text-align: left;
}

.site-loader__progress-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-loader__progress-head strong {
  color: var(--text);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.site-loader__bar {
  position: relative;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
}

.site-loader__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9ff2f, #8aff52, #58d8ff);
  box-shadow: 0 0 20px rgba(217,255,47,0.38);
  transition: width 0.18s ease;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.14;
  z-index: 0;
}

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

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 92px 0;
  position: relative;
  z-index: 1;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  backdrop-filter: blur(14px);
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,255,47,0.35);
  box-shadow: var(--shadow-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: 0.25s ease;
  cursor: pointer;
  border: 0;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: var(--accent);
  color: #09111d;
  box-shadow: 0 14px 28px rgba(217, 255, 47, 0.20);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 255, 47, 0.10);
  color: #f0ff97;
  border: 1px solid rgba(217, 255, 47, 0.24);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(217,255,47,0.10);
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.02;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}


/* --- BANDA SUPERIOR --- */
.banda-verde {
  background: var(--announcement-bg, #25d366);
  color: var(--announcement-text, #04101f);
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 105;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.14);
}

.banda-verde-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: max-content;
  white-space: nowrap;
  padding: 11px 0;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scrollBanda 26s linear infinite;
  will-change: transform;
}

.banda-verde-track span {
  flex: 0 0 auto;
}

.banda-verde .dot {
  opacity: 0.42;
}

@keyframes scrollBanda {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .banda-verde-track {
    animation: none;
    padding-inline: 16px;
    white-space: normal;
    justify-content: center;
    flex-wrap: wrap;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 23, 43, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

main {
  padding-top: 28px;
}

.nav {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 1rem;
}

.brand-text {
  display: block;
  max-width: 220px;
  font-size: 0.82rem;
  line-height: 1.1;
  transform: translateY(-4px);
}

.brand-logo {
  height: 92px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}

.brand--text-only {
  align-items: center;
  gap: 0;
}

.brand--text-only .brand-text {
  max-width: none;
  font-size: 0.78rem;
  line-height: 1;
  transform: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand--with-logo{
  align-items:center;
  gap:10px;
}

.brand-logo--nav{
  height:46px;
  max-width:112px;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.26));
}

.brand--with-logo .brand-text{
  max-width:150px;
  font-size:.66rem;
  line-height:1.05;
  transform:none;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.progress-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 200;
  background: transparent;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #d9ff2f, #7bff4b, #58d8ff);
  box-shadow: 0 0 18px rgba(217,255,47,0.45);
  transition: width 0.1s linear;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  animation: floatOrb 14s ease-in-out infinite alternate;
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: #b8ff1e;
  top: 6%;
  right: -60px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #244bff;
  bottom: 10%;
  left: -70px;
  animation-delay: 2s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: #7f2bff;
  top: 40%;
  left: 45%;
  animation-delay: 4s;
}

@keyframes floatOrb {
  from { transform: translateY(0) translateX(0) scale(1); }
  to { transform: translateY(-20px) translateX(18px) scale(1.08); }
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  min-height: 62px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--success);
  color: white;
  box-shadow: 0 14px 32px rgba(37,211,102,0.36);
  transition: 0.25s ease;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.wa-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex: 0 0 auto;
}

.wa-float__text {
  display: grid;
  gap: 2px;
  text-align: right;
  font-size: 0.7rem;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.wa-float__text span {
  display: block;
}

@media (max-width: 640px) {
  .wa-float {
    right: 12px;
    bottom: 12px;
    padding: 8px 10px 8px 12px;
    gap: 10px;
  }

  .wa-float__text {
    font-size: 0.62rem;
    max-width: 122px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.86);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 300;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.mobile-cta {
  display: none;
}

footer {
  padding: 30px 0 44px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.site-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.site-footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .site-footer-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 56px;
    gap: 10px;
    padding: 8px 0;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    bottom: 12px;
    z-index: 110;
    width: min(92%, 520px);
    margin: 0 auto 18px;
  }

  .mobile-cta a {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  main {
    padding-top: 68px;
  }

  .section {
    padding: 70px 0;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 56px;
  }

  .brand-logo {
    height: 76px;
  }

  .brand-text {
    font-size: 0.76rem;
    max-width: 180px;
  }

  .brand--text-only .brand-text {
    font-size: 0.68rem;
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo--nav{
    height:40px;
    max-width:92px;
  }

  .brand--with-logo .brand-text{
    display:none;
  }

  .nav-links {
    gap: 10px;
    justify-content: center;
    padding-bottom: 2px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 50px;
    gap: 6px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    height: 64px;
  }

  .brand-text {
    font-size: 0.7rem;
    max-width: 140px;
    transform: translateY(-2px);
  }

  .brand--text-only .brand-text {
    font-size: 0.62rem;
    max-width: 86px;
    transform: none;
    white-space: nowrap;
  }

  .brand-logo--nav{
    height:36px;
    max-width:82px;
  }

  .nav-links {
    gap: 8px;
    justify-content: center;
    padding-inline: 0;
  }

  .nav-links a {
    font-size: 0.67rem;
  }
}


@media (max-width: 640px) {
  .site-loader {
    padding: 18px;
  }

  .site-loader__inner {
    padding: 26px 20px 22px;
    border-radius: 24px;
  }

  .site-loader__media {
    width: min(100%, 210px);
  }

  .site-loader__copy p {
    font-size: 0.92rem;
  }

  .site-loader__progress-head strong {
    font-size: 1.1rem;
  }
}
