:root {
  --bg-gold: #f4e6a2;
  --bg-sage: #e7e7c8;
  --text: #2f2a1f;
  --muted: #5d5648;
  --line: #8a826e;
  --card: #f9f4dc;
  --accent: #996b1f;
  --accent-dark: #7a5216;
  --shadow: 0 14px 30px rgba(66, 54, 30, 0.12);
  --shadow-lg: 0 28px 56px rgba(66, 54, 30, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1120px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f0e9be;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.75rem);
  font-weight: 600;
}

p {
  margin: 0 0 0.9rem;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.panel {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.panel--gold {
  background: var(--bg-gold);
}

.panel--gold + .panel--sage,
.panel--sage + .panel--gold {
  border-top: 1px solid rgba(71, 62, 43, 0.1);
}

.panel--sage {
  background: var(--bg-sage);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Allura", cursive;
  font-size: clamp(1.6rem, 2.7vw, 2.1rem);
  color: var(--accent);
}

.kicker {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.7;
}

.lead--section {
  margin-bottom: 1.2rem;
}

.hero__content,
.split {
  display: grid;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 4rem);
}

.hero__content {
  grid-template-columns: 1.2fr 0.8fr;
}

.hero__brand {
  position: relative;
  justify-self: center;
}

.logo {
  width: min(360px, 72vw);
  filter: drop-shadow(0 12px 24px rgba(110, 78, 35, 0.22));
  transition: filter 0.3s var(--ease);
}

.logo:hover {
  filter: drop-shadow(0 16px 30px rgba(110, 78, 35, 0.28));
}

.hero__flower {
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  right: -8%;
  top: -14%;
  opacity: 0.7;
}

.icon-list,
.bullet-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.icon-list li,
.bullet-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 220, 0.45);
  border: 1px solid rgba(71, 62, 43, 0.1);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.icon-list li:hover,
.bullet-list li:hover {
  background: rgba(255, 249, 220, 0.85);
  transform: translateX(3px);
}

.icon-list img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  object-fit: contain;
  flex-shrink: 0;
}

.bullet-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.45rem;
}

.icon-list--stacked img {
  width: 28px;
  height: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1.5px solid rgba(71, 62, 43, 0.4);
  text-decoration: none;
  padding: 0.9rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.74rem;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease);
  background: rgba(255, 249, 224, 0.75);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.12);
}

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

.btn:focus-visible {
  outline: 2px solid #2f2a1f;
  outline-offset: 3px;
}

.btn--solid {
  background: linear-gradient(135deg, #a5762b 0%, #7f5318 100%);
  color: #fff9e8;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(127, 83, 24, 0.35);
}

.btn--solid:hover {
  box-shadow: 0 8px 24px rgba(127, 83, 24, 0.45);
  background: linear-gradient(135deg, #b4822f 0%, #8d5c1e 100%);
}

.btn--ghost {
  background: rgba(255, 249, 224, 0.5);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 249, 224, 0.9);
}

.btn--outline {
  background: rgba(255, 249, 224, 0.65);
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.btn--outline:hover {
  background: rgba(255, 249, 224, 0.95);
}

.split--image-left {
  grid-template-columns: 0.88fr 1.12fr;
}

.split--image-right {
  grid-template-columns: 1.05fr 0.95fr;
}

.split--center {
  grid-template-columns: 1fr 1fr;
}

.split--how {
  align-items: start;
}

.image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(72, 61, 40, 0.18);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.image-wrap:hover {
  transform: scale(1.012);
  box-shadow: 0 36px 70px rgba(66, 54, 30, 0.2);
}

.image-wrap img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.image-wrap:hover img {
  transform: scale(1.03);
}

.founder {
  margin-top: 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 220, 0.5);
  border-left: 3px solid var(--accent);
  font-size: 0.94rem;
  color: var(--muted);
  font-style: italic;
}

.brand-lockup {
  text-align: center;
}

.brand-lockup .logo {
  margin-inline: auto;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.vision-grid > div {
  background: rgba(255, 249, 220, 0.55);
  border: 1px solid rgba(71, 62, 43, 0.12);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.vision-grid > div:hover {
  background: rgba(255, 249, 220, 0.9);
  transform: translateY(-3px);
}

.vision-grid h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.vision-grid h3 img {
  width: 24px;
  height: 24px;
}

.how-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.how-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 220, 0.45);
  border: 1px solid rgba(71, 62, 43, 0.1);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.how-list li:hover {
  background: rgba(255, 249, 220, 0.9);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.how-list .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(153, 107, 31, 0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

.how-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.how-list strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 0.15rem;
}

.how-list span {
  font-size: 0.9rem;
  color: var(--muted);
}

.centered-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.photo-card {
  background: var(--card);
  border: 1px solid rgba(71, 61, 40, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
}

.photo-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.photo-card:hover img {
  transform: scale(1.06);
}

.photo-card h3,
.photo-card p {
  margin-inline: 1rem;
}

.photo-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.3rem;
}

.photo-card p {
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.woman-wrap {
  padding: 1.4rem;
  background: rgba(255, 251, 230, 0.65);
  border: 1px solid rgba(87, 73, 42, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}

.woman-wrap:hover {
  transform: translateY(-4px);
}

.woman-wrap img {
  width: min(380px, 100%);
  margin: 0 auto;
}

.compact li {
  margin-bottom: 0.35rem;
}

.footer {
  padding-bottom: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.footer__brand {
  text-align: right;
}

.footer h3 {
  margin-bottom: 0.9rem;
}

.investment-card {
  background: rgba(255, 251, 230, 0.85);
  border: 1px solid rgba(87, 73, 42, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.investment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px rgba(66, 54, 30, 0.2);
}

.investment-card .btn {
  margin-top: 0.55rem;
}

.investment-price {
  margin-top: 0.6rem;
  margin-bottom: 0.15rem;
  font-size: 1.08rem;
}

.investment-note {
  margin-bottom: 0.95rem;
  font-weight: 700;
}

.footer ul {
  margin: 0;
  padding-left: 1rem;
}

.footer__brand .logo {
  margin-left: auto;
  margin-right: 0;
}

/* ── Site Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 230, 162, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(71, 62, 43, 0.12);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.65rem;
}

.site-nav__logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(110, 78, 35, 0.18));
}

.site-nav__cta {
  font-size: 0.72rem;
  padding: 0.6rem 1.2rem;
}

/* ── Como funciona: intro + 2-col grid ── */
.how-intro {
  max-width: 64ch;
  margin-bottom: 2rem;
}

.how-list--cols {
  grid-template-columns: 1fr 1fr;
}

/* ── Site Footer ── */
.site-footer {
  background: var(--bg-sage);
  border-top: 1px solid rgba(71, 62, 43, 0.12);
  padding: 1.1rem 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.site-footer__inner p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer__flower {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Floating WhatsApp ── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--scale {
  transform: translateY(16px) scale(0.97);
}

.reveal.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero__content,
  .split,
  .split--image-left,
  .split--image-right,
  .split--center,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    text-align: center;
  }

  .footer__brand .logo {
    margin-inline: auto;
  }

  .hero__brand {
    order: -1;
  }

  .cta-group {
    flex-direction: column;
  }

  .hero__flower {
    right: 0;
    top: -8%;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .how-list--cols {
    grid-template-columns: 1fr;
  }

  .site-nav__cta {
    display: none;
  }

  .site-nav__logo {
    height: 38px;
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .site-footer__flower {
    display: none;
  }
}
