/* ============================================================
   MITRA ACCESS — V3 (rebuilt from Figma "Mitra][Site" / V3)
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:        #011228;
  --blue:      #03346e;
  --neon:      #cfff33;
  --cream:     #faffeb;
  --peri:      #99b2dd;   /* periwinkle blue */
  --peri-2:    #8ea7d0;
  --body-dim:  rgba(250, 255, 235, 0.8);
  --white-dim: rgba(255, 255, 255, 0.7);

  --font-head: 'Rubik', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1112px;
}

/* ── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.01px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select { font: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient text helper */
.grad-text {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* ── Nav (floating pill) ────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px 0;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  height: 68px;
  padding: 8px 64px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 14px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.002px;
  color: var(--cream);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--neon); }

.nav-logo img {
  width: 43px;
  height: 42px;
}

/* Mobile nav */
.nav-toggle { display: none; }

/* ── Language switcher ──────────────────────────────────── */
.lang-switch {
  position: relative;
  pointer-events: auto;
  align-self: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--cream);
  transition: border-color 0.2s ease;
}

.lang-btn:hover { border-color: var(--neon); }

.lang-btn .caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.lang-switch.open .lang-btn .caret {
  transform: rotate(-135deg) translateY(2px);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  display: none;
  flex-direction: column;
  padding: 6px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.lang-switch.open .lang-dropdown { display: flex; }

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--cream);
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-dropdown button:hover { background: rgba(153, 178, 221, 0.12); }
.lang-dropdown button.active { color: var(--neon); font-weight: 600; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-neon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 5px 15px;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: inset 0 0 10px 5px var(--neon);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  line-height: 31px;
  letter-spacing: -0.15px;
  color: var(--bg);
  white-space: nowrap;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.btn-neon:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn-neon.btn-lg {
  height: 58px;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  box-shadow: inset 0 0 7.9px 3px var(--neon);
}

.btn-neon img { width: 24px; height: 24px; }

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg);
  border: 2px solid var(--blue);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: #fff;
  transition: border-color 0.2s ease;
}

.btn-dark:hover { border-color: var(--neon); }
.btn-dark img { width: 24px; height: 24px; }

/* ── Inline email form (hero / planos) ──────────────────── */
.email-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 433px;
  max-width: 100%;
  height: 49px;
  padding: 4px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 8px;
}

.email-form input {
  flex: 1;
  min-width: 0;
  padding: 0 12px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--body-dim);
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: -0.002px;
}

.email-form input::placeholder { color: var(--body-dim); }

/* ── Sections base ──────────────────────────────────────── */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3.24px;
  background-image: linear-gradient(191.6deg, #99b2dd 33.8%, #ffffff 72.2%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-head h2 .accent { color: var(--neon); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  height: 27px;
  border: 1px solid var(--peri);
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.33px;
  color: var(--peri);
  white-space: nowrap;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 941px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-art-left,
.hero-art-right {
  position: absolute;
  top: 0;
  pointer-events: none;
  user-select: none;
}

.hero-art-left {
  left: -3px;
  width: 466px;
  height: 941px;
}

.hero-art-right {
  right: 0;
  width: 814px;
  height: 941px;
  top: -42px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 190px 24px 120px 200px;
  max-width: 942px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--bg);
  border: 1px solid var(--neon);
  border-radius: 50px;
  font-size: 16px;
  line-height: 26px;
  color: var(--neon);
  white-space: nowrap;
}

.hero h1 {
  max-width: 634px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 82px;
  line-height: 90px;
  letter-spacing: -4.15px;
  background-image: linear-gradient(-77.3deg, #faffeb 59.6%, #03346e 112.6%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 544px;
  font-size: 20px;
  line-height: 1.5;
  color: var(--body-dim);
}

/* ── Gêmeo Digital section ──────────────────────────────── */
.gemeo {
  background: linear-gradient(180deg, var(--blue) 0%, var(--bg) 100%);
  padding: 95px 0 130px;
}

.gemeo .section-head { max-width: 886px; margin: 0 auto; }

.gemeo .section-head p {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 31px;
  letter-spacing: -0.79px;
  color: #fff;
}

.video-card {
  position: relative;
  width: 1103px;
  max-width: 100%;
  aspect-ratio: 1103 / 619;
  margin: 58px auto 0;
  border: 4px solid var(--neon);
  border-radius: 24px;
  overflow: hidden;
  filter: drop-shadow(0 0 20px rgba(207, 255, 51, 0.5));
  background: var(--bg);
}

.video-card-bg {
  position: absolute;
  inset: -7px -13px;
  width: calc(100% + 26px);
  height: calc(100% + 14px);
  object-fit: cover;
  filter: blur(6px);
}

.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 18, 40, 0.49);
}

.video-card.playing::after,
.video-card.playing .video-card-bg,
.video-card.playing .btn-dark { display: none; }

.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .btn-dark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 57px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 50px;
  max-width: var(--container);
  margin: 58px auto 0;
  padding: 0 24px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 0;
  width: 323px;
}

.feature img { width: 28px; height: 28px; }

.feature h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.62px;
  color: var(--cream);
}

.feature p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.16px;
  color: var(--cream);
}

/* ── Bento grid ─────────────────────────────────────────── */
.bento {
  background: var(--bg);
  padding: 18px 0 80px;
}

.bento-rows {
  display: flex;
  flex-direction: column;
  gap: 42px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.bento-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.bento-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.bento-card.small {
  width: 346px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid var(--blue);
}

.bento-card.large {
  flex: 1;
  background: linear-gradient(180deg, #000000 0%, var(--blue) 100%);
}

.bento-row-1 .bento-card { height: 458px; }
.bento-row-2 .bento-card,
.bento-row-3 .bento-card { height: 400px; }

.bento-art {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.bento-art img {
  position: absolute;
  max-width: none;
}

/* Each art frame reproduces the Figma clip box + bleed insets */
.art-causa { width: 266px; height: 208px; top: 33px; }
.art-causa img { left: -7.52%; top: -9.62%; width: 115.04%; height: 119.24%; }

.art-integ { width: 215px; height: 211px; top: 33px; }
.art-integ img { left: -7.44%; top: -7.58%; width: 114.88%; height: 115.16%; }

.art-whats { width: 226px; height: 187px; top: 44px; }
.art-whats img { left: -8.85%; top: -10.69%; width: 117.7%; height: 121.38%; }

.bento-shot {
  position: absolute;
  top: 43px;
  left: 53px;
  right: 54px;
  border-radius: 15px;
  opacity: 0.7;
}

.bento-card.large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 1, 6, 0) 29.3%, var(--blue) 78%);
}

.bento-text {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-text h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 31px;
  letter-spacing: -0.002px;
  color: var(--cream);
}

.bento-text p {
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.002px;
  color: var(--white-dim);
}

.bento-card.large .bento-text p { color: #fff; max-width: 566px; }

/* ── Showcase (Tecnologia construída…) ──────────────────── */
.showcase {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 47%, var(--peri) 62%, var(--peri) 100%);
  padding: 100px 0 0;
}

.showcase .section-head h2 {
  max-width: 776px;
  background-image: linear-gradient(90deg, var(--cream) 0%, var(--peri-2) 100%);
}

.showcase-panel {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1118px;
  margin: 40px auto 0;
  padding: 60px 40px 60px 60px;
  background: var(--bg);
  border: 1px solid #000;
  border-radius: 180px;
}

.showcase-visual {
  position: relative;
  width: 504px;
  max-width: 100%;
  aspect-ratio: 504 / 468;
  flex-shrink: 0;
}

.showcase-visual .devices {
  position: absolute;
  top: 0;
  left: 0;
  width: 92.06%;
  height: 100%;
}

.mockup-wrap {
  position: absolute;
  top: 6.9%;
  left: 2.2%;
  width: 97.7%;
  height: 86.1%;
  overflow: hidden;
}

.mockup-wrap img {
  position: absolute;
  left: -23.56%;
  top: -9.81%;
  width: 140.79%;
  height: 119.46%;
  max-width: none;
}

.showcase-text { max-width: 520px; }

.showcase-text h3 {
  max-width: 405px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 48px;
  line-height: 54px;
  letter-spacing: -1.92px;
  background-image: linear-gradient(164.1deg, #99b2dd 41.9%, #cfff33 88.3%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.showcase-text p {
  max-width: 448px;
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 28px;
  color: #98b1dc;
}

/* ── Light CTA ──────────────────────────────────────────── */
.cta-light {
  background: var(--peri);
  padding: 88px 24px 28px;
  display: flex;
  justify-content: center;
}

.cta-light-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.cta-light h2 {
  max-width: 654px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3.24px;
  background-image: linear-gradient(180deg, var(--blue) 0%, var(--bg) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.cta-light p {
  max-width: 432px;
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.16px;
  color: #010d3e;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 0 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1113px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo { width: 162px; height: 38.4px; }

.footer-socials {
  display: flex;
  gap: 27px;
}

.footer-socials img { width: 24px; height: 24px; }
.footer-socials a { transition: opacity 0.2s ease; }
.footer-socials a:hover { opacity: 0.7; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  opacity: 0.8;
  font-family: var(--font-head);
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-credits a { text-decoration: underline; }

/* ── Contact page ───────────────────────────────────────── */
.page-contact {
  background: linear-gradient(180deg, var(--bg) 36.3%, var(--blue) 67.2%);
}

.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 762px;
  padding: 151px 24px 60px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 418px;
  flex-shrink: 0;
}

.contact-intro h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3.24px;
  background-image: linear-gradient(90deg, var(--cream) 0%, var(--peri-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.contact-intro p {
  max-width: 346px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 31px;
  letter-spacing: -0.79px;
  color: var(--peri);
}

.contact-panel {
  position: relative;
  width: 664px;
  max-width: 100%;
  padding: 31px 30px;
  border: 1px solid rgba(153, 178, 221, 0.5);
  border-radius: 10px;
  background-image: url('../assets/images/form-panel-bg.svg');
  background-size: cover;
  background-position: center;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.field-row {
  display: flex;
  gap: 18px;
  width: 100%;
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  height: 49px;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 8px;
}

.field.full { width: 100%; }
.field.grow { flex: 1; }

.field.field-invalid {
  border-color: #fa5252;
  transition: border-color 0.15s ease;
}

.field input,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--body-dim);
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: -0.002px;
  appearance: none;
}

.field input::placeholder { color: var(--body-dim); }

.field select option { color: #111; }

.field.select {
  background-image: url('../assets/icons/caret-select.svg');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 24px;
}

/* ── Planos page ────────────────────────────────────────── */
.page-planos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg) 55%, var(--blue) 100%);
}

.h2-blue {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3.24px;
  background-image: linear-gradient(180deg, #7b9ccf 0%, #47679e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.planos-hero {
  display: flex;
  justify-content: center;
  padding: 154px 24px 40px;
}

.planos-panel {
  position: relative;
  width: 1100px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 60px 40px 70px;
  text-align: center;
  border: 1px solid rgba(153, 178, 221, 0.25);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, #05244d 0%, rgba(1, 18, 40, 0) 70%);
  overflow: hidden;
}

.planos-icon { width: 88px; }

.planos-panel h1 {
  max-width: 720px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 46px;
  line-height: 54px;
  letter-spacing: -1.9px;
  color: #fff;
}

.plan-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 90px;
  justify-content: center;
}

.perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 330px;
}

.perk-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--neon);
}

.perk-label img { width: 20px; height: 20px; }

.perk p {
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 27px;
  color: rgba(250, 255, 235, 0.72);
}

/* Pricing */
.pricing {
  padding: 90px 24px 40px;
  text-align: center;
}

.pricing .section-head { max-width: 760px; margin: 0 auto; }

.pricing-sub {
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 31px;
  letter-spacing: -0.5px;
  color: #fff;
}

.tag-pill.neon {
  border-color: var(--neon);
  color: var(--neon);
}

.plans {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 34px;
  margin-top: 70px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  width: 306px;
  padding: 32px 26px 26px;
  text-align: left;
  border: 1px solid rgba(153, 178, 221, 0.35);
  border-radius: 14px;
}

.plan-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin-bottom: 22px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(153, 178, 221, 0.25);
  flex: 1;
}

.plan-feat {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}

.plan-feat::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 400;
  color: #fff;
}

.plan-feat .note {
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.plan-group-label {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(153, 178, 221, 0.25);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 4px;
  color: #7f9cc9;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 30px;
  border-radius: 10px;
  border: 1px solid var(--neon);
  background: rgba(1, 18, 40, 0.6);
  box-shadow: 0 0 14px rgba(207, 255, 51, 0.35), inset 0 0 8px rgba(207, 255, 51, 0.15);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: box-shadow 0.2s ease;
}

.plan-cta:hover { box-shadow: 0 0 22px rgba(207, 255, 51, 0.55), inset 0 0 8px rgba(207, 255, 51, 0.25); }

.plan-card.elite {
  position: relative;
  background: #010509;
  border: none;
  box-shadow: 0 0 90px rgba(153, 178, 221, 0.3);
  overflow: hidden;
}

.plan-card.elite::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 48%;
  background:
    linear-gradient(180deg, rgba(1, 5, 9, 1) 0%, rgba(3, 52, 110, 0.5) 100%),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(153, 178, 221, 0.14) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(153, 178, 221, 0.14) 59px 60px);
  pointer-events: none;
}

.plan-card.elite > * { position: relative; }

.plan-card.elite .plan-cta {
  background: var(--neon);
  color: var(--bg);
  box-shadow: none;
}

.plan-card.elite .plan-cta:hover { filter: brightness(1.08); box-shadow: none; }

/* Comparison */
.compare {
  padding: 80px 24px 130px;
  text-align: center;
}

.compare-sub {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  margin-top: 18px;
}

.compare-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 64px;
}

.compare-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 360px;
  padding: 44px 34px;
  border-radius: 14px;
  text-align: center;
}

.compare-card.bad { border: 1px solid rgba(153, 178, 221, 0.35); }
.compare-card.good { background: #010b16; }

.compare-card > img { width: 56px; }

.compare-pill {
  display: inline-flex;
  padding: 3px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.compare-card.bad .compare-pill {
  border: 1px solid #fa5252;
  color: #fa5252;
}

.compare-card.good .compare-pill {
  border: 1px solid var(--neon);
  color: var(--neon);
}

.compare-card p {
  font-family: var(--font-head);
  font-size: 17px;
  line-height: 26px;
  color: #fff;
}

/* ── Quem Somos page ────────────────────────────────────── */
.quem-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 170px 24px 40px;
}

.quem-photo {
  width: 550px;
  max-width: 100%;
  border-radius: 20px;
}

.quem-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 520px;
}

.quem-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px 5px 6px;
  border: 1px solid var(--neon);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--neon);
}

.quem-badge .chip {
  padding: 1px 11px;
  border-radius: 50px;
  background: var(--neon);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
}

.quem-text h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -2.7px;
  background-image: linear-gradient(120deg, var(--cream) 30%, var(--peri-2) 90%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.quem-text > p {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}

.mission {
  position: relative;
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 1113px;
  margin: 34px auto 0;
  padding: 42px 60px;
  border-radius: 20px;
  background: rgba(153, 178, 221, 0.07);
  overflow: hidden;
}

.mission::after {
  content: '';
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: -40px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(207, 255, 51, 0.45) 0%, transparent 70%);
  filter: blur(12px);
}

.mission img { width: 40px; flex-shrink: 0; }

.mission p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #fff;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1148px;
  margin: 70px auto 100px;
  padding: 0 24px;
}

.about-row {
  display: flex;
  gap: 24px;
}

.about-card {
  border-radius: 10px;
  min-height: 246px;
}

.about-card.title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 346px;
  flex-shrink: 0;
  padding: 30px;
  border: 1px solid rgba(3, 52, 110, 0.9);
}

.about-card.title h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  letter-spacing: -1.8px;
  background-image: linear-gradient(180deg, #7e9aca 10%, #2c528b 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-card.text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 56px;
  background: var(--peri);
}

.about-card.text p {
  font-family: var(--font-head);
  font-size: 20px;
  line-height: 31px;
  color: var(--bg);
}

.about-card.text.right p { text-align: right; }

/* ── Privacy modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.6);
}

.modal-overlay.open { display: flex; }

.modal {
  width: 720px;
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 2px solid var(--blue);
  border-radius: 14px;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-header h2 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--cream);
}

.modal-close {
  font-size: 28px;
  line-height: 1;
  color: var(--cream);
}

.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  color: var(--body-dim);
  font-size: 15px;
  line-height: 1.6;
}

.modal-body h3 {
  margin: 18px 0 6px;
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--cream);
}

.modal-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0;
}

.modal-updated {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1160px) {
  .hero-content { padding-left: 24px; }
  .hero-art-right { opacity: 0.4; }

  .bento-row { flex-direction: column; }
  .bento-card.small { width: 100%; }
  .bento-row .bento-card { height: 400px; }

  .showcase-panel {
    flex-direction: column;
    border-radius: 40px;
    padding: 40px 32px;
  }

  .contact-hero { flex-direction: column; }
  .contact-intro { width: 100%; max-width: 664px; }
}

@media (max-width: 760px) {
  .nav-pill { gap: 24px; padding: 8px 20px; }
  .nav-group { gap: 16px; }
  .nav-link { font-size: 14px; }
  .lang-btn { height: 38px; padding: 0 12px; font-size: 13px; }

  .hero h1 { font-size: 52px; line-height: 58px; letter-spacing: -2.6px; }
  .hero-art-right { display: none; }
  .hero-content { padding-top: 150px; }

  .section-head h2,
  .cta-light h2,
  .contact-intro h1,
  .page-stub h1 { font-size: 38px; line-height: 44px; letter-spacing: -1.8px; }

  .gemeo .section-head p { font-size: 18px; line-height: 26px; }

  .showcase-visual { width: 100%; }
  .showcase-text h3 { font-size: 34px; line-height: 40px; }

  .field-row { flex-direction: column; }
  .field.grow { width: 100%; }

  .h2-blue { font-size: 38px; line-height: 44px; letter-spacing: -1.8px; }
  .planos-panel h1 { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
  .quem-text h1 { font-size: 38px; line-height: 44px; letter-spacing: -1.4px; }
  .about-row { flex-direction: column; }
  .about-card.title { width: 100%; }
  .about-row.reverse { flex-direction: column-reverse; }
  .about-card.text { padding: 32px 28px; }
  .about-card.text.right p { text-align: left; }
  .mission { flex-direction: column; gap: 20px; padding: 32px 28px; text-align: center; }

  .footer-top,
  .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .site-nav { padding: 14px 12px 0; }

  .nav-pill {
    flex-wrap: wrap;
    height: auto;
    row-gap: 8px;
    column-gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
  }

  .nav-group { gap: 10px; }
  .nav-link { font-size: 12px; }
  .nav-logo img { width: 30px; height: 29px; }
  .lang-btn { height: 32px; padding: 0 10px; font-size: 12px; }

  .hero-content { padding-top: 130px; }
  .planos-hero { padding-top: 130px; }
  .quem-hero { padding-top: 150px; }
  .contact-hero { padding-top: 130px; }
}
