:root {
  --brand: "Duarte's Bag";
  --checkout-url: "https://SEU-LINK-DE-CHECKOUT-AQUI.com";
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #14120f;
  --muted: #6f6860;
  --line: #e8dfd3;
  --beige: #efe2d0;
  --beige-soft: #f7efe5;
  --gold: #b68943;
  --gold-light: #d7b36e;
  --black: #090909;
  --red: #a20d18;
  --shadow: 0 18px 50px rgba(26, 20, 14, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(232, 223, 211, 0.8);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
}

.brand span {
  color: var(--gold);
}

.main-nav {
  display: none;
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: grid;
}

.main-nav a {
  padding: 13px 10px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  background: var(--black);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold-light);
}

.hero {
  display: grid;
  gap: 28px;
  padding: 34px 18px 54px;
  overflow: hidden;
}

.hero-copy {
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 12vw, 5.9rem);
}

h2 {
  font-size: clamp(2.2rem, 9vw, 4.2rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 4vw, 1.2rem);
}

.hero-actions,
.final-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--black);
  color: #fff;
  box-shadow: 0 14px 30px rgba(9, 9, 9, 0.18);
}

.btn-primary:hover {
  background: #211a12;
  box-shadow: 0 18px 34px rgba(9, 9, 9, 0.24);
}

.btn-offer {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 16px 34px rgba(215, 179, 110, 0.28);
}

.btn-offer:hover {
  background: #f0c777;
  box-shadow: 0 18px 38px rgba(215, 179, 110, 0.36);
}

.price-box .btn-offer,
.price-box a.btn-offer.btn-full {
  background: linear-gradient(135deg, #f2cf83, #b68943) !important;
  border: 1px solid #f6dfaa !important;
  color: #090909 !important;
  box-shadow: 0 16px 34px rgba(215, 179, 110, 0.38) !important;
}

.price-box .btn-offer:hover,
.price-box a.btn-offer.btn-full:hover {
  background: #f4d38a !important;
  color: #090909 !important;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--beige-soft);
}

.btn-secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.trust-strip span {
  padding: 10px 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.hero-media {
  align-self: stretch;
  min-height: 420px;
  background: linear-gradient(150deg, #f4ecdf, #ffffff 58%, #efe2d0);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 51% 30%;
}

.section-pad {
  padding: 58px 18px;
}

.section-heading {
  max-width: 860px;
}

.section-heading.centered {
  margin: 0 auto 30px;
  text-align: center;
}

.section-note {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
}

.wide-text {
  max-width: 920px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.desire {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-section {
  background: var(--beige-soft);
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.gallery-card,
.benefit-card,
.review-card,
.offer-card,
.faq details {
  background: var(--paper);
  border: 1px solid rgba(232, 223, 211, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(26, 20, 14, 0.07);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card div {
  padding: 16px;
}

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

.gallery-card strong {
  font-size: 1rem;
}

.gallery-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.benefit-grid,
.review-grid,
.security-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  min-height: 172px;
  padding: 22px;
}

.benefit-card p,
.review-card p,
.interior-copy p {
  margin: 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--black);
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1rem;
}

.interior {
  display: grid;
  gap: 26px;
  background: var(--black);
  color: #fff;
}

.interior-media {
  border-radius: var(--radius);
  overflow: hidden;
}

.interior-media img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.interior-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-light);
  font-weight: 800;
}

.review-card {
  padding: 22px;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

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

.review-card strong {
  margin-top: 18px;
}

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

.included {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.included-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.included-list div {
  padding: 18px;
  background: var(--beige-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer {
  background: linear-gradient(145deg, var(--beige-soft), #fff);
}

.offer-card {
  display: grid;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 6vw, 48px);
}

.offer-copy p {
  color: var(--muted);
}

.price-box {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 20px;
  background: #111;
  border: 1px solid rgba(215, 179, 110, 0.45);
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
}

.old-price {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  text-decoration: line-through;
}

.current-price {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 15vw, 5rem);
  line-height: 1;
}

.installments {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
}

.price-box small {
  color: rgba(255, 255, 255, 0.72);
}

.security-grid div {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
}

.security-grid strong,
.security-grid span {
  display: block;
}

.security-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.security-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

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

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}

.faq details {
  padding: 0 18px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
}

.final-cta {
  display: grid;
  background: var(--black);
  color: #fff;
}

.final-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.final-image img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: 50% 25%;
}

.final-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.68));
}

.final-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 22px;
  z-index: 1;
}

.final-overlay p {
  max-width: 360px;
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 9vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.final-copy {
  display: grid;
  padding: 34px 18px 42px;
  align-content: center;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 30px 18px 96px;
  color: var(--muted);
  text-align: center;
}

.site-footer strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 720px) {
  .main-nav {
    position: static;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 44vw);
    min-height: calc(100vh - 72px);
    padding: 48px clamp(28px, 5vw, 72px) 64px;
  }

  .hero-media,
  .hero-media img {
    min-height: 560px;
  }

  .trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 740px;
  }

  .section-pad {
    padding: 84px clamp(28px, 5vw, 72px);
  }

  .desire {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: end;
  }

  .product-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .gallery-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-card.wide {
    grid-column: span 2;
  }

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

  .interior {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
  }

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

  .included-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1fr 360px;
    align-items: center;
  }

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

  .final-cta {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: 680px;
  }

  .final-image,
  .final-image img {
    min-height: 680px;
  }

  .final-overlay {
    left: clamp(28px, 5vw, 72px);
    right: auto;
    bottom: 48px;
  }

  .final-copy {
    padding: 60px clamp(28px, 5vw, 72px);
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (min-width: 1120px) {
  .hero-media img {
    object-position: 50% 22%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
