.landing-page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 56px;
}

/* ================= NAVBAR ================= */

.landing-topbar {
  position: sticky;
  top: 14px;
  z-index: 1000;
  width: min(1240px, calc(100% - 32px));
  margin: 14px auto 0;
}

.landing-topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7, 14, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.landing-brand {
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.landing-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-nav a,
.footer-right a {
  text-decoration: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.landing-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}

.landing-nav a:hover,
.landing-nav a.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.landing-login-btn {
  text-decoration: none;
  color: #061019;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--accent-green), #9af6bf);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(124, 255, 168, 0.2);
  white-space: nowrap;
  transition: var(--transition);
}

.landing-login-btn:hover {
  transform: translateY(-2px);
}

/* ================= HERO ================= */

.hero-section {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  padding: 30px 0 26px;
  margin-bottom: 88px;
}

.hero-image-card,
.info-side-card,
.feature-card,
.highlight-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-image-card {
  border-radius: 34px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.hero-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(159, 122, 234, 0.14), transparent 26%),
    radial-gradient(circle at 80% 30%, rgba(124, 255, 168, 0.08), transparent 18%),
    radial-gradient(circle at 50% 90%, rgba(255, 119, 200, 0.08), transparent 20%);
  pointer-events: none;
}

.hero-real-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  background: #e8e8e8;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.03;
  margin: 1rem 0 1rem;
  max-width: 680px;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 660px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-green,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
}

.btn-green {
  color: #061019;
  background: linear-gradient(135deg, var(--accent-green), #9af6bf);
  box-shadow: 0 12px 26px rgba(124, 255, 168, 0.2);
}

.btn-outline {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-green:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

/* ================= DIVIDER ================= */

.organic-divider {
  position: relative;
  width: 100%;
  height: 34px;
  margin: 16px 0 52px;
}

.organic-divider span {
  position: absolute;
  inset: 0;
  display: block;
}

.organic-divider span::before,
.organic-divider span::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  border-radius: 999px;
}

.organic-divider span::before {
  top: 10px;
  height: 8px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(124, 255, 168, 0.14),
    rgba(159, 122, 234, 0.14),
    transparent
  );
  filter: blur(1px);
}

.organic-divider span::after {
  top: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.organic-divider.alt {
  margin-top: 26px;
  margin-bottom: 52px;
}

/* ================= SOBRE ================= */

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: start;
  padding: 6px 0;
  margin-bottom: 88px;
}

.info-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 1rem 0 1rem;
  line-height: 1.08;
}

.info-copy p {
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.info-side-card {
  border-radius: 26px;
  padding: 26px;
}

.info-side-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.info-side-card ul {
  color: var(--text-muted);
  padding-left: 18px;
}

.info-side-card li + li {
  margin-top: 10px;
}

/* ================= CARDS ================= */

.cards-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 8px;
  margin-bottom: 88px;
}

.feature-card {
  border-radius: 26px;
  padding: 22px;
  min-height: 100%;
}

.feature-thumb {
  height: 160px;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 20% 20%, rgba(159, 122, 234, 0.16), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(124, 255, 168, 0.08), transparent 18%);
}

.thumb-two {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 50% 50%, rgba(124, 255, 168, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(159, 122, 234, 0.1), transparent 60%);
}

.thumb-three {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 70% 40%, rgba(255, 119, 200, 0.14), transparent 20%),
    radial-gradient(circle at 30% 70%, rgba(124, 255, 168, 0.1), transparent 22%);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

/* ================= HIGHLIGHT ================= */

.highlight-section {
  padding-top: 4px;
  margin-bottom: 70px;
}

.highlight-box {
  border-radius: 30px;
  padding: 3rem 2.5rem;
  text-align: center;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.highlight-box h2 {
  margin: 1rem auto 1rem;
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.highlight-box p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* ================= FOOTER ================= */

.landing-footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer-brand {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.footer-left p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-right a {
  font-size: 0.92rem;
}

.footer-right a:hover {
  color: var(--text-main);
}

/* ================= RESPONSIVO ================= */

@media (max-width: 1080px) {
  .hero-section,
  .info-section,
  .cards-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    gap: 30px;
    padding-top: 18px;
    margin-bottom: 64px;
  }

  .info-section {
    margin-bottom: 64px;
  }

  .cards-section {
    margin-bottom: 64px;
  }

  .hero-visual {
    max-width: 420px;
  }

  .highlight-box {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .landing-topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    border-radius: 28px;
  }

  .landing-footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-nav {
    justify-content: center;
  }

  .landing-login-btn {
    text-align: center;
    width: 100%;
    max-width: 220px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-green,
  .btn-outline {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .highlight-box {
    padding: 2.2rem 1.4rem;
  }
}