:root {
  --green: #58724f;
  --green-dark: #31452d;
  --green-soft: #eef4ea;
  --gold: #c9a20b;
  --gold-dark: #9a7a07;
  --cream: #fbf2dc;
  --paper: #fffdf8;
  --brown: #4b2a12;
  --brown-soft: #7a4a24;
  --text: #24301f;
  --muted: #6d7569;
  --line: rgba(88, 114, 79, 0.14);
  --shadow: 0 24px 70px rgba(49, 69, 45, 0.14);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: #f7f7f5;
}

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

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

button,
input {
  font: inherit;
}

.sales-bar {
  background: #5e0718;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.letreiro-container {
  display: flex;
  width: max-content;
  animation: rolagemInfinita 18s linear infinite;
}

.letreiro-track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding-right: clamp(24px, 5vw, 70px);
}

.letreiro-track span {
  display: inline-flex;
  align-items: center;
}

@keyframes rolagemInfinita {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.header-galeria {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: -1;
}

.header-galeria img {
  flex: 1;
  height: 100%;
  object-fit: cover;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(59, 7, 17, 0.82);
  z-index: -1;
}

.header-main {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: 210px 1fr 170px auto;
  align-items: center;
  gap: 20px;
  padding: 22px 20px 18px;
}

.brand img {
  width: 90px;
  border-radius: 16px;
  background: #fff;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 48px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}

.search-box input {
  border: 0;
  outline: 0;
  padding: 0 18px;
  min-height: 50px;
  color: #3d2b20;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.search-box button {
  border: 0;
  background: #fff;
  color: #3a1d0b;
  cursor: pointer;
  font-size: 1.7rem;
}

.account-link {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  align-items: center;
  line-height: 1.05;
}

.account-link span {
  grid-row: span 2;
  font-size: 1.3rem;
}

.account-link strong {
  font-size: 0.92rem;
}

.account-link small {
  color: white;
  font-size: 0.76rem;
}

.campaign-toggle {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.campaign-toggle:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.45rem;
}

.nav {
  max-width: 1220px;
  margin: auto;
  padding: 0 20px 22px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.nav a {
  padding-top: 20px;
  font-weight: 900;
  color: #fff;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav a:hover {
  color: #ffb8bd;
  transform: translateY(-2px);
}

.campaign-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(22px, 3.5vw, 84px) clamp(18px, 6vw, 90px);
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 205, 205, 0.42),
      transparent 260px
    ),
    radial-gradient(
      circle at 48% 100%,
      rgba(92, 0, 24, 0.34),
      transparent 380px
    ),
    linear-gradient(110deg, #5e0718 0%, #8f1027 38%, #c73548 68%, #f4b6b8 100%);
  position: relative;
  overflow: hidden;
}

.campaign-hero::before,
.campaign-hero::after {
  content: "♥";
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  font-size: clamp(5rem, 10vw, 12rem);
  filter: blur(0.2px);
}

.campaign-hero::before {
  left: 4%;
  top: 12%;
}

.campaign-hero::after {
  left: 42%;
  bottom: -7%;
  transform: rotate(-8deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.campaign-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.94;
  color: var(--brown);
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

h3 {
  font-size: 1.8rem;
}

.campaign-hero h1,
.campaign-hero h2,
.campaign-hero h3 {
  color: #fff8f2;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 1.16rem;
  color: #ffe5df;
  font-weight: 600;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 16px 36px rgba(88, 114, 79, 0.28);
}

.primary:hover {
  background: var(--green-dark);
  box-shadow: 0 22px 44px rgba(49, 69, 45, 0.32);
}

.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #7f1022;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
  margin-top: 34px;
}

.hero-selling-points div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.hero-selling-points strong {
  display: block;
  color: #fff8f2;
  font-weight: 900;
}

.hero-selling-points span {
  color: #ffe3dc;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-product {
  position: relative;
  z-index: 2;
}

.hero-product img {
  width: 100%;
  height: min(540px, 70vh);
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(73, 45, 20, 0.24);
  border: 8px solid rgba(255, 255, 255, 0.45);
}

.price-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff4e8;
  color: #8f1027;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(92, 0, 24, 0.28);
  text-align: center;
}

.price-badge span {
  font-size: 0.78rem;
  font-weight: 900;
}

.price-badge strong {
  max-width: 120px;
  font-size: 1.35rem;
  line-height: 1.1;
  font-weight: 900;
}

.purchase-strip {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 42px auto 0;
  position: relative;
  z-index: 5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(49, 69, 45, 0.12);
}

.purchase-strip div {
  text-align: center;
  padding: 22px 18px;
  border-right: 1px solid rgba(122, 62, 18, 0.16);
}

.purchase-strip div:last-child {
  border-right: 0;
}

.purchase-strip strong {
  display: block;
  color: #7a3e12;
  font-size: 1.06rem;
  font-weight: 900;
}

.purchase-strip span {
  display: block;
  margin-top: 5px;
  color: var(--brown-soft);
  font-size: 0.88rem;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 84px);
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
}

.section-heading p {
  max-width: 620px;
  margin: 16px auto 0;
}

.products-section {
  background: #f5f5f3;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 30px;
}

.category-tabs button {
  border: 1px solid rgba(75, 42, 18, 0.16);
  background: #fff;
  color: var(--brown);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.2s ease;
}

.category-tabs button:hover,
.category-tabs button.active {
  background: #7a3e12;
  color: #fff;
}

.products-grid {
  max-width: 1220px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(49, 69, 45, 0.18);
  border-color: rgba(201, 162, 11, 0.34);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #f2f0ea;
}

.product-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.055);
}

.product-illustrative-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: #8a100c;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.product-tags {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-size: 0.64rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.product-tags span:first-child {
  background: #8a100c;
  padding: 6px;
}

.product-tags span:last-child {
  background: #c39254;
  padding: 6px;
}

.product-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
  color: #1f1a16;
  min-height: 42px;
  margin-bottom: 0;
}

.product-details-toggle {
  width: 100%;
  margin: 12px 0 5px;
  padding: 10px 12px;
  border: 1px solid rgba(75, 42, 18, 0.14);
  border-radius: 12px;
  background: #fffdf8;
  color: #4b2a12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.product-details-toggle:hover {
  background: #fff4eb;
  border-color: rgba(138, 16, 12, 0.28);
  color: #8a100c;
}

.product-details-arrow {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.product-card.details-open .product-details-arrow {
  transform: rotate(180deg);
}

.product-details {
  display: none;
}

.product-card.details-open .product-details {
  display: block;
}

.product-description {
  margin: 10px 0 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: #faf7f1;
  border: 1px solid rgba(75, 42, 18, 0.1);
  font-size: 0.85rem;
  color: #62584f;
  line-height: 1.55;
}

.product-note {
  margin: auto 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff4eb;
  border: 1px solid rgba(195, 146, 84, 0.35);
  color: #8a100c;
  font-size: 0.8rem;
  line-height: 1.4;
}

.product-note-placeholder {
  visibility: hidden;
}

.product-price {
  display: block;
  font-size: 1.35rem;
  color: #1f1a16;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 14px;
}

.product-button {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.promo-banner {
  background: #fff;
}

.promo-card {
  max-width: 1180px;
  margin: auto;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(rgba(58, 29, 11, 0.82), rgba(58, 29, 11, 0.82)),
    url("assets/cesta-24.jpg") center/cover;
  color: white;
  box-shadow: var(--shadow);
}

.promo-card h2 {
  color: #fff;
  margin-top: 12px;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.steps {
  background: var(--green-soft);
}

.steps-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  background: var(--green-dark);
  color: #fff;
  padding: 30px;
  border-radius: var(--radius);
  min-height: 240px;
  box-shadow: var(--shadow);
}

.step strong {
  color: var(--gold);
}

.step h3 {
  color: white;
  margin-top: 36px;
}

.step p {
  color: rgba(255, 255, 255, 0.74);
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.13);
  transition: transform 1.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-12px);
}

.gallery-grid img:nth-child(1) {
  grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 162, 11, 0.18), transparent 360px),
    var(--green-dark);
}

.final-cta h2 {
  color: white;
  max-width: 820px;
  margin: 16px auto;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
}

.footer {
  background: #fffdf8;
  padding: 34px 18px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  text-align: left;
  border-top: 1px solid rgba(88, 114, 79, 0.12);
  flex-wrap: wrap;
}

.footer img {
  width: 82px;
  border-radius: 12px;
  background: white;
}

.footer-content {
  max-width: 520px;
}

.footer-institutional {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
}

.footer strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-developed {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-developed span {
  color: var(--muted);
}

.footer-developed a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.footer-developed a:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.whatsapp-float,
.instagram-float {
  position: fixed;
  right: 22px;
  z-index: 80;
  padding: 10px;
  color: white;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float {
  bottom: 22px;
  background-color: #31452d;
}

.instagram-float {
  bottom: 92px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.hidden {
  display: none !important;
}

.instagram-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 11, 0.16),
      transparent 340px
    ),
    #fffdf8;
}

.instagram-card {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(88, 114, 79, 0.12);
}

.instagram-content h2 {
  margin-top: 14px;
}

.instagram-content p {
  max-width: 540px;
}

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

.instagram-preview img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.instagram-preview img:nth-child(2) {
  transform: translateY(-22px);
}

.footer-instagram {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  text-decoration: none;
}

@media (max-width: 1050px) {
  .header-main {
    grid-template-columns: 64px 1fr 42px;
    gap: 10px;
    padding: 14px 12px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    width: 64px;
  }

  .search-box {
    grid-column: 2;
    max-width: 100%;
  }

  .search-box input {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .search-box button {
    font-size: 1.3rem;
  }

  .campaign-toggle {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-height: 42px;
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
  }

  .menu-button {
    grid-column: 3;
    grid-row: 1;
    display: block;
  }

  .account-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 20px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .campaign-hero {
    grid-template-columns: 1fr;
  }

  .hero-product {
    order: -1;
  }

  .hero-product img {
    height: 430px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purchase-strip {
    grid-template-columns: repeat(2, 1fr);
    margin: 34px 18px 0;
  }

  .promo-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .product-details-toggle {
    font-size: 0.8rem;
  }

  .product-note {
    font-size: 0.78rem;
  }

  .sales-bar {
    font-size: 0.78rem;
  }

  .letreiro-container {
    animation-duration: 12s;
  }

  .brand img {
    width: 64px;
  }

  .search-box {
    grid-template-columns: 1fr 38px;
  }

  .search-box input {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .campaign-toggle {
    min-height: 40px;
    font-size: 0.72rem;
    padding: 0 12px;
  }

  .campaign-hero {
    padding: 28px 16px 54px;
  }

  .campaign-hero::before,
  .campaign-hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-product img {
    height: 340px;
    border-radius: 24px;
    border-width: 5px;
  }

  .price-badge {
    width: 118px;
    height: 118px;
    top: 14px;
    left: 14px;
  }

  .price-badge strong {
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-selling-points,
  .purchase-strip,
  .products-grid,
  .steps-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .purchase-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(122, 62, 18, 0.12);
  }

  .product-image img {
    height: 250px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .instagram-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .instagram-preview {
    grid-template-columns: 1fr;
  }

  .instagram-preview img {
    height: 260px;
  }

  .instagram-preview img:nth-child(2) {
    transform: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-developed {
    justify-content: center;
  }
}

.social-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.social-options.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.whatsapp-float,
.instagram-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.whatsapp-float:hover,
.instagram-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.whatsapp-float {
  background-color: #31452d;
}

.instagram-float {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.floating-social {
  position: fixed;
  right: 18px;
  bottom: 28px;
  z-index: 999;
}

.social-toggle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 248, 0.26);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.22),
      transparent 28px
    ),
    linear-gradient(135deg, #58724f, #31452d);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 40px rgba(49, 69, 45, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.social-toggle:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 24px 50px rgba(49, 69, 45, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.social-toggle.active {
  transform: rotate(90deg) scale(1.02);
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.24),
      transparent 28px
    ),
    linear-gradient(135deg, #c9a20b, #9a7a07);
}

.social-toggle-icon {
  width: 25px;
  height: 20px;
  display: grid;
  gap: 5px;
}

.social-toggle-icon span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.social-toggle.active .social-toggle-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.social-toggle.active .social-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.social-toggle.active .social-toggle-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.whatsapp-float svg,
.instagram-float svg {
  width: 34px;
  height: 34px;
}

/* =========================
   TEMAS PLUG AND PLAY
   - campanhaAtiva: false => loja
   - campanhaAtiva: true  => dia-dos-namorados
   ========================= */

body[data-theme="loja"] .sales-bar {
  background: var(--green-dark);
}

body[data-theme="loja"] .site-header {
  background: var(--green-dark);
  box-shadow: 0 12px 35px rgba(49, 69, 45, 0.22);
}

body[data-theme="loja"] .nav a:hover {
  color: var(--gold);
}

body[data-theme="loja"] .campaign-hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(201, 162, 11, 0.28),
      transparent 260px
    ),
    radial-gradient(
      circle at 48% 100%,
      rgba(88, 114, 79, 0.18),
      transparent 380px
    ),
    linear-gradient(110deg, #eef4ea 0%, #fffdf8 48%, #fbf2dc 100%);
}

body[data-theme="loja"] .campaign-hero::before,
body[data-theme="loja"] .campaign-hero::after {
  color: rgba(88, 114, 79, 0.12);
}

body[data-theme="loja"] .campaign-hero h1,
body[data-theme="loja"] .campaign-hero h2,
body[data-theme="loja"] .campaign-hero h3 {
  color: var(--green-dark);
}

body[data-theme="loja"] .hero-copy p {
  color: var(--brown-soft);
}

body[data-theme="loja"] .hero-selling-points div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(88, 114, 79, 0.16);
}

body[data-theme="loja"] .hero-selling-points strong {
  color: var(--green-dark);
}

body[data-theme="loja"] .hero-selling-points span {
  color: var(--muted);
}

body[data-theme="loja"] .secondary {
  background: white;
  color: var(--green-dark);
  border: 1px solid rgba(88, 114, 79, 0.2);
}

body[data-theme="dia-dos-namorados"] .primary {
  background: #7f1022;
  box-shadow: 0 16px 36px rgba(92, 0, 24, 0.3);
}

body[data-theme="dia-dos-namorados"] .primary:hover {
  background: #5e0718;
  box-shadow: 0 22px 44px rgba(92, 0, 24, 0.36);
}

body[data-theme="dia-dos-namorados"] .product-button {
  background: #7f1022;
}

body[data-theme="dia-dos-namorados"] .product-button:hover {
  background: #5e0718;
}

body[data-theme="dia-dos-namorados"] .category-tabs button:hover,
body[data-theme="dia-dos-namorados"] .category-tabs button.active {
  background: #7f1022;
}

.institutional-page {
  min-height: 70vh;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 84px);
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 11, 0.14),
      transparent 340px
    ),
    #fffdf8;
}

.institutional-container {
  max-width: 960px;
  margin: 0 auto;
}

.back-home-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(88, 114, 79, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 34px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.back-home-button:hover {
  transform: translateY(-2px);
  background: var(--green-soft);
  border-color: rgba(88, 114, 79, 0.35);
}

.institutional-content {
  background: #fff;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(88, 114, 79, 0.12);
}

.institutional-content h1 {
  margin-top: 18px;
  margin-bottom: 26px;
  color: var(--green-dark);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.institutional-content p {
  font-size: 1.02rem;
  color: var(--brown-soft);
  margin: 0 0 18px;
}

.institutional-content p:last-child {
  margin-bottom: 0;
}

body[data-theme="dia-dos-namorados"] .institutional-content h1 {
  color: #7f1022;
}

body[data-theme="dia-dos-namorados"] .back-home-button {
  color: #7f1022;
}

@media (max-width: 720px) {
  .institutional-page {
    padding: 42px 16px 64px;
  }

  .institutional-content {
    border-radius: 22px;
    padding: 24px;
  }

  .institutional-content h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
}

.footer-institutional {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 190px;
}

.footer-institutional strong {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-institutional a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-institutional a:hover {
  color: var(--green-dark);
  transform: translateX(3px);
}

body[data-theme="dia-dos-namorados"] .footer-institutional strong,
body[data-theme="dia-dos-namorados"] .footer-institutional a:hover {
  color: #7f1022;
}

@media (max-width: 720px) {
  .footer-institutional {
    align-items: center;
    text-align: center;
  }
}

/* =========================
   AJUSTES DO TEMA LOJA
   campanhaAtiva: false
   ========================= */

body[data-theme="loja"] {
  background: #f7f5ee;
}

body[data-theme="loja"] .sales-bar {
  background: #31452d;
  color: #fffdf8;
}

body[data-theme="loja"] .site-header {
  background: #31452d;
  box-shadow: 0 12px 35px rgba(49, 69, 45, 0.22);
}

body[data-theme="loja"] .nav a:hover {
  color: #d8b84e;
}

body[data-theme="loja"] .campaign-hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(201, 162, 11, 0.24),
      transparent 260px
    ),
    radial-gradient(
      circle at 48% 100%,
      rgba(88, 114, 79, 0.18),
      transparent 380px
    ),
    linear-gradient(110deg, #eef4ea 0%, #fffdf8 52%, #fbf2dc 100%);
}

body[data-theme="loja"] .campaign-hero::before,
body[data-theme="loja"] .campaign-hero::after {
  color: rgba(201, 162, 11, 0.16);
}

body[data-theme="loja"] .campaign-pill,
body[data-theme="loja"] .campaign-hero .eyebrow,
body[data-theme="loja"] .eyebrow {
  background: rgba(201, 162, 11, 0.14);
  color: #9a7a07;
}

body[data-theme="loja"] .campaign-hero h1,
body[data-theme="loja"] .campaign-hero h2,
body[data-theme="loja"] .campaign-hero h3 {
  color: #31452d;
}

body[data-theme="loja"] h1,
body[data-theme="loja"] h2,
body[data-theme="loja"] h3 {
  color: #31452d;
}

body[data-theme="loja"] .hero-copy p {
  color: #6b5a38;
}

body[data-theme="loja"] .secondary {
  background: #fffdf8;
  color: #31452d;
  border: 1px solid rgba(201, 162, 11, 0.34);
}

body[data-theme="loja"] .secondary:hover {
  background: #fbf2dc;
  color: #31452d;
}

body[data-theme="loja"] .primary,
body[data-theme="loja"] .product-button {
  background: #58724f;
  color: #fff;
  box-shadow: 0 16px 36px rgba(88, 114, 79, 0.24);
}

body[data-theme="loja"] .primary:hover,
body[data-theme="loja"] .product-button:hover {
  background: #31452d;
  box-shadow: 0 22px 44px rgba(49, 69, 45, 0.3);
}

body[data-theme="loja"] .hero-selling-points div {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(201, 162, 11, 0.22);
}

body[data-theme="loja"] .hero-selling-points strong {
  color: #31452d;
}

body[data-theme="loja"] .hero-selling-points span {
  color: #7a4a24;
}

body[data-theme="loja"] .price-badge {
  background: #fff8e6;
  color: #9a7a07;
  box-shadow: 0 18px 45px rgba(154, 122, 7, 0.22);
}

body[data-theme="loja"] .purchase-strip strong {
  color: #31452d;
}

body[data-theme="loja"] .purchase-strip span {
  color: #7a4a24;
}

body[data-theme="loja"] .category-tabs button {
  color: #31452d;
  border-color: rgba(88, 114, 79, 0.18);
}

body[data-theme="loja"] .category-tabs button:hover,
body[data-theme="loja"] .category-tabs button.active {
  background: #c9a20b;
  color: #fff;
}

body[data-theme="loja"] .product-tags span:first-child {
  background: #58724f;
}

body[data-theme="loja"] .product-tags span:last-child {
  background: #c9a20b;
}

body[data-theme="loja"] .product-price {
  color: #31452d;
}

body[data-theme="loja"] .promo-card {
  background:
    linear-gradient(rgba(49, 69, 45, 0.82), rgba(49, 69, 45, 0.82)),
    url("assets/cesta-24.jpg") center/cover;
}

body[data-theme="loja"] .steps {
  background: #eef4ea;
}

body[data-theme="loja"] .step {
  background: #31452d;
}

body[data-theme="loja"] .step strong {
  color: #d8b84e;
}

body[data-theme="loja"] .final-cta {
  background:
    radial-gradient(circle at top, rgba(201, 162, 11, 0.22), transparent 360px),
    #31452d;
}

body[data-theme="loja"] .footer-institutional strong,
body[data-theme="loja"] .footer-developed a {
  color: #31452d;
  border-color: #c9a20b;
}

body[data-theme="loja"] .footer-institutional a:hover,
body[data-theme="loja"] .footer-developed a:hover {
  color: #9a7a07;
}

body[data-theme="loja"] .institutional-content h1 {
  color: #31452d;
}

body[data-theme="loja"] .back-home-button {
  color: #31452d;
}

body[data-theme="loja"] .back-home-button:hover {
  background: #fbf2dc;
  border-color: rgba(201, 162, 11, 0.35);
}

/* Ajuste pontual dos títulos em fundos verdes no tema loja */
body[data-theme="loja"] .promo-card h2,
body[data-theme="loja"] .final-cta h2 {
  color: #d8b84e;
}

body[data-theme="loja"] .promo-card .eyebrow,
body[data-theme="loja"] .final-cta .eyebrow {
  background: rgba(216, 184, 78, 0.16);
  color: #d8b84e;
}

body[data-theme="loja"] .promo-card p,
body[data-theme="loja"] .final-cta p {
  color: rgba(255, 253, 248, 0.82);
}

@media (max-width: 720px) {
  .footer {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
    padding: 48px 18px 54px;
  }

  .footer img {
    margin: 0 auto;
  }

  .footer-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-content strong {
    text-align: center;
  }

  .footer-content p {
    text-align: center;
  }

  .footer-developed {
    justify-content: center;
    text-align: center;
  }

  .footer-institutional {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 8px;
  }

  .footer-institutional strong {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 8px;
  }

  .footer-institutional a {
    text-align: center;
    font-size: 1rem;
  }

  .footer-institutional a:hover {
    transform: none;
  }
}

.delivery-area-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 11, 0.16),
      transparent 340px
    ),
    #fffdf8;
}

.delivery-area-card {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  background: linear-gradient(110deg, #fbf2dc 0%, #fffdf8 48%, #eef4ea 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 11, 0.18);
  overflow: hidden;
  position: relative;
}

.delivery-area-card::before {
  content: "";
  position: absolute;
  right: 8%;
  top: -42px;
  width: 260px;
  height: 90px;
  border-radius: 999px;
  border: 18px solid rgba(122, 74, 36, 0.16);
  transform: rotate(14deg);
}

.delivery-area-content {
  position: relative;
  z-index: 2;
}

.delivery-area-content h2 {
  margin-top: 16px;
  color: var(--green-dark);
  max-width: 760px;
}

.delivery-area-content p {
  max-width: 680px;
  color: var(--brown-soft);
  font-size: 1.05rem;
}

.delivery-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.delivery-cities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
  border: 1px solid rgba(88, 114, 79, 0.14);
  box-shadow: 0 8px 20px rgba(49, 69, 45, 0.08);
}

.delivery-note {
  display: inline-flex;
  margin-top: 24px;
  color: var(--gold-dark);
  font-size: 1.05rem;
  font-weight: 900;
}

.delivery-area-visual {
  position: relative;
  z-index: 2;
}

.delivery-area-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  border: 8px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(49, 69, 45, 0.18);
}

.delivery-icon {
  position: absolute;
  left: -18px;
  top: -18px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff8e6;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 16px 36px rgba(154, 122, 7, 0.18);
  z-index: 3;
}

body[data-theme="dia-dos-namorados"] .delivery-area-card {
  background: linear-gradient(110deg, #fff4e8 0%, #fffdf8 45%, #ffe5e2 100%);
  border-color: rgba(127, 16, 34, 0.14);
}

body[data-theme="dia-dos-namorados"] .delivery-area-content h2 {
  color: #7f1022;
}

body[data-theme="dia-dos-namorados"] .delivery-cities span {
  color: #7f1022;
}

@media (max-width: 900px) {
  .delivery-area-card {
    grid-template-columns: 1fr;
  }

  .delivery-area-visual {
    order: -1;
  }

  .delivery-area-visual img {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .delivery-area-card {
    padding: 24px;
    border-radius: 24px;
  }

  .delivery-area-card::before {
    display: none;
  }

  .delivery-area-content {
    text-align: center;
  }

  .delivery-cities {
    justify-content: center;
  }

  .delivery-area-visual img {
    height: 240px;
    border-radius: 22px;
    border-width: 5px;
  }

  .delivery-icon {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
    left: 12px;
    top: 12px;
  }
}

section,
main,
footer {
  scroll-margin-top: 160px;
}

@media (max-width: 1050px) {
  section,
  main,
  footer {
    scroll-margin-top: 230px;
  }
}

@media (max-width: 720px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 48px 18px 54px;
    text-align: center;
  }

  .footer img {
    margin: 0 auto;
  }

  .footer-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer-developed {
    justify-content: center;
    text-align: center;
  }

  .footer-institutional {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-top: 4px;
  }

  .footer-institutional a:hover {
    transform: none;
  }
}

.header-photo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 16px;
  background: linear-gradient(
    90deg,
    rgba(49, 69, 45, 0.98),
    rgba(49, 69, 45, 0.86),
    rgba(49, 69, 45, 0.98)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.header-photo-marquee::before,
.header-photo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.header-photo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #31452d, transparent);
}

.header-photo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #31452d, transparent);
}

.header-photo-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: headerPhotosScroll 42s linear infinite;
}

.header-photo-track img {
  width: 116px;
  height: 74px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 253, 248, 0.38);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  opacity: 0.88;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.header-photo-track img:hover {
  transform: scale(1.06);
  opacity: 1;
}

@keyframes headerPhotosScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee {
  background: linear-gradient(
    90deg,
    rgba(94, 7, 24, 0.98),
    rgba(127, 16, 34, 0.88),
    rgba(94, 7, 24, 0.98)
  );
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::before {
  background: linear-gradient(90deg, #5e0718, transparent);
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::after {
  background: linear-gradient(270deg, #5e0718, transparent);
}

@media (max-width: 720px) {
  .header-photo-marquee {
    padding: 10px 0 12px;
  }

  .header-photo-track {
    gap: 10px;
    animation-duration: 34s;
  }

  .header-photo-track img {
    width: 92px;
    height: 62px;
    border-radius: 13px;
  }

  .header-photo-marquee::before,
  .header-photo-marquee::after {
    width: 44px;
  }
}

/* Remove fotos grandes de fundo do header, mantendo a esteira pequena */
.site-header {
  background: #31452d !important;
  background-image: none !important;
}

body[data-theme="dia-dos-namorados"] .site-header {
  background: #5e0718 !important;
  background-image: none !important;
}

body[data-theme="loja"] .site-header {
  background: #31452d !important;
  background-image: none !important;
}

.header-main,
.nav {
  background: transparent !important;
  background-image: none !important;
  position: relative;
  z-index: 2;
}

.site-header::before,
.site-header::after,
.header-main::before,
.header-main::after,
.nav::before,
.nav::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
}

/* Ajuste do título "Como funciona" no modo Dia dos Namorados */
body[data-theme="dia-dos-namorados"] .steps .section-heading h2 {
  color: #5e0718;
}

body[data-theme="dia-dos-namorados"] .steps .section-heading .eyebrow {
  background: rgba(127, 16, 34, 0.12);
  color: #7f1022;
}

.header-galeria {
  display: none !important;
}

.feedbacks-section {
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 11, 0.16),
      transparent 340px
    ),
    #fffdf8;
}

.feedbacks-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.feedback-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(88, 114, 79, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.feedback-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(201, 162, 11, 0.14);
  pointer-events: none;
}

.feedback-header {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.feedback-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.28),
      transparent 28px
    ),
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(49, 69, 45, 0.22);
}

.feedback-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--green-dark);
}

.feedback-stars {
  margin-top: 4px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.feedback-card p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.98rem;
  line-height: 1.72;
  position: relative;
  z-index: 2;
}

.feedback-card strong {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 900;
  position: relative;
  z-index: 2;
}

body[data-theme="dia-dos-namorados"] .feedback-card {
  border-color: rgba(127, 16, 34, 0.14);
}

body[data-theme="dia-dos-namorados"] .feedback-avatar {
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.28),
      transparent 28px
    ),
    linear-gradient(135deg, #7f1022, #5e0718);
}

body[data-theme="dia-dos-namorados"] .feedback-card h3,
body[data-theme="dia-dos-namorados"] .feedback-card strong {
  color: #7f1022;
}

body[data-theme="dia-dos-namorados"] .feedback-stars {
  color: #d8b84e;
}

@media (max-width: 900px) {
  .feedbacks-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .feedback-card {
    border-radius: 22px;
    padding: 24px;
  }

  .feedback-header {
    align-items: flex-start;
  }

  .feedback-avatar {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .feedback-card::before {
    font-size: 6rem;
    right: 18px;
    top: 10px;
  }
}

.google-rating-card {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 22px 28px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top left,
      rgba(201, 162, 11, 0.2),
      transparent 260px
    ),
    #fff;
  border: 1px solid rgba(201, 162, 11, 0.24);
  box-shadow: 0 18px 46px rgba(49, 69, 45, 0.12);
  text-align: center;
}

.google-rating-card div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.google-rating-card span {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.google-rating-card strong {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.google-rating-card p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--brown-soft);
  font-size: 0.96rem;
}

.feedbacks-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .feedbacks-grid {
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    margin-bottom: 26px;
    padding: 20px;
  }
}

body[data-theme="dia-dos-namorados"]
  .products-section
  .section-heading
  .eyebrow {
  background: #fff4e8;
  color: #7f1022;
  border: 1px solid rgba(127, 16, 34, 0.16);
}

/* =========================
   CARROSSEL INFINITO DE FEEDBACKS
   ========================= */
.feedbacks-marquee {
  width: min(96vw, 1360px);
  max-width: 1360px;
  margin: auto;
  overflow: hidden;
  position: relative;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.feedbacks-track {
  display: flex;
  width: max-content;
  gap: 26px;
  animation: feedbackScroll 36s linear infinite;
  will-change: transform;
}

.feedbacks-marquee:hover .feedbacks-track,
.feedbacks-marquee:focus-within .feedbacks-track {
  animation-play-state: paused;
}

.feedbacks-track .feedback-card {
  width: 520px;
  max-width: 520px;
  flex: 0 0 520px;
}

@keyframes feedbackScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 13px));
  }
}

@media (max-width: 900px) {
  .feedbacks-track .feedback-card {
    width: 360px;
    max-width: 360px;
    flex-basis: 360px;
  }
}

@media (max-width: 720px) {
  .feedbacks-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: hidden;
  }

  .feedbacks-track {
    gap: 14px;
    animation-duration: 34s;
  }

  .feedbacks-track .feedback-card {
    width: min(74vw, 300px);
    max-width: min(74vw, 300px);
    flex-basis: min(74vw, 300px);
  }

  .feedbacks-track .feedback-card {
    padding: 18px;
    border-radius: 18px;
    gap: 10px;
  }

  .feedbacks-track .feedback-card p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .feedbacks-track .feedback-card p:nth-of-type(n + 2) {
    display: none;
  }

  .feedbacks-track .feedback-card strong {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .feedbacks-track .feedback-card h3 {
    font-size: 0.92rem;
  }

  .feedbacks-track .feedback-stars {
    font-size: 0.82rem;
  }

  .feedbacks-track .feedback-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .feedbacks-track .feedback-card::before {
    font-size: 4.8rem;
    right: 12px;
    top: 6px;
  }
}

/* Esteira de fotos some quando o usuário sai da hero */
.site-header.header-compact .header-photo-marquee {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow: hidden;
  border-top: 0;
  pointer-events: none;
}

.header-photo-marquee {
  transition:
    max-height 0.35s ease,
    padding 0.35s ease,
    opacity 0.25s ease,
    border 0.25s ease;
  max-height: 120px;
}

/* =========================
   Campanha limitada personalizada
   Dia dos Namorados
   ========================= */

.promo-content {
  max-width: 760px;
}

.promo-rules {
  margin: 24px 0 0;
  padding: 22px 24px 22px 44px;
  border-radius: 22px;
  background: rgba(255, 244, 232, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 42px rgba(58, 29, 11, 0.18);
}

.promo-rules li {
  color: #6f4a35;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-rules li:last-child {
  margin-bottom: 0;
}

body[data-theme="dia-dos-namorados"] .promo-card {
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(94, 7, 24, 0.9),
      rgba(127, 16, 34, 0.76)
    ),
    url("assets/cesta-24.jpg") center/cover;
}

body[data-theme="dia-dos-namorados"] .promo-card .eyebrow {
  background: rgba(255, 244, 232, 0.92);
  color: #7f1022;
}

body[data-theme="dia-dos-namorados"] .promo-card h2 {
  color: #fff4e8;
  max-width: 760px;
}

body[data-theme="dia-dos-namorados"] .promo-card p {
  color: rgba(255, 244, 232, 0.92);
  max-width: 740px;
}

body[data-theme="dia-dos-namorados"] .promo-rules {
  background: rgba(255, 205, 205, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

body[data-theme="dia-dos-namorados"] .promo-rules li {
  color: #5e0718;
}

body[data-theme="dia-dos-namorados"] .promo-card .btn {
  background: #fff4e8;
  color: #7f1022;
  box-shadow: 0 18px 42px rgba(92, 0, 24, 0.28);
}

body[data-theme="dia-dos-namorados"] .promo-card .btn:hover {
  background: #ffdede;
  color: #5e0718;
}

body[data-theme="loja"] .promo-rules {
  display: none;
}

@media (max-width: 900px) {
  body[data-theme="dia-dos-namorados"] .promo-card {
    align-items: flex-start;
  }

  .promo-rules {
    padding: 20px 20px 20px 34px;
  }
}

@media (max-width: 720px) {
  .promo-rules li {
    font-size: 0.9rem;
  }

  body[data-theme="dia-dos-namorados"] .promo-card h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }
}

/* =========================
   NOVA PALETA DIA DOS NAMORADOS
   campanhaAtiva: true
   ========================= */

body[data-theme="dia-dos-namorados"] {
  --campaign-primary: #b80f1a;
  --campaign-primary-dark: #7f0b14;
  --campaign-soft: #f6d7d4;
  --campaign-cream: #fff8f4;
  --campaign-gold: #d9b37a;
  --campaign-brown: #8a6a58;
}

/* Topo / header */
body[data-theme="dia-dos-namorados"] .sales-bar {
  background: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .site-header {
  background: var(--campaign-primary);
  box-shadow: 0 12px 35px rgba(184, 15, 26, 0.28);
}

body[data-theme="dia-dos-namorados"] .nav a:hover {
  color: var(--campaign-gold);
}

/* Esteira de fotos no header */
body[data-theme="dia-dos-namorados"] .header-photo-marquee {
  background: rgba(127, 11, 20, 0.18);
  border-top: 1px solid rgba(217, 179, 122, 0.26);
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::before {
  background: linear-gradient(90deg, var(--campaign-primary), transparent);
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::after {
  background: linear-gradient(270deg, var(--campaign-primary), transparent);
}

/* Hero */
body[data-theme="dia-dos-namorados"] .campaign-hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(246, 215, 212, 0.56),
      transparent 260px
    ),
    radial-gradient(
      circle at 48% 100%,
      rgba(184, 15, 26, 0.28),
      transparent 380px
    ),
    linear-gradient(
      110deg,
      #7f0b14 0%,
      #b80f1a 42%,
      #d94a4d 72%,
      #f6d7d4 100%
    );
}

body[data-theme="dia-dos-namorados"] .campaign-hero::before,
body[data-theme="dia-dos-namorados"] .campaign-hero::after {
  color: rgba(255, 248, 244, 0.16);
}

body[data-theme="dia-dos-namorados"] .campaign-pill,
body[data-theme="dia-dos-namorados"] .campaign-hero .eyebrow {
  background: rgba(255, 248, 244, 0.9);
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .campaign-hero h1,
body[data-theme="dia-dos-namorados"] .campaign-hero h2,
body[data-theme="dia-dos-namorados"] .campaign-hero h3 {
  color: var(--campaign-cream);
}

body[data-theme="dia-dos-namorados"] .hero-copy p {
  color: rgba(255, 248, 244, 0.9);
}

/* Botões */
body[data-theme="dia-dos-namorados"] .primary,
body[data-theme="dia-dos-namorados"] .product-button {
  background: var(--campaign-primary);
  color: #fff;
  box-shadow: 0 16px 36px rgba(184, 15, 26, 0.3);
}

body[data-theme="dia-dos-namorados"] .primary:hover,
body[data-theme="dia-dos-namorados"] .product-button:hover {
  background: var(--campaign-primary-dark);
  box-shadow: 0 22px 44px rgba(127, 11, 20, 0.36);
}

body[data-theme="dia-dos-namorados"] .secondary {
  background: var(--campaign-cream);
  color: var(--campaign-primary);
  border: 1px solid rgba(217, 179, 122, 0.42);
}

body[data-theme="dia-dos-namorados"] .secondary:hover {
  background: var(--campaign-soft);
  color: var(--campaign-primary-dark);
}

/* Destaques da hero */
body[data-theme="dia-dos-namorados"] .hero-selling-points div {
  background: rgba(255, 248, 244, 0.18);
  border: 1px solid rgba(255, 248, 244, 0.28);
}

body[data-theme="dia-dos-namorados"] .hero-selling-points strong {
  color: var(--campaign-cream);
}

body[data-theme="dia-dos-namorados"] .hero-selling-points span {
  color: rgba(255, 248, 244, 0.82);
}

/* Selo de preço */
body[data-theme="dia-dos-namorados"] .price-badge {
  background: var(--campaign-cream);
  color: var(--campaign-primary);
  box-shadow: 0 18px 45px rgba(127, 11, 20, 0.28);
}

body[data-theme="dia-dos-namorados"] .price-badge strong {
  color: var(--campaign-primary);
}

/* Seção produtos */
body[data-theme="dia-dos-namorados"] .products-section {
  background: #fff8f4;
}

body[data-theme="dia-dos-namorados"] .products-section .section-heading .eyebrow {
  background: var(--campaign-cream);
  color: var(--campaign-primary);
  border: 1px solid rgba(184, 15, 26, 0.14);
}

body[data-theme="dia-dos-namorados"] .products-section h2 {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .products-section p {
  color: var(--campaign-brown);
}

body[data-theme="dia-dos-namorados"] .category-tabs button:hover,
body[data-theme="dia-dos-namorados"] .category-tabs button.active {
  background: var(--campaign-primary);
  color: #fff;
}

body[data-theme="dia-dos-namorados"] .product-tags span:first-child {
  background: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .product-tags span:last-child {
  background: var(--campaign-gold);
}

body[data-theme="dia-dos-namorados"] .product-price {
  color: var(--campaign-primary-dark);
}

/* Campanha limitada / informações importantes */
body[data-theme="dia-dos-namorados"] .promo-card {
  background:
    linear-gradient(
      90deg,
      rgba(127, 11, 20, 0.9),
      rgba(184, 15, 26, 0.76)
    ),
    url("assets/cesta-24.jpg") center/cover;
}

body[data-theme="dia-dos-namorados"] .promo-card .eyebrow {
  background: rgba(255, 248, 244, 0.92);
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .promo-card h2 {
  color: var(--campaign-cream);
}

body[data-theme="dia-dos-namorados"] .promo-card p {
  color: rgba(255, 248, 244, 0.92);
}

body[data-theme="dia-dos-namorados"] .promo-rules {
  background: rgba(246, 215, 212, 0.9);
  border: 1px solid rgba(255, 248, 244, 0.3);
}

body[data-theme="dia-dos-namorados"] .promo-rules li {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .promo-card .btn {
  background: var(--campaign-cream);
  color: var(--campaign-primary);
  box-shadow: 0 18px 42px rgba(127, 11, 20, 0.28);
}

body[data-theme="dia-dos-namorados"] .promo-card .btn:hover {
  background: var(--campaign-soft);
  color: var(--campaign-primary-dark);
}

/* Como funciona */
body[data-theme="dia-dos-namorados"] .steps {
  background: #fff8f4;
}

body[data-theme="dia-dos-namorados"] .steps .section-heading h2 {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .steps .section-heading .eyebrow {
  background: rgba(184, 15, 26, 0.1);
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .step {
  background: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .step strong {
  color: var(--campaign-gold);
}

/* Área de entrega */
body[data-theme="dia-dos-namorados"] .delivery-area-section {
  background:
    radial-gradient(circle at top left, rgba(246, 215, 212, 0.38), transparent 340px),
    #fff8f4;
}

body[data-theme="dia-dos-namorados"] .delivery-area-card {
  background:
    linear-gradient(110deg, #fff8f4 0%, #fffdf8 45%, #f6d7d4 100%);
  border-color: rgba(184, 15, 26, 0.14);
}

body[data-theme="dia-dos-namorados"] .delivery-area-content h2 {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .delivery-area-content p {
  color: var(--campaign-brown);
}

body[data-theme="dia-dos-namorados"] .delivery-cities span {
  color: var(--campaign-primary);
  border-color: rgba(184, 15, 26, 0.14);
}

body[data-theme="dia-dos-namorados"] .delivery-note {
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .delivery-icon {
  background: var(--campaign-cream);
  color: var(--campaign-primary);
}

/* Feedbacks */
body[data-theme="dia-dos-namorados"] .feedbacks-section {
  background:
    radial-gradient(circle at top left, rgba(246, 215, 212, 0.36), transparent 340px),
    #fff8f4;
}

body[data-theme="dia-dos-namorados"] .google-rating-card {
  border-color: rgba(217, 179, 122, 0.34);
}

body[data-theme="dia-dos-namorados"] .google-rating-card span,
body[data-theme="dia-dos-namorados"] .feedback-stars {
  color: var(--campaign-gold);
}

body[data-theme="dia-dos-namorados"] .google-rating-card strong,
body[data-theme="dia-dos-namorados"] .feedback-card h3,
body[data-theme="dia-dos-namorados"] .feedback-card strong {
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .feedback-avatar {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 28px),
    linear-gradient(135deg, var(--campaign-primary), var(--campaign-primary-dark));
}

/* Instagram */
body[data-theme="dia-dos-namorados"] .instagram-section {
  background:
    radial-gradient(circle at top left, rgba(246, 215, 212, 0.34), transparent 340px),
    #fff8f4;
}

body[data-theme="dia-dos-namorados"] .instagram-card {
  border-color: rgba(184, 15, 26, 0.12);
}

body[data-theme="dia-dos-namorados"] .instagram-content h2 {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .instagram-content p {
  color: var(--campaign-brown);
}

/* CTA final */
body[data-theme="dia-dos-namorados"] .final-cta {
  background:
    radial-gradient(circle at top, rgba(217, 179, 122, 0.18), transparent 360px),
    var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .final-cta h2 {
  color: var(--campaign-gold);
}

body[data-theme="dia-dos-namorados"] .final-cta .eyebrow {
  background: rgba(255, 248, 244, 0.14);
  color: var(--campaign-gold);
}

body[data-theme="dia-dos-namorados"] .final-cta p {
  color: rgba(255, 248, 244, 0.78);
}

/* Rodapé e institucional */
body[data-theme="dia-dos-namorados"] .footer-institutional strong,
body[data-theme="dia-dos-namorados"] .footer-developed a {
  color: var(--campaign-primary);
  border-color: var(--campaign-gold);
}

body[data-theme="dia-dos-namorados"] .footer-institutional a:hover,
body[data-theme="dia-dos-namorados"] .footer-developed a:hover {
  color: var(--campaign-primary-dark);
}

body[data-theme="dia-dos-namorados"] .institutional-content h1 {
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .back-home-button {
  color: var(--campaign-primary);
}

body[data-theme="dia-dos-namorados"] .back-home-button:hover {
  background: var(--campaign-soft);
  border-color: rgba(184, 15, 26, 0.26);
}

/* Botão flutuante */
body[data-theme="dia-dos-namorados"] .social-toggle {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 28px),
    linear-gradient(135deg, var(--campaign-primary), var(--campaign-primary-dark));
}

body[data-theme="dia-dos-namorados"] .social-toggle.active {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.24), transparent 28px),
    linear-gradient(135deg, var(--campaign-gold), #b8894f);
}

/* Correção final do header na nova paleta Dia dos Namorados */
body[data-theme="dia-dos-namorados"] .site-header {
  background: #b80f1a !important;
  background-image: none !important;
  box-shadow: 0 12px 35px rgba(184, 15, 26, 0.28) !important;
}

body[data-theme="dia-dos-namorados"] .sales-bar {
  background: #7f0b14 !important;
}

body[data-theme="dia-dos-namorados"] .header-main,
body[data-theme="dia-dos-namorados"] .nav {
  background: transparent !important;
  background-image: none !important;
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee {
  background: rgba(127, 11, 20, 0.24) !important;
  border-top: 1px solid rgba(217, 179, 122, 0.28) !important;
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::before {
  background: linear-gradient(90deg, #b80f1a, transparent) !important;
}

body[data-theme="dia-dos-namorados"] .header-photo-marquee::after {
  background: linear-gradient(270deg, #b80f1a, transparent) !important;
}

body[data-theme="dia-dos-namorados"] .campaign-toggle {
  background: rgba(255, 248, 244, 0.14) !important;
  border-color: rgba(255, 248, 244, 0.32) !important;
}

body[data-theme="dia-dos-namorados"] .campaign-toggle:hover {
  background: rgba(255, 248, 244, 0.22) !important;
}

.campaign-video {
  width: 100%;
  height: min(540px, 70vh);
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(73, 45, 20, 0.24);
  border: 8px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 720px) {
  .campaign-video {
    height: 340px;
    border-radius: 24px;
    border-width: 5px;
  }
}
