:root {
  --ink: #24191d;
  --wine: #712f45;
  --wine-dark: #4f1f30;
  --rose: #c47b8f;
  --blush: #f3dde2;
  --ivory: #fffaf5;
  --paper: #fffdf9;
  --gold: #c39a5b;
  --muted: #705f65;
  --line: rgba(79, 31, 48, 0.14);
  --whatsapp: #138a4d;
  --whatsapp-dark: #0d6f3d;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(195, 154, 91, 0.45);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px 28px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 11px;
  text-decoration: none;
}

.brand-logo {
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(79, 31, 48, 0.15);
  display: block;
  flex: 0 0 auto;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-top: 2px;
  text-transform: uppercase;
}

.header-cta,
.secondary-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--wine-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  text-decoration: none;
}

.whatsapp-button {
  align-items: center;
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 12px 28px rgba(19, 138, 77, 0.23);
  color: white;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.whatsapp-button:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  box-shadow: 0 16px 34px rgba(13, 111, 61, 0.3);
  transform: translateY(-2px);
}

.header-cta.whatsapp-button {
  font-size: 16px;
  min-height: 52px;
  padding: 14px 24px;
}

.whatsapp-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  margin: 0 auto;
  max-width: 1180px;
  min-height: 680px;
  padding: 58px 28px 90px;
}

.eyebrow {
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1,
.section-heading h2,
.order-intro h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  font-size: clamp(48px, 6.5vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin-bottom: 26px;
  max-width: 750px;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 640px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.primary-button,
.submit-button {
  background: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 15px 24px;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.primary-button:hover,
.submit-button:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
}

.hero-whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  border-radius: 999px;
  font-size: 17px;
  min-height: 58px;
  padding: 16px 27px;
}

.hero-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
}

.hero-notice {
  background: #e6f5ec;
  border: 1px solid rgba(19, 138, 77, 0.2);
  border-radius: 12px;
  color: #0d6f3d;
  font-size: 13px;
  line-height: 1.5;
  margin: 22px 0 0;
  max-width: 520px;
  padding: 12px 15px;
}

.trust-list {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li::before {
  color: var(--gold);
  content: "✦";
  margin-right: 7px;
}

.letter-scene {
  align-items: center;
  background: linear-gradient(145deg, #f1d8de 0%, #f9ede8 100%);
  border-radius: 44px;
  display: flex;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  padding: 46px;
  position: relative;
}

.glow {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  filter: blur(2px);
  position: absolute;
}

.glow-one {
  height: 210px;
  right: -65px;
  top: -45px;
  width: 210px;
}

.glow-two {
  bottom: -80px;
  height: 250px;
  left: -70px;
  width: 250px;
}

.digital-letter {
  background: var(--paper);
  border: 1px solid rgba(113, 47, 69, 0.11);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(79, 31, 48, 0.22);
  max-width: 360px;
  padding: 42px 38px 58px;
  position: relative;
  text-align: center;
  transform: rotate(-2.3deg) translateY(-18px);
  z-index: 2;
}

.digital-letter::before {
  border: 1px solid rgba(195, 154, 91, 0.45);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
}

.letter-overline {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.letter-heart {
  color: var(--wine);
  display: block;
  font-size: 21px;
  margin: 14px 0;
}

.digital-letter h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.16;
}

.digital-letter p {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.7;
}

.letter-signature {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  margin-top: 22px;
}

.envelope {
  background: #b96d81;
  bottom: 20px;
  height: 155px;
  position: absolute;
  right: 8px;
  transform: rotate(8deg);
  width: 245px;
  z-index: 3;
}

.envelope::before,
.envelope::after {
  border-bottom: 78px solid #c98295;
  border-left: 122px solid transparent;
  border-right: 122px solid transparent;
  bottom: 0;
  content: "";
  position: absolute;
}

.envelope::after {
  border-bottom-color: #ad6075;
  transform: scaleX(-1);
}

.envelope-flap {
  border-left: 122px solid transparent;
  border-right: 122px solid transparent;
  border-top: 82px solid #d391a2;
  position: absolute;
  top: 0;
}

.envelope-seal {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: white;
  display: flex;
  font-family: Georgia, serif;
  font-size: 11px;
  height: 42px;
  justify-content: center;
  left: 102px;
  position: absolute;
  top: 61px;
  width: 42px;
  z-index: 5;
}

.offer-section {
  background: var(--wine-dark);
  color: white;
  padding: 100px 28px;
}

.section-heading,
.offer-grid {
  margin: 0 auto;
  max-width: 1124px;
}

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

.mobile-swipe-hint {
  color: #e5bdc8;
  display: none;
  font-size: 13px;
  margin: 18px 0 0;
}

.section-heading .eyebrow {
  color: #e5bdc8;
}

.section-heading h2,
.order-intro h2 {
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0;
}

.offer-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.offer-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
}

.offer-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.offer-topline > span:first-child {
  color: #e5bdc8;
  font-size: 11px;
  font-weight: 800;
}

.discount-badge {
  background: #f2d28e;
  border-radius: 999px;
  color: #4f1f30;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.offer-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  margin: 42px 0 14px;
}

.offer-grid p {
  color: #d9cbd0;
  line-height: 1.6;
  min-height: 52px;
}

.price-row {
  align-items: baseline;
  display: flex;
  gap: 11px;
  margin-top: auto;
}

.price-row .regular-price {
  color: #c6b7bc;
  font-size: 12px;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price-row strong {
  color: #efcf98;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.choose-button {
  background: white;
  border: 0;
  border-radius: 999px;
  color: var(--wine-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  margin-top: 20px;
  min-height: 48px;
  padding: 13px 18px;
  transition: background 160ms ease, transform 160ms ease;
  width: 100%;
}

.choose-button:hover {
  background: #f7e8eb;
  transform: translateY(-2px);
}

.featured-offer {
  background: var(--wine) !important;
  transform: translateY(-12px);
}

.payment-policy {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin: 34px auto 0;
  max-width: 1124px;
  padding: 17px 20px;
}

.payment-policy > span {
  align-items: center;
  background: #efcf98;
  border-radius: 50%;
  color: var(--wine-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.payment-policy p {
  color: #eadfe2;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.payment-policy strong {
  color: white;
}

.order-section {
  animation: reveal-order 360ms ease both;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.82fr 1.18fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 110px 28px;
}

@keyframes reveal-order {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.order-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 24px;
}

.privacy-note {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 22px;
}

.selected-product {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 20px;
}

.selected-product > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selected-product strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.selected-product b {
  color: var(--wine);
  font-size: 23px;
}

.selected-product button {
  background: transparent;
  border: 0;
  color: var(--wine);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  justify-self: start;
  margin-top: 7px;
  padding: 0;
  text-decoration: underline;
}

.privacy-note span {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--wine);
  display: flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.privacy-note p {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0 0;
}

.order-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(79, 31, 48, 0.09);
  display: grid;
  gap: 18px;
  padding: 34px;
}

.order-form label {
  color: var(--wine-dark);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
}

.order-form label span {
  color: var(--muted);
  font-weight: 400;
}

.order-form input,
.order-form select,
.order-form textarea {
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 14px 15px;
  width: 100%;
}

.order-form textarea {
  resize: vertical;
}

.submit-button {
  margin-top: 7px;
  min-height: 52px;
  width: 100%;
}

.submit-button.whatsapp-button,
.submit-button.whatsapp-button:hover {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.submit-button.whatsapp-button:hover {
  background: var(--whatsapp-dark);
}

.form-footnote,
.form-notice {
  color: var(--muted);
  font-size: 12px;
  margin: -6px 0 0;
  text-align: center;
}

.form-notice {
  background: var(--blush);
  border-radius: 10px;
  color: var(--wine-dark);
  line-height: 1.5;
  margin-top: 0;
  padding: 12px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1124px;
  padding: 36px 0 100px;
}

footer p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.footer-info {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tiktok-link {
  align-items: center;
  background: var(--wine-dark);
  border: 1px solid var(--wine-dark);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  padding: 10px 15px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.tiktok-link:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

.tiktok-link span {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.floating-whatsapp {
  align-items: center;
  background: var(--whatsapp);
  border: 0;
  border-radius: 999px;
  bottom: 20px;
  box-shadow: 0 12px 30px rgba(20, 95, 59, 0.3);
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  gap: 8px;
  min-height: 58px;
  padding: 15px 22px;
  position: fixed;
  right: 20px;
  z-index: 20;
}

@media (max-width: 880px) {
  .hero,
  .order-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 42px;
    padding-top: 36px;
  }

  .letter-scene {
    min-height: 500px;
  }

  .offer-grid {
    gap: 10px;
  }

  .offer-grid article {
    min-height: 340px;
    padding: 22px;
  }

  .offer-grid h3 {
    font-size: 23px;
  }

  .order-section {
    gap: 42px;
  }

  footer {
    margin: 0 28px;
  }
}

@media (max-width: 720px) {
  .offer-grid {
    grid-auto-columns: min(82vw, 340px);
    grid-auto-flow: column;
    grid-template-columns: none;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 12px 18px 20px;
    scroll-padding-inline: 18px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: #c98295 transparent;
  }

  .offer-grid article {
    min-height: 350px;
    scroll-snap-align: start;
  }

  .featured-offer {
    transform: none;
  }

  .mobile-swipe-hint {
    display: block;
  }

  .offer-section {
    padding-left: 0;
    padding-right: 0;
  }

  .offer-section .section-heading {
    padding-left: 18px;
    padding-right: 18px;
  }

  .payment-policy {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 18px;
  }

  .brand-logo {
    height: 46px;
    width: 46px;
  }

  .header-cta {
    padding: 10px 14px;
  }

  .header-cta.whatsapp-button {
    font-size: 13px;
    min-height: 46px;
    padding: 10px 13px;
  }

  .header-cta .whatsapp-icon {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 44px 18px 72px;
  }

  h1 {
    font-size: 50px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .letter-scene {
    border-radius: 28px;
    min-height: 440px;
    padding: 25px;
  }

  .digital-letter {
    padding: 36px 28px 50px;
  }

  .digital-letter h2 {
    font-size: 24px;
  }

  .envelope {
    bottom: 10px;
    right: -66px;
    transform: rotate(9deg) scale(0.86);
  }

  .offer-section,
  .order-section {
    padding: 76px 18px;
  }

  .order-form {
    padding: 22px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin: 0 18px;
    padding-bottom: 110px;
  }

  .footer-info {
    align-items: flex-start;
  }

  .floating-whatsapp {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: calc(100% - 28px);
  }
}

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

  * {
    transition: none !important;
  }
}
