:root {
  --bg: #050505;
  --bg-elevated: #111111;
  --bg-card: #0c0c0c;
  --text: #ffffff;
  --text-muted: #b3b3b3;
  --accent: #7cff00;
  --accent-hover: #6ae000;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 14px;
  --container: 1140px;
  --header-h: 78px;
  --font: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--text-muted); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.text-accent { color: var(--accent); }

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 { margin-bottom: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #041000;
}
.btn--primary:hover { background: var(--accent-hover); }
.btn--outline {
  border-color: rgba(124, 255, 0, 0.55);
  background: transparent;
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--accent);
  background: rgba(124, 255, 0, 0.08);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--sm { padding: 0.7rem 1.1rem; font-size: 0.7rem; }
.btn--block { width: 100%; }
.btn__arrow { font-size: 1.05em; }
.icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo__mark { filter: drop-shadow(0 0 8px rgba(124, 255, 0, 0.35)); }

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo__text small {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  flex: 1;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--accent); }

.header__cta { margin-left: auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(88vh - var(--header-h));
}

.hero__lead {
  max-width: 34rem;
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 420px;
}

.hero__glow {
  position: absolute;
  width: min(78%, 360px);
  top: 8%;
  right: 8%;
  opacity: 0.9;
  filter: drop-shadow(0 0 28px rgba(124, 255, 0, 0.45));
  animation: glowPulse 3.5s ease-in-out infinite;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px 8px 0 0;
}

.hero__photo--placeholder,
.about__photo--placeholder,
.atlas__placeholder {
  background:
    linear-gradient(145deg, rgba(124, 255, 0, 0.08), transparent 45%),
    linear-gradient(180deg, #171717, #0a0a0a);
  border: 1px dashed rgba(124, 255, 0, 0.35);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__photo--placeholder {
  aspect-ratio: 3 / 4;
  width: min(100%, 380px);
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* Features */
.features {
  padding: 1.5rem 0 3.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #080808, #050505);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature {
  text-align: center;
  padding: 1rem 0.5rem;
}

.feature__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(124, 255, 0, 0.35));
}

.feature__icon svg { width: 100%; height: 100%; }

.feature h3 {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.feature p {
  margin: 0;
  font-size: 0.85rem;
}

/* About */
.about {
  padding: 5rem 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about__visual {
  position: relative;
  z-index: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.about__glow {
  position: absolute;
  z-index: 0;
  width: 70%;
  left: 0;
  top: 6%;
  opacity: 0.65;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(124, 255, 0, 0.35));
}

.about__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__content {
  position: relative;
  z-index: 2;
}

.about__photo--placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.about__content p { max-width: 36rem; }

.about__content .btn { margin-top: 0.5rem; }

/* Plans */
.plans {
  padding: 2rem 0 5rem;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.plan:hover {
  border-color: rgba(124, 255, 0, 0.35);
  transform: translateY(-4px);
}

.plan--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124, 255, 0, 0.25), 0 0 40px rgba(124, 255, 0, 0.12);
  padding-top: 2.5rem;
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #041000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.plan__icon svg { width: 100%; height: 100%; }

.plan p {
  flex: 1;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Atlas */
.atlas {
  padding: 1rem 0 5rem;
}

.atlas__stack {
  display: grid;
  gap: 1.5rem;
}

.atlas__card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #151515, #0b0b0b);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}

.atlas__visual img,
.atlas__placeholder {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  border-radius: 10px;
}

.atlas__placeholder {
  aspect-ratio: 3 / 4;
  gap: 0.75rem;
}

.atlas__placeholder strong {
  color: var(--accent);
  font-size: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 55% 2px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 2px 55% no-repeat,
    rgba(124, 255, 0, 0.15);
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

/* CTA */
.cta {
  padding: 0 0 4rem;
}

.cta__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}

.cta__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(124, 255, 0, 0.4));
}

.cta__icon svg { width: 100%; height: 100%; }

.cta__text { flex: 1; }
.cta__text h2 { margin-bottom: 0.35rem; font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
.cta__text p { margin: 0; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: 0.65rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(124, 255, 0, 0.35);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: rgba(124, 255, 0, 0.12);
  transform: translateY(-2px);
}

.footer__social svg { width: 16px; height: 16px; }

/* Página Consultoria */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse at top right, rgba(124, 255, 0, 0.08), transparent 45%),
    linear-gradient(180deg, #0c0c0c, var(--bg));
}

.page-hero__inner { max-width: 760px; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero__lead {
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.how {
  padding: 4.5rem 0;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.how__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
}

.how__num {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.how__item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.how__item p {
  margin: 0;
  font-size: 0.88rem;
}

.plans-detail {
  padding: 2rem 0 4.5rem;
}

.plans-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan-detail {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.plan-detail--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124, 255, 0, 0.25), 0 0 40px rgba(124, 255, 0, 0.12);
}

.plan-detail__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(124, 255, 0, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
}

.plan-detail__resumo {
  font-size: 0.9rem;
  margin: 0;
}

.plan-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.35rem 0 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.plan-detail__currency {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.plan-detail__price strong {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.plan-detail__period {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-detail__block h4 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.plan-detail__block .check-list,
.plan-detail__block .dash-list {
  margin-bottom: 0.25rem;
}

.plan-detail__block--muted h4,
.plan-detail__block--muted li {
  color: var(--text-muted);
}

.dash-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.dash-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

.dash-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.plan-detail .btn {
  margin-top: auto;
}

.compare {
  padding: 1rem 0 4.5rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.compare-table th {
  background: #0a0a0a;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
  font-weight: 700;
  color: var(--accent);
}

.faq {
  padding: 1rem 0 4rem;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.35rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  padding: 0.9rem 0;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq__item[open] summary::after { content: "–"; }

.faq__item p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

/* Página Contato */
.page-hero--contato {
  text-align: center;
}

.page-hero--contato .page-hero__inner {
  margin-inline: auto;
}

.page-hero--contato .page-hero__lead {
  margin-inline: auto;
}

.contato {
  padding: 1rem 0 4rem;
}

.contato__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.contato__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contato__card:hover {
  border-color: rgba(124, 255, 0, 0.4);
  transform: translateY(-3px);
}

.contato__card--off {
  opacity: 0.65;
}

.contato__icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  filter: drop-shadow(0 0 10px rgba(124, 255, 0, 0.35));
}

.contato__icon svg {
  width: 100%;
  height: 100%;
}

.contato__card h2 {
  font-size: 1.15rem;
  margin: 0;
}

.contato__card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
}

.contato__card .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
  width: auto;
  max-width: 100%;
}

.contato__soon {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.contato__extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contato__box {
  background: linear-gradient(135deg, #151515, #0b0b0b);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contato__box h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.contato__box p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.contato__hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.contato__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.contato__hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contato__hours span { color: var(--text-muted); }
.contato__hours strong { color: var(--accent); font-weight: 700; }

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .header__cta { display: none; }

  .nav-toggle { display: flex; }

  .nav.is-open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .nav.is-open a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }

  .hero__grid,
  .about__grid,
  .atlas__card {
    grid-template-columns: 1fr;
  }

  .hero__grid { min-height: auto; gap: 2.5rem; }
  .hero__visual { order: -1; min-height: 320px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .plans-detail__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .contato__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .contato__extra { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; text-align: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .logo--footer { justify-content: center; }
}

@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr; }
  .hero__actions,
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn,
  .page-hero__actions .btn,
  .cta__inner > .btn {
    width: 100%;
  }
}
