:root {
  --nh-ink: #14201b;
  --nh-forest: #1f4d3a;
  --nh-leaf: #c6f26d;
  --nh-sand: #f3efe6;
  --nh-mist: #e7efe8;
  --nh-card: #ffffff;
  --nh-muted: #5c6b63;
  --nh-line: rgba(20, 32, 27, 0.12);
  --nh-radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--nh-ink);
  background:
    radial-gradient(circle at top left, rgba(198, 242, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3ef 40%, #f7f4ee 100%);
}

/* Original header (.site-header + header.css) and hero (.hero-section + hero.css) take priority */

.hero-buttons .secondary-btn {
  cursor: pointer;
  border: 0;
}

.btn-primary, .pkg-card-cta, .btn-whatsapp, .btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--nh-leaf);
  color: var(--nh-ink);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--nh-card);
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(20,32,27,.06);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.chip-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.chip {
  flex: 0 0 auto;
  background: var(--nh-card);
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.2rem 0 0;
}

.section-label {
  color: var(--nh-forest);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-tabs button {
  border: 1px solid var(--nh-line);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.filter-tabs button.active {
  background: var(--nh-forest);
  color: #fff;
  border-color: var(--nh-forest);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.pkg-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pkg-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  overflow: hidden;
  background: #e2e8f0;
}

.pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-card-tag, .pkg-card-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
}

.pkg-card-discount {
  left: auto;
  right: 12px;
  background: #bbf7d0;
  color: #14532d;
}

.pkg-card-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pkg-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
}

.pkg-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.pkg-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--nh-muted);
  font-size: 0.82rem;
}

.pkg-card-price del {
  color: #9aa59e;
  margin-right: 0.35rem;
}

.pkg-card-cta {
  margin-top: auto;
  background: #2563eb;
  color: #fff;
}

.nh-footer {
  margin-top: 3rem;
  background: var(--nh-ink);
  color: #e8efe9;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.nh-footer a {
  display: block;
  color: #c9d6ce;
  text-decoration: none;
  margin: 0.35rem 0;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  color: #9fb0a6;
}

.sticky-cta[hidden] {
  display: none !important;
}
  position: fixed;
  left: 50%;
  bottom: calc(0.85rem + env(safe-area-inset-bottom));
  z-index: 90;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: min(420px, calc(100% - 1.25rem));
  padding: 0.45rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 32, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(20, 32, 27, 0.16);
}
.sticky-cta a,
.sticky-cta button {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 0.75rem;
  font-weight: 800;
  font-family: inherit;
  font-size: 0.82rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background: #eef5f0;
  color: #0f3d2c;
}
.sticky-cta a.wa {
  background: #25d366;
  color: #052e16;
}
.sticky-cta button {
  background: #1f6b4a;
  color: #fff;
}
@media (max-width: 640px) {
  .sticky-cta {
    left: 0.55rem;
    right: 0.55rem;
    width: auto;
    transform: none;
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .desktop-nav, .header-contact { display: none; }
}
