:root {
  --ink: #201b18;
  --muted: #6f655f;
  --paper: #fffaf5;
  --soft: #f5ece4;
  --sand: #ead8c9;
  --coral: #e95f50;
  --wine: #8e2637;
  --green: #2f6d56;
  --lime: #d9e873;
  --line: rgba(32, 27, 24, 0.13);
  --shadow: 0 24px 60px rgba(77, 52, 40, 0.14);
  --font: "Montserrat", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(217, 232, 115, 0.22), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #f7eee7 48%, #fffaf5 100%);
  font-family: var(--font);
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(20rem, 1.08fr);
  align-items: center;
  min-height: 92vh;
  gap: clamp(2rem, 6vw, 5.5rem);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 1.25rem;
}

.hero__media {
  min-height: 39rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 245, 0.12), rgba(32, 27, 24, 0.08)),
    url("assets/maria-marinho.jpg") center / cover,
    linear-gradient(135deg, #f2dbcc 0%, #f9efe6 42%, #dbe58a 100%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 250, 245, 0.74);
  border-radius: 1rem;
}

.photo-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 36px rgba(32, 27, 24, 0.13);
}

.photo-card span,
.eyebrow,
.coupon-card p {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.photo-card strong {
  color: var(--wine);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
}

.hero__content {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--wine);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  font-weight: 900;
  line-height: 0.9;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.96;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.12rem;
  font-weight: 800;
}

.hero__lead {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.hero__proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.link-list a:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--ink);
  color: #fffaf5;
  box-shadow: 0 16px 34px rgba(32, 27, 24, 0.2);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
}

.coupon-band,
.now,
.links-section,
.about {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 1.25rem;
}

.coupon-card {
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) minmax(16rem, 1.15fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: 20rem;
  border: 1px solid rgba(255, 250, 245, 0.72);
  border-radius: 1.4rem;
  padding: clamp(1.6rem, 5vw, 4rem);
  color: #fffaf5;
  background:
    linear-gradient(135deg, rgba(142, 38, 55, 0.94), rgba(233, 95, 80, 0.86)),
    linear-gradient(45deg, rgba(217, 232, 115, 0.38), transparent 60%);
  box-shadow: var(--shadow);
}

.coupon-card p,
.coupon-card span {
  margin: 0;
}

.coupon-card h2 {
  margin: 0;
  color: var(--lime);
  font-size: clamp(5rem, 15vw, 11rem);
  font-weight: 900;
  line-height: 0.86;
}

.coupon-card strong {
  display: block;
  max-width: 11ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.98;
}

.coupon-card span {
  display: block;
  max-width: 30rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-grid article {
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.64);
}

.feature-grid span {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-grid p,
.about p,
.whatsapp-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.link-list a {
  display: flex;
  min-height: 7rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.66);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-list a:hover {
  border-color: rgba(47, 109, 86, 0.32);
  background: #fff;
}

.link-list span {
  font-weight: 800;
}

.link-list strong {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.whatsapp-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  background: var(--soft);
}

.whatsapp-panel div {
  max-width: 42rem;
}

.whatsapp-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about {
  max-width: 880px;
}

.about p {
  font-size: 1.05rem;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.5rem;
  border-top: 1px solid var(--line);
  padding: 1.5rem 1rem 2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .hero__media {
    min-height: 29rem;
    order: -1;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 6.2rem);
  }

  .coupon-card,
  .feature-grid,
  .link-list {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: auto;
  }

  .whatsapp-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero,
  .coupon-band,
  .now,
  .links-section,
  .about {
    padding-inline: 1rem;
  }

  .hero__media {
    min-height: 24rem;
  }

  .photo-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions,
  .actions .button,
  .whatsapp-panel .button {
    width: 100%;
  }

  .link-list a {
    align-items: flex-start;
    flex-direction: column;
  }

  .link-list strong {
    text-align: left;
  }
}
