/* ─────────────────── Reset / Base ─────────────────── */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: var(--asc-font-sans);
  color: var(--asc-fg);
  background: var(--asc-bg-elev);
  overflow-x: hidden;
}
.hidden{
  display: none !important;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
}

/* ─────────────────── Buttons ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: var(--asc-fw-bold);
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0;
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--asc-purple-600);
  color: #fff;
  box-shadow: 0 14px 28px -10px
    color-mix(in srgb, var(--asc-purple-600) 55%, transparent);
}
.btn-primary:hover {
  background: var(--asc-purple-600);
  filter: brightness(1.15);
  box-shadow: 0 18px 36px -10px color-mix(in srgb, var(--asc-purple-600) 70%, transparent);
  color: #fff;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn svg {
  transition: transform 0.2s ease;
}
.btn-light {
  background: #fff;
  color: var(--asc-purple-700);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.45);
}
.btn-light:hover {
  filter: brightness(1.05);
  box-shadow: 0 22px 44px -16px rgba(0, 0, 0, 0.55);
}
.btn-light:hover svg {
  transform: translateX(3px);
}
.btn-ghost {
  background: transparent;
  color: var(--asc-fg);
  border: 1px solid var(--asc-border-strong);
}
.btn-ghost:hover {
  background: var(--asc-bg-subtle);
}
.btn-ghost-dark {
  background: rgba(0, 0, 0, 0.35);
  color: #fff !important;
  border: none;
  backdrop-filter: blur(6px);
}
.btn-ghost-dark:hover {
  background: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  filter: brightness(1.15);
}
.btn-ghost-dark:hover svg {
  transform: translateX(3px);
}
.btn-sm {
  height: 42px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 10px;
}

/* ─────────────────── Eyebrow / Headings ─────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: var(--asc-fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  color: var(--asc-fg-brand);
}
.eyebrow::before {
  content: none;
}
.eyebrow.on-dark {
  color: var(--asc-lilac-400);
}

.h-display {
  font-size: clamp(40px, 5.8vw, 86px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: var(--asc-fw-black);
  color: var(--asc-fg-strong);
  margin: 24px 0 0;
}
.h-display em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.h-section {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin: 18px 0 0;
}
.h-section em {
  font-style: normal;
  color: var(--asc-purple-600);
}
.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--asc-fg-muted);
  max-width: 640px;
  margin-top: 24px;
}
.lead strong {
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-medium);
}
section {
  position: relative;
}

/* ─────────────────── TOPBAR ─────────────────── */
.topbar {
  background: linear-gradient(90deg, #4A1A62 0%, #5C2178 50%, #7A37A4 100%);
  color: #fff;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 42px;
  padding: 7px 0;
  font-size: 13px;
}
.topbar-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
}
.topbar-text strong {
  font-weight: var(--asc-fw-bold);
  color: #fff;
}
.topbar-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: var(--asc-fw-bold);
  font-size: 12.5px;
  color: #fff !important;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.topbar-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.18s ease;
}
.topbar-cta:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
}
.topbar-cta:hover svg {
  transform: translateX(3px);
}
@media (max-width: 880px) {
  .topbar-inner {
    gap: 14px;
  }
  .topbar-text {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .topbar-text {
    padding: 5px 10px;
  }
  .topbar-cta{
    display: none;
  }
}

/* ─────────────────── LANG SWITCH ─────────────────── */
.lang-switch {
  position: relative;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--asc-border);
  background: #fff;
  color: var(--asc-fg);
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lang-trigger:hover {
  background: var(--asc-bg-subtle);
  border-color: var(--asc-border-strong);
}
.lang-caret {
  width: 13px;
  height: 13px;
  opacity: 0.6;
  transition: transform 0.18s ease;
}
.lang-switch.is-open .lang-caret {
  transform: rotate(180deg);
}
.flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  display: block;
  flex: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.lang-current-flag {
  display: inline-flex;
}
.lang-current-flag .flag {
  width: 20px;
  height: 14px;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--asc-divider);
  border-radius: 12px;
  box-shadow: 0 18px 36px -14px rgba(36, 12, 48, 0.28);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 100;
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-menu .lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border: none;
  background: transparent;
  border-radius: 8px;
  font-size: 14px;
  color: var(--asc-fg);
}
.lang-menu .lang-option:hover {
  background: var(--asc-bg-subtle);
}
.lang-menu .lang-option.is-active {
  color: var(--asc-purple-700);
  font-weight: var(--asc-fw-bold);
  background: var(--asc-purple-50);
}
/* Mobile lang options inside the slide-in menu */
.mobile-sub.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
}
.mobile-sub.lang-option.is-active {
  color: var(--asc-purple-700);
  font-weight: var(--asc-fw-bold);
}

/* ─────────────────── NAV ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo svg {
  width: 86px;
  height: auto;
}
.nav-logo .pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  color: var(--asc-purple-700);
  background: var(--asc-purple-50);
  border: 1px solid var(--asc-border-brand);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: var(--asc-fw-medium);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > a,
.nav-links .nav-item > a {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: var(--asc-fw-medium);
  color: var(--asc-fg);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}
.nav-links > a:hover,
.nav-links .nav-item > a:hover {
  background: var(--asc-bg-subtle);
  color: var(--asc-purple-700);
}
.nav-links .has-caret::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  opacity: 0.55;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-links .nav-item:hover .has-caret::after,
.nav-links .nav-item:focus-within .has-caret::after {
  transform: rotate(225deg);
  opacity: 1;
}

/* ─── Mega menu ─── */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-mega {
  display: block;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 560px;
  background: #fff;
  border: 1px solid var(--asc-divider);
  border-radius: 18px;
  box-shadow:
    0 30px 60px -20px rgba(36, 12, 48, 0.28),
    0 12px 24px -10px rgba(36, 12, 48, 0.14);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 100;
}
.nav-mega.nav-mega-wide {
  width: 780px;
}
.nav-mega::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-item:hover .nav-mega,
.nav-item:focus-within .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-mega-grid.grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.mega-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  color: inherit;
  transition: background 0.15s ease;
}
.mega-card:hover {
  background: var(--asc-bg-subtle);
}
.mega-card:hover .mega-ico {
  background: var(--asc-purple-600);
  color: #fff;
  border-color: var(--asc-purple-600);
}
.mega-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--asc-purple-50, #f4ecfb);
  color: var(--asc-purple-700);
  border: 1px solid var(--asc-purple-100, #efe3fb);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.mega-ico svg {
  width: 18px;
  height: 18px;
}
.mega-card b {
  display: block;
  font-size: 14px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-fg-strong);
  margin-bottom: 2px;
}
.mega-card em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: var(--asc-fg-muted);
  line-height: 1.45;
}
.mega-foot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 10px 12px 4px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: var(--asc-fw-bold);
  color: var(--asc-purple-700);
  transition:
    gap 0.15s ease,
    color 0.15s ease;
}
.mega-foot:hover {
  color: var(--asc-purple-600);
  gap: 10px;
}
.mega-foot svg {
  width: 14px;
  height: 14px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--asc-border);
  border-radius: 12px;
  background: #fff;
  color: var(--asc-purple-700);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: none;
}
.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(18, 8, 28, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #fff;
  color: var(--asc-fg);
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -24px 0 60px -30px rgba(20, 5, 40, 0.45);
  transform: translateX(100%);
  transition: transform 0.22s ease;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateX(0);
}
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--asc-fg-strong);
  font-weight: var(--asc-fw-bold);
  font-size: 18px;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--asc-bg-subtle);
  color: var(--asc-purple-700);
  display: grid;
  place-items: center;
}
.mobile-menu-close svg {
  width: 20px;
  height: 20px;
}
.mobile-menu-links {
  overflow-y: auto;
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
}
.mobile-menu-links a,
.mobile-menu-trigger {
  display: block;
  width: 100%;
  padding: 12px 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--asc-fg-strong);
  font: inherit;
  font-size: 15px;
  font-weight: var(--asc-fw-bold);
  text-align: left;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus,
.mobile-menu-trigger:hover,
.mobile-menu-trigger:focus {
  background: var(--asc-bg-subtle);
}
.mobile-menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobile-menu-trigger svg {
  width: 18px;
  height: 18px;
  flex: none;
  transition: transform 0.18s ease;
}
.mobile-menu-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-menu-sublist {
  display: grid;
  gap: 2px;
  padding: 2px 0 8px;
}
.mobile-menu-sublist[hidden] {
  display: none;
}
.mobile-menu-links .mobile-sub {
  padding-left: 24px;
  color: var(--asc-fg-muted);
  font-size: 14px;
  font-weight: var(--asc-fw-medium);
}
.mobile-menu-cta {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}
.body-menu-open {
  overflow: hidden;
}
.nav-cta .signin {
  font-size: 14px;
  font-weight: var(--asc-fw-medium);
  color: var(--asc-fg-muted);
  padding: 8px 12px;
}
.nav-cta .signin:hover {
  color: var(--asc-fg);
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-menu-toggle {
    display: inline-flex;
  }
  .nav-cta .signin {
    display: none;
  }
}
@media (max-width: 560px) {
  .nav-inner {
    height: 72px;
    gap: 14px;
  }
  .nav-logo svg {
    width: 72px;
  }
}

/* ─────────────────── Footer ─────────────────── */
footer {
  background: #0b0810;
  color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 24px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 540px) {
  .f-grid {
    grid-template-columns: 1fr;
  }
}
.f-brand .logo svg {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}
.f-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  max-width: 320px;
}
.f-brand .addr {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.f-brand .addr b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--asc-fw-medium);
  display: block;
  margin-bottom: 4px;
}
.f-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: var(--asc-tracking-allcaps);
  color: rgba(255, 255, 255, 0.85);
  font-weight: var(--asc-fw-bold);
  margin: 0 0 18px;
}
.f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.f-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s ease;
}
.f-col ul a:hover {
  color: #fff;
}
/* Selos / parcerias */
.f-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0;
}
.f-badge-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.f-badge-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
.f-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.f-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.f-badge img {
  display: block;
  height: 72px;
  width: auto;
}
.f-badge--meta {
  padding: 8px 14px;
  border-radius: 12px;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
}
.f-badge--meta img {
  display: block;
  height: 45px;
  width: auto;
}
.f-badge-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 640px) {
  .f-badges {
    gap: 24px;
  }
  .f-badge-divider {
    display: none;
  }
}

.f-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}
.f-bottom .socials {
  display: flex;
  gap: 10px;
}
.f-bottom .socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.f-bottom .socials a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.f-bottom .socials svg {
  width: 16px;
  height: 16px;
}
