:root {
  --ink: #171511;
  --muted: #6f695f;
  --paper: #f7f2e9;
  --paper-soft: #fffaf1;
  --line: rgba(37, 31, 22, 0.14);
  --soil: #4b3726;
  --leaf: #243e2f;
  --gold: #b58a42;
  --gold-dark: #8e672d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(35, 27, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(75, 55, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 55, 38, 0.02) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(23, 21, 17, 0.015) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(255, 250, 241, 0.72), rgba(247, 242, 233, 0.9));
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.96rem;
}

.brand small {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--soil);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

.hero {
  display: grid;
  gap: 34px;
  padding: clamp(46px, 8vw, 96px) clamp(20px, 5vw, 72px) 42px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 2.72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.93;
}

.hero-subtitle {
  max-width: 620px;
  color: var(--soil);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.04rem;
}

.hero-actions,
.final-cta,
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.signal-row span {
  border: 1px solid rgba(75, 55, 38, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.62);
  color: var(--leaf);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 11px;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(181, 138, 66, 0.27);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.46);
  color: var(--leaf);
}

.button-dark {
  background: var(--leaf);
  color: var(--white);
}

.hero-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(20, 16, 10, 0.48));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

.hero-photo span,
.hero-photo strong {
  display: block;
}

.hero-photo span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-photo strong {
  max-width: 300px;
  font-size: 1.45rem;
  line-height: 1;
}

.floating-card,
.vertical-stamp {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(23, 21, 17, 0.42);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  backdrop-filter: blur(16px);
}

.floating-card {
  min-width: 132px;
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 18px 44px rgba(12, 10, 7, 0.24);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 2px;
  color: var(--white);
  font-size: 1.05rem;
}

.floating-card-top {
  top: 16px;
  right: 16px;
}

.floating-card-bottom {
  right: 16px;
  bottom: 118px;
}

.vertical-stamp {
  top: 18px;
  bottom: 18px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.identity-band {
  display: grid;
  gap: 28px;
  padding: 54px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--leaf);
  color: var(--white);
}

.identity-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.identity-band .section-kicker {
  color: var(--gold);
}

.identity-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.identity-grid p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.065);
}

.identity-grid strong,
.identity-grid span {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.identity-grid strong {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 62px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

h2 {
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

h2 span {
  color: var(--gold-dark);
}

.benefits-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.benefits-grid article,
.product-card,
.testimonial-grid article,
.faq details,
.reserve-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.78);
}

.benefits-grid article {
  padding: 22px;
}

.benefits-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.12;
}

.benefits-grid p,
.product-card p,
.testimonial-grid p,
.faq p,
.investment p,
.reserve-box span,
.final-cta p,
.footer {
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.products {
  background: var(--paper-soft);
}

.product-card {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.product-card .button {
  margin-top: auto;
}

.product-card.featured {
  background: var(--soil);
  color: var(--white);
  box-shadow: var(--shadow);
}

.product-card.featured p,
.product-card.featured .product-type {
  color: rgba(255, 255, 255, 0.78);
}

.support-menu {
  display: grid;
  width: 100%;
  gap: 10px;
  margin: 8px 0 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.support-intro,
.support-note {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.support-option {
  display: grid;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.support-option strong,
.support-option span,
.support-option small {
  display: block;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.support-option strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.92rem;
}

.support-option span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-card.featured .support-option p {
  margin: 0;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
}

.product-card.featured .support-option small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.support-note {
  font-style: italic;
}

.product-card h3 span {
  display: block;
  color: var(--gold);
}

.price {
  color: var(--leaf);
  font-size: 1.7rem;
  font-weight: 900;
}

.testimonials {
  background: linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.testimonial-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
}

.testimonial-grid h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.story-label {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-text {
  font-size: 0.95rem;
  line-height: 1.62;
}

.story-result {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--leaf);
  font-size: 0.88rem;
  font-weight: 900;
}

.investment {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 58px clamp(20px, 5vw, 72px);
  background: var(--leaf);
  color: var(--white);
}

.investment .section-kicker,
.investment h2 span,
.investment p {
  color: rgba(255, 255, 255, 0.78);
}

.investment h2 {
  margin-bottom: 12px;
}

.investment h2 span {
  display: block;
  margin-top: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.3;
}

.reserve-box {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.reserve-box strong,
.reserve-box span {
  display: block;
}

.reserve-box strong {
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
}

.final-cta {
  flex-direction: column;
  justify-content: center;
  padding: 62px 20px 76px;
  background: var(--soil);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 10px;
}

.final-cta p {
  margin-bottom: 4px;
  color: var(--gold);
  font-weight: 900;
}

.footer {
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--paper-soft);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--leaf);
  font-weight: 900;
}

.instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #1f8f55;
  color: var(--white);
  box-shadow: 0 16px 32px rgba(20, 80, 45, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .brand small {
    white-space: normal;
  }

  .button {
    width: 100%;
  }

  .products {
    padding-top: 48px;
  }

  .product-card {
    padding: 22px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 360px;
  }

  .hero-photo figcaption {
    left: 62px;
    right: 78px;
  }

  .floating-card {
    min-width: 116px;
    padding: 10px 12px;
  }

  .floating-card-bottom {
    bottom: 112px;
  }

  .floating-card strong {
    font-size: 0.94rem;
  }
}

@media (min-width: 521px) {
  .support-option {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .support-option p {
    text-align: right;
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-photo strong {
    font-size: 1.9rem;
  }

  .investment h2 span {
    font-size: 1.14rem;
  }

  .benefits-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .identity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  h1 {
    font-size: 5.35rem;
  }

  h2 {
    font-size: 3.85rem;
  }

  .hero-photo strong {
    font-size: 2.15rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
    align-items: center;
    min-height: calc(100vh - 68px);
  }

  .investment {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .floating-card-top {
    animation: float-soft 6s ease-in-out infinite;
  }

  .floating-card-bottom {
    animation: float-soft 7s ease-in-out infinite reverse;
  }

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

    50% {
      transform: translateY(-7px);
    }
  }
}
