:root {
  --green: #073d2b;
  --green-2: #0d573d;
  --gold: #f2a900;
  --cream: #fff7e6;
  --paper: #fffdf7;
  --ink: #17352b;
  --muted: #65756f;
  --shadow: 0 24px 70px rgba(7, 61, 43, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(242,169,0,.20), transparent 34%),
    radial-gradient(circle at 8% 72%, rgba(13,87,61,.12), transparent 30%),
    linear-gradient(135deg, #fffdf7 0%, #fff4d9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .20;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7,61,43,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,61,43,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.nav {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(7,61,43,.16);
}

.nav-whatsapp {
  padding: 13px 19px;
  color: white;
  background: var(--green);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: .2s ease;
}

.nav-whatsapp:hover { transform: translateY(-2px); background: var(--green-2); }

.hero-content {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0 90px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
}

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  color: var(--green);
  letter-spacing: -.04em;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-copy > p {
  max-width: 650px;
  margin: 26px 0 0;
  color: #53655e;
  font-size: 1.12rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 16px 30px rgba(7,61,43,.20);
}
.btn-primary:hover { background: var(--green-2); }
.btn-secondary {
  background: white;
  border: 1px solid rgba(7,61,43,.14);
}
.btn-secondary:hover { box-shadow: 0 14px 30px rgba(7,61,43,.10); }

.quick-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--green);
  font-size: .92rem;
  font-weight: 700;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art .glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242,169,0,.22);
  filter: blur(45px);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  filter: drop-shadow(0 26px 28px rgba(7,61,43,.16));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.social-section { padding: 100px 0; }
.section-heading { text-align: center; max-width: 740px; margin: 0 auto 44px; }
.section-heading h2 {
  margin-top: 14px;
  color: var(--green);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.social-card {
  min-height: 118px;
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  background: white;
  border: 1px solid rgba(7,61,43,.10);
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7,61,43,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(242,169,0,.55);
}
.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  font-size: 1.55rem;
  font-weight: 800;
}
.social-card strong { display: block; font-size: 1.06rem; }
.social-card small { color: var(--muted); }
.arrow { font-size: 1.6rem; color: var(--gold); }

.cta-section { padding: 0 0 100px; }
.cta-card {
  padding: 34px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--green), #0a4d36);
  box-shadow: var(--shadow);
}
.cta-card img { width: 110px; border-radius: 50%; }
.cta-card h2 { margin-top: 7px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-card p { margin: 10px 0 0; color: rgba(255,255,255,.75); }
.cta-card .eyebrow { color: #ffd574; }
.cta-card .btn-primary { color: var(--green); background: var(--gold); box-shadow: none; }

footer {
  padding: 34px 0;
  color: rgba(255,255,255,.76);
  background: #032b1f;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-content p { margin: 0; }
.footer-content strong { color: white; }
.footer-content span { font-size: .9rem; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  z-index: 10;
  border-radius: 50%;
  color: white;
  background: #1fbf62;
  text-decoration: none;
  font-size: 1.6rem;
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 30px;
  }
  .hero-copy > p { margin-inline: auto; }
  .actions, .quick-points { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { width: min(88%, 520px); }
  .social-grid { grid-template-columns: 1fr; }
  .cta-card {
    grid-template-columns: 90px 1fr;
  }
  .cta-card img { width: 90px; }
  .cta-card .btn { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1160px); }
  .nav { height: 92px; }
  .brand img { width: 68px; height: 68px; }
  .nav-whatsapp { padding: 11px 14px; font-size: .86rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-copy > p { font-size: 1rem; }
  .actions .btn { width: 100%; }
  .quick-points { flex-direction: column; gap: 10px; }
  .social-section { padding: 76px 0; }
  .social-card { padding: 18px; grid-template-columns: 46px 1fr auto; }
  .social-icon { width: 46px; height: 46px; }
  .cta-section { padding-bottom: 76px; }
  .cta-card {
    padding: 26px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-card img { margin: auto; }
  .footer-content { flex-direction: column; text-align: center; }
}
