/* Nexo Atual Pro — Home clean */

:root {
  --hc-max: 1080px;
  --hc-accent: #137987;
  --hc-accent-dark: #0f6672;
  --hc-text: #172033;
  --hc-muted: #667085;
  --hc-line: rgba(15, 23, 42, 0.08);
  --hc-card: #ffffff;
  --hc-soft: #f4f8f9;
  --hc-radius: 20px;
}

.hc-shell {
  background:
    radial-gradient(circle 680px at 12% 8%, rgba(19, 121, 135, 0.07), transparent 68%),
    radial-gradient(circle 620px at 90% 4%, rgba(255, 91, 20, 0.05), transparent 70%),
    #f7f8fa;
  color: var(--hc-text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hc-container {
  width: min(var(--hc-max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.hc-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--hc-line);
  backdrop-filter: blur(14px);
}

.hc-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}

.hc-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.hc-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
}

.hc-logo__text {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--hc-text);
  white-space: nowrap;
}

.hc-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 4px 8px;
  flex-wrap: wrap;
}

.hc-nav a {
  font-size: 14px;
  font-weight: 650;
  color: var(--hc-muted);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.hc-nav a:hover {
  color: var(--hc-accent);
  background: rgba(19, 121, 135, 0.08);
}

.hc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--hc-text);
  text-decoration: none;
  padding: 8px 10px;
}

.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hc-btn:hover {
  transform: translateY(-1px);
}

.hc-btn--primary {
  background: var(--hc-accent);
  color: #fff;
}

.hc-btn--primary:hover {
  background: var(--hc-accent-dark);
  color: #fff;
}

.hc-btn--ghost {
  background: #fff;
  color: var(--hc-text);
  border-color: var(--hc-line);
}

.hc-btn--ghost:hover {
  color: var(--hc-accent);
  border-color: rgba(19, 121, 135, 0.28);
}

.hc-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--hc-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.hc-menu-btn:hover { color: var(--hc-accent); background: transparent; }

/* Drawer */
.hc-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.hc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  transform: translateX(104%);
  transition: transform 0.22s ease;
  z-index: 100;
  padding: 20px;
  box-shadow: -20px 0 50px rgba(15, 23, 42, 0.12);
}

.hc-drawer.is-open,
.hc-drawer-overlay.is-open {
  pointer-events: auto;
}

.hc-drawer.is-open {
  transform: translateX(0);
}

.hc-drawer-overlay.is-open {
  opacity: 1;
}

.hc-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.hc-drawer__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: var(--hc-soft);
  font-size: 22px;
  cursor: pointer;
}

.hc-drawer nav {
  display: grid;
  gap: 6px;
}

.hc-drawer nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--hc-text);
  font-weight: 650;
}

.hc-drawer nav a:hover {
  background: var(--hc-soft);
  color: var(--hc-accent);
}

/* Hero */
.hc-hero {
  padding: 72px 0 56px;
}

.hc-hero__inner {
  max-width: 720px;
}

.hc-hero h1 {
  font-size: clamp(34px, 5.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--hc-text);
}

.hc-hero__lead {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.55;
  color: var(--hc-muted);
  max-width: 560px;
  margin: 0 0 28px;
}

.hc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sections */
.hc-section {
  padding: 28px 0 64px;
}

.hc-section__head {
  max-width: 560px;
  margin-bottom: 28px;
}

.hc-section__head h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 10px;
  font-weight: 800;
}

.hc-section__head p {
  margin: 0;
  color: var(--hc-muted);
  font-size: 16px;
  line-height: 1.5;
}

.hc-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hc-accent);
  margin-bottom: 10px;
}

/* Benefits */
.hc-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hc-benefit {
  background: var(--hc-card);
  border: 1px solid var(--hc-line);
  border-radius: var(--hc-radius);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.hc-benefit h3 {
  font-size: 16px;
  font-weight: 780;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.hc-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--hc-muted);
}

/* How it works */
.hc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hc-step {
  padding: 22px 20px;
  border-radius: var(--hc-radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hc-line);
}

.hc-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(19, 121, 135, 0.1);
  color: var(--hc-accent);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hc-step h3 {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 750;
}

.hc-step p {
  margin: 0;
  font-size: 14px;
  color: var(--hc-muted);
  line-height: 1.45;
}

/* Em breve */
.hc-soon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hc-soon__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(19, 121, 135, 0.22);
}

.hc-soon__item strong {
  font-size: 14px;
  font-weight: 720;
}

.hc-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hc-accent);
  background: rgba(19, 121, 135, 0.09);
  padding: 5px 10px;
  border-radius: 999px;
}

/* Plans teaser */
.hc-plans {
  background: #fff;
  border: 1px solid var(--hc-line);
  border-radius: 28px;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
}

.hc-plans h2 {
  font-size: clamp(24px, 3.2vw, 30px);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  font-weight: 800;
}

.hc-plans p {
  margin: 0 0 18px;
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.5;
}

.hc-price-row {
  display: grid;
  gap: 10px;
}

.hc-price-row a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--hc-soft);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.hc-price-row a:hover {
  border-color: rgba(19, 121, 135, 0.25);
}

.hc-price-row strong {
  font-size: 14px;
  font-weight: 750;
}

.hc-price-row span {
  font-size: 14px;
  font-weight: 750;
  color: var(--hc-accent);
}

/* FAQ */
.hc-faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.hc-faq details {
  background: #fff;
  border: 1px solid var(--hc-line);
  border-radius: 16px;
  padding: 4px 18px;
}

.hc-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 720;
  font-size: 15px;
}

.hc-faq summary::-webkit-details-marker {
  display: none;
}

.hc-faq details p {
  margin: 0 0 16px;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Footer */
.hc-footer {
  border-top: 1px solid var(--hc-line);
  background: #fff;
  padding: 40px 0 28px;
  margin-top: 20px;
}

.hc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.hc-footer__brand p {
  margin: 12px 0 0;
  color: var(--hc-muted);
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
}

.hc-footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  color: var(--hc-muted);
}

.hc-footer__links {
  display: grid;
  gap: 8px;
}

.hc-footer__links a {
  color: var(--hc-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.hc-footer__links a:hover {
  color: var(--hc-accent);
}

.hc-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--hc-line);
  color: var(--hc-muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hc-nav,
  .hc-actions .hc-btn {
    display: none;
  }

  .hc-actions {
    margin-left: auto;
    gap: 6px;
  }

  .hc-actions .hc-link {
    display: inline-flex;
    align-items: center;
  }

  .hc-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hc-benefits,
  .hc-steps,
  .hc-soon {
    grid-template-columns: 1fr 1fr;
  }

  .hc-plans {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .hc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hc-container {
    width: min(var(--hc-max), calc(100% - 28px));
  }

  .hc-hero {
    padding: 40px 0 36px;
  }

  .hc-hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .hc-hero__actions {
    display: grid;
    width: 100%;
  }

  .hc-hero__actions .hc-btn {
    width: 100%;
  }

  .hc-benefits,
  .hc-steps,
  .hc-soon,
  .hc-footer__grid {
    grid-template-columns: 1fr;
  }

  .hc-section {
    padding: 16px 0 48px;
  }
}
