* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pd-green-dark: #163d2b;
  --pd-green: #1f4a35;
  --pd-green-mid: #2f6b4a;
  --pd-green-light: #6bb98d;
  --pd-mint: #e3f4ea;
  --text-dark: #1c231f;
  --text-muted: #5b6660;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  background: #fbfdfc;
  color: var(--text-dark);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 60px 20px 56px;
  background-image: url('../img/prodentim-product.png');
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 18, 0.35) 0%, rgba(10, 26, 18, 0.72) 65%, rgba(9, 22, 16, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  text-align: center;
  color: #fff;
}

.kicker {
  color: var(--pd-green-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-notice {
  font-size: 1rem;
  line-height: 1.65;
  color: #e7f1ea;
  margin-bottom: 26px;
}

.cta-link {
  display: inline-block;
  background: #ffffff;
  color: var(--pd-green-dark);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
}

.ad-tag {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 20px;
}

.notice-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  padding: 40px 24px;
}
.notice-text a {
  color: var(--pd-green-mid);
  font-weight: 700;
}

@media (max-width: 520px) {
  .hero { padding: 40px 18px 70px; }
}

@media (max-height: 700px) {
  .hero-notice { margin-bottom: 18px; }
  .hero-content h1 { margin-bottom: 12px; }
}
