:root {
  --bg: #fffaf4;
  --surface: #ffffff;
  --soft: #f7eadc;
  --ink: #2f241a;
  --muted: #776a5e;
  --gold: #b98334;
  --gold-dark: #8d5d1e;
  --rose: #d99895;
  --green: #507668;
  --line: rgba(94, 66, 38, 0.16);
  --shadow: 0 20px 50px rgba(80, 53, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

button,
select,
input,
textarea {
  font: inherit;
}

.promo-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 10px 18px;
  background: #2f241a;
  color: #fff8ef;
  font-size: 0.9rem;
  text-align: center;
  flex-wrap: wrap;
}

.promo-strip i,
.benefits i,
.footer i {
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  min-height: 86px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 148px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.cart-button,
.icon-button {
  border: 0;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
}

.cart-button {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(80, 53, 30, 0.12);
}

.cart-button span {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 21px;
}

.hero {
  max-width: 1180px;
  min-height: calc(100vh - 126px);
  margin: 0 auto;
  padding: 54px 20px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.cart-header h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.coupon-pill,
.whatsapp-checkout,
.coupon-row button,
.product-card button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button,
.whatsapp-checkout,
.coupon-row button,
.product-card button {
  background: var(--ink);
  color: white;
}

.primary-button {
  padding: 15px 24px;
  display: inline-flex;
}

.coupon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.coupon-pill strong {
  color: var(--gold-dark);
}

.hero-showcase {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 22px 8px 42px;
  background: radial-gradient(circle at 50% 25%, #fff 0, #fff 28%, #f4e2cb 58%, #e4b997 100%);
  border: 1px solid rgba(185, 131, 52, 0.24);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-logo {
  position: relative;
  width: min(90%, 470px);
  mix-blend-mode: multiply;
  z-index: 1;
}

.hero-product {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 190px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-product img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.hero-product span {
  display: block;
  padding: 10px 4px 4px;
  font-weight: 800;
  font-size: 0.86rem;
}

.benefits {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.benefits div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.products-section {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 58px 20px 78px;
}

.section-heading,
.toolbar,
.products-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.toolbar {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.toolbar label {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.toolbar select {
  min-width: 230px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

.products-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(80, 53, 30, 0.08);
}

.product-image {
  position: relative;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-info {
  padding: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-info h3 {
  margin: 0;
  min-height: 46px;
  font-size: 1rem;
  line-height: 1.25;
}

.price {
  margin: 10px 0;
  color: var(--gold-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.custom-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.product-card button {
  margin-top: auto;
  width: 100%;
  padding: 12px 14px;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(47, 36, 26, 0);
  transition: background 0.2s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(47, 36, 26, 0.42);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  padding: 22px;
  background: var(--bg);
  transform: translateX(105%);
  transition: transform 0.24s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: -20px 0 50px rgba(47, 36, 26, 0.16);
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-header h2 {
  margin: 0;
  font-size: 2.2rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
}

.cart-items {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
}

.empty-cart {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  color: var(--muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cart-item img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 0.88rem;
  line-height: 1.25;
}

.cart-item p {
  margin: 0;
  color: var(--gold-dark);
  font-weight: 900;
}

.qty {
  display: flex;
  align-items: center;
  gap: 7px;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
  font-weight: 900;
}

.coupon-box,
.cart-summary {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.coupon-box label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.coupon-row {
  display: flex;
  gap: 8px;
}

.coupon-row input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 12px;
  text-transform: uppercase;
}

.coupon-row button {
  padding: 0 15px;
}

#coupon-message {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-summary {
  display: grid;
  gap: 9px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.cart-summary strong {
  color: var(--ink);
}

.cart-summary .total {
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
}

.whatsapp-checkout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 15px;
  background: #1f8f57;
}

.whatsapp-checkout.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 999px;
  background: #1f8f57;
  color: white;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(31, 143, 87, 0.28);
}

.footer {
  padding: 44px 20px 28px;
  background: #2f241a;
  color: #fff8ef;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.footer > * {
  max-width: 1180px;
}

.footer img {
  width: 190px;
  height: 84px;
  object-fit: contain;
  filter: brightness(1.18);
  mix-blend-mode: screen;
}

.footer p {
  color: rgba(255, 248, 239, 0.82);
}

.footer h3 {
  margin: 0 0 14px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 239, 0.16);
  font-size: 0.9rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(92vw, 460px);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  transform: translate(-50%, 120px);
  transition: transform 0.22s ease;
}

.toast.show {
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .benefits,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .promo-strip {
    gap: 8px;
    font-size: 0.78rem;
  }

  .nav {
    min-height: 78px;
  }

  .brand img {
    width: 118px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 34px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-showcase {
    min-height: 330px;
  }

  .hero-showcase::before {
    inset: 14px 0 34px;
  }

  .hero-product {
    width: 138px;
    right: 6px;
  }

  .benefits,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .toolbar,
  .footer {
    display: block;
  }

  .toolbar label {
    display: block;
    margin-bottom: 8px;
  }

  .toolbar select {
    width: 100%;
  }

  .floating-whatsapp span {
    display: none;
  }
}
/* =========================
   FOOTER COMPLETO
========================= */

.footer {
  background: #111;

  color: white;

  padding: 60px 20px 30px;

  margin-top: 80px;
}

.footer-content {
  max-width: 1200px;

  margin: 0 auto;

  display: flex;

  justify-content: space-between;

  gap: 50px;

  flex-wrap: wrap;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  width: 120px;

  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);

  line-height: 1.7;

  font-size: 15px;
}

.footer-contact h3 {
  margin-bottom: 20px;

  font-size: 22px;
}

.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 10px;

  transition: 0.2s;
}

.footer-contact a:hover {
  color: white;

  transform: translateX(3px);
}

.footer-bottom {
  max-width: 1200px;

  margin: 40px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255,255,255,0.1);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;
}

.copyright {
  color: rgba(255,255,255,0.6);

  font-size: 14px;
}

.developer-credit {
  color: rgba(255,255,255,0.65);

  font-size: 14px;
}

.developer-credit a {
  color: white;

  font-weight: 700;

  text-decoration: none;
}

.developer-credit a:hover {
  opacity: 0.7;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 768px) {

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }

}