:root {
  --ink: #172221;
  --muted: #6d7771;
  --paper: #fffaf3;
  --cream: #f7eadc;
  --mist: #e8f3ed;
  --teal: #167b78;
  --green: #506f42;
  --copper: #bd6d2f;
  --rose: #b24749;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(42, 34, 25, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid rgba(80, 111, 66, 0.16);
  backdrop-filter: blur(16px);
}

.brand,
.main-nav,
.hero-actions,
.proof-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgba(23, 34, 33, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  gap: 22px;
  color: #33413d;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-lg);
  font-weight: 800;
}

.header-cta {
  padding: 0 20px;
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px clamp(18px, 5vw, 72px) 34px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 26, 24, 0.88), rgba(16, 26, 24, 0.56) 48%, rgba(16, 26, 24, 0.24)),
    linear-gradient(0deg, rgba(16, 26, 24, 0.74), rgba(16, 26, 24, 0.08) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f5c391;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  font-size: clamp(44px, 7.2vw, 88px);
}

h2 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hero-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.7vw, 21px);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  min-width: 180px;
  padding: 0 24px;
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(22, 123, 120, 0.32);
}

.button-primary:hover {
  background: #0f6463;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.proof-strip {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.proof-strip span {
  min-height: 52px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.proof-strip strong {
  display: block;
  color: var(--white);
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.intro {
  background: var(--paper);
}

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

.intro-grid article,
.aroma-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(80, 111, 66, 0.16);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(59, 48, 36, 0.08);
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 900;
}

.intro-grid p,
.aroma-grid p,
.showcase p,
.metrics p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--mist);
}

.showcase-copy p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.image-stack {
  position: relative;
  min-height: 680px;
}

.image-large,
.image-small {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-large {
  right: 0;
  width: min(520px, 78%);
  height: 680px;
}

.image-small {
  left: 0;
  bottom: 118px;
  width: min(310px, 48%);
  height: 520px;
}

.aromas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 109, 47, 0.14), transparent 28%),
    radial-gradient(circle at 82% 26%, rgba(22, 123, 120, 0.14), transparent 30%),
    #fffdf9;
}

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

.aroma-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.aroma-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(22, 123, 120, 0.08);
}

.aroma-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(22, 123, 120, 0.34);
  box-shadow: 0 26px 62px rgba(42, 34, 25, 0.14);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(23, 34, 33, 0.16);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.swatch {
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  border-radius: var(--radius-sm);
}

.aroma-grid article strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.content-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px solid rgba(80, 111, 66, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(59, 48, 36, 0.08);
}

.content-cta span {
  max-width: 720px;
  color: #33413d;
  font-weight: 800;
}

.swatch-green {
  background: var(--green);
}

.swatch-copper {
  background: var(--copper);
}

.swatch-rose {
  background: var(--rose);
}

.swatch-teal {
  background: var(--teal);
}

.production {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--cream);
}

.production img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.production-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.objection {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: #fffdf9;
}

.objection h2 {
  max-width: 780px;
}

.objection-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.objection-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.objection-list span {
  padding: 15px 16px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: #27433c;
  font-weight: 800;
}

.objection img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

.metrics {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.metrics h2 {
  color: var(--white);
}

.metrics p {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.metric-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metric-images img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  background: var(--white);
}

.comparativo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 88px clamp(18px, 5vw, 72px);
  background: #fffdf9;
}

.comparativo .card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.comparativo .vermelho {
  color: #fff8f4;
  background: linear-gradient(135deg, #6f2727, #3d1919);
}

.comparativo .azul {
  color: #f5fffb;
  background: linear-gradient(135deg, var(--teal), #123f3f);
}

.comparativo h2 {
  margin-bottom: 26px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.comparativo .item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 17px;
  font-weight: 700;
}

.comparativo .item span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.16);
  font-weight: 900;
}

.offer {
  position: relative;
  overflow: hidden;
  padding: 96px clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(189, 109, 47, 0.28), transparent 34%),
    radial-gradient(circle at top right, rgba(22, 123, 120, 0.34), transparent 32%),
    linear-gradient(135deg, #111816, #172221 48%, #0c1211);
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 24, 22, 0.9), rgba(17, 24, 22, 0.94)),
    url("img/IMG_2422.jpg") center/cover;
  opacity: 0.3;
}

.offer-heading,
.offer-card {
  position: relative;
  z-index: 1;
}

.offer-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.offer-heading .eyebrow {
  color: #f5c391;
}

.offer-heading h2 {
  margin: 0 auto;
  color: var(--white);
}

.offer-heading p {
  max-width: 660px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.offer-card {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  text-align: center;
  border: 1.5px solid rgba(245, 195, 145, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 243, 0.96);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.offer-logo {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(23, 34, 33, 0.18);
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-carousel {
  margin: 0 auto 24px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.review-card {
  flex: 0 0 240px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(22, 123, 120, 0.12);
  border-radius: var(--radius-sm);
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.review-stars {
  color: #ffb400;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.review-card p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 13px;
  font-style: italic;
  line-height: 1.4;
}

.review-card span {
  display: block;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-256px * 4)); /* largura card + gap */
  }
}

.offer-card h3 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card h3 span {
  color: var(--teal);
}

.offer-features {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  color: var(--ink);
  list-style: none;
  text-align: left;
}

.offer-features li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 15px;
  font-weight: 800;
}

.offer-features li::before {
  content: "✓";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--green));
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 900;
}

.launch-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.price-tier {
  position: relative;
  padding: 24px 18px;
  border: 1px solid rgba(22, 123, 120, 0.18);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(42, 34, 25, 0.08);
}

.price-tier.featured {
  border-color: rgba(189, 109, 47, 0.5);
  background:
    linear-gradient(135deg, rgba(245, 195, 145, 0.34), rgba(232, 243, 237, 0.72)),
    var(--white);
  transform: translateY(-6px);
}

.tier-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-tier.featured .tier-badge {
  background: linear-gradient(135deg, var(--copper), var(--teal));
}

.tier-label {
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-price {
  color: var(--teal);
  font-size: clamp(44px, 6vw, 62px);
  font-weight: 900;
  line-height: 0.95;
}

.price-tier.featured .tier-price {
  color: var(--copper);
}

.tier-price span {
  font-size: 0.46em;
}

.tier-saving {
  margin: 12px 0 0;
  color: #27433c;
  font-size: 13px;
  font-weight: 900;
}

.official-price {
  margin-top: 18px;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  color: #27433c;
  font-size: 15px;
  font-weight: 800;
}

.official-price strong {
  color: var(--ink);
  font-size: 18px;
}

.payment {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.offer-button {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--copper));
  box-shadow: 0 18px 42px rgba(22, 123, 120, 0.28);
}

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

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #101816;
}

.site-footer span {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 68vh;
  }

  .intro-grid,
  .aroma-grid,
  .showcase,
  .production,
  .objection,
  .metrics,
  .metric-images,
  .comparativo,
  .offer-list {
    grid-template-columns: 1fr;
  }

  .launch-pricing {
    grid-template-columns: 1fr;
  }

  .price-tier.featured {
    transform: none;
  }

  .content-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-stack {
    min-height: 560px;
  }

  .image-large {
    width: 82%;
    height: 560px;
  }

  .image-small {
    width: 44%;
    bottom: 100px;
    height: 390px;
  }

  .metric-images img {
    height: auto;
  }

  .production img {
    height: 520px;
  }

  .objection img {
    height: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding: 100px 16px 48px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-copy {
    font-size: 17px;
    margin-top: 12px;
  }

  .proof-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .proof-strip span {
    min-height: auto;
    padding: 12px;
    font-size: 14px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .button,
  .hero-actions a {
    width: 100%;
    min-height: 52px;
  }

  .section,
  .showcase,
  .production,
  .objection,
  .metrics,
  .comparativo,
  .offer {
    padding: 48px 16px;
  }

  h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  .image-stack {
    position: relative;
    display: block;
    min-height: 480px;
    margin-top: 32px;
  }

  .image-large {
    position: absolute;
    right: 0;
    bottom: -32px;
    width: 65%;
    height: auto;
    z-index: 2;
    border: 4px solid var(--paper);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-radius: var(--radius-md);
  }

  .image-small {
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    height: 400px;
    object-fit: cover;
    z-index: 1;
    border-radius: var(--radius-md);
  }

  .metric-images {
    gap: 16px;
  }

  .metric-images img {
    height: auto;
    max-height: 50vh;
    border-radius: var(--radius-md);
  }

  .production img,
  .objection img {
    height: auto;
    max-height: 45vh;
    border-radius: var(--radius-md);
  }

  .comparativo .card {
    padding: 24px 20px;
  }

  .comparativo h2 {
    font-size: 28px;
  }

  .comparativo .item {
    font-size: 15px;
    padding: 14px 0;
  }

  .launch-pricing {
    gap: 16px;
  }

  .price-tier {
    padding: 20px 16px;
  }

  .tier-price {
    font-size: 48px;
  }

  .offer-card {
    padding: 24px 16px;
  }

  .offer-features {
    gap: 8px;
  }

  .offer-features li {
    font-size: 14px;
    line-height: 1.2;
  }

  .offer-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 32px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
