:root {
  --bg: #f4efe7;
  --ink: #15201f;
  --brand: #e25822;
  --brand-dark: #b54217;
  --surface: #1f2f2d;
  --line: #2e4440;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, #ffd9bf 0, transparent 28%),
    radial-gradient(circle at 100% 25%, #b8dfd7 0, transparent 22%),
    linear-gradient(165deg, #f5ece0 0%, #f0eee8 55%, #ebe7de 100%);
  font-family: "Sora", sans-serif;
}

h1, h2, h3, h4, .brand, .page-title {
  font-family: "Barlow", sans-serif;
}

.container {
  position: relative;
  z-index: 2;
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid rgba(21, 32, 31, 0.12);
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 238, 230, 0.92);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}

.menu-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.menu-link:hover {
  color: var(--brand);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5% -20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.14) 0%, rgba(226, 88, 34, 0) 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #255651;
  font-weight: 700;
}

.hero-illustration {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  padding: 0.4rem;
}

/* ── CHIPS & TRUST ───────────────────────────────────── */
.chip {
  border: 1px solid rgba(21, 32, 31, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.42);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
}

.trust-chip {
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(17, 35, 33, 0.15);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

.trust-chip strong {
  display: block;
  font-size: 1.05rem;
}

.trust-chip span {
  font-size: 0.8rem;
  color: #264341;
}

/* ── GLASS CARD ──────────────────────────────────────── */
.glass-card {
  background: rgba(14, 29, 27, 0.9);
  color: #f5f2ed;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(18, 21, 20, 0.2);
}

.glass-card p,
.glass-card li,
.glass-card small,
.glass-card .text-muted {
  color: #d4ddd8 !important;
}

.glass-card .form-floating > label {
  color: #15201f !important;
  opacity: 0.82;
}

.glass-card .form-floating > .form-control,
.glass-card .form-floating > .form-select {
  background: rgba(255, 255, 255, 0.96);
  color: #15201f;
  border-color: rgba(21, 32, 31, 0.16);
}

.glass-card .form-floating > .form-control:focus,
.glass-card .form-floating > .form-select:focus {
  background: #fff;
  color: #15201f;
}

.glass-card .form-floating > .form-control:focus ~ label,
.glass-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
.glass-card .form-floating > .form-select ~ label {
  color: #15201f !important;
  opacity: 0.72;
}

/* ── BRAND STRIP ─────────────────────────────────────── */
.brand-strip {
  background: linear-gradient(120deg, rgba(17, 35, 33, 0.92), rgba(31, 47, 45, 0.92));
}

.brand-strip p {
  color: #d6dfdb;
}

/* ── PRODUCT CARD ────────────────────────────────────── */
.product-illustration {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
}

.price-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(120deg, var(--brand), #f08b3e);
  color: #fff;
  font-weight: 700;
}

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonial-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(17, 35, 33, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 246, 0.82));
  box-shadow: 0 14px 32px rgba(16, 28, 26, 0.08);
}

.testimonial-card p {
  margin-bottom: 1rem;
  color: #17302e;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid rgba(226, 88, 34, 0.3);
  flex-shrink: 0;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #112321;
}

.testimonial-card small {
  color: #395653;
}

.stars {
  color: #e89220;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-brand {
  border: none;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #f08b3e);
  font-weight: 700;
}

.btn-brand:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-dark), #d86b2d);
}

/* ── ADMIN METRICS ───────────────────────────────────── */
.metric-card {
  border-radius: 1rem;
  background: var(--surface);
  color: #fff;
  padding: 1rem;
  border: 1px solid var(--line);
}

.metric-card span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.metric-card strong {
  font-size: 1.5rem;
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
  margin-top: 3rem;
  background: #112321;
  color: #d8dfdc;
}

.site-footer a {
  color: #f6f3ec;
  text-decoration: none;
}

/* ── MODALS ──────────────────────────────────────────── */
.address-modal {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #132624;
  color: #f5f2ed;
}

/* ── PAYMENT ─────────────────────────────────────────── */
.payment-qr {
  max-width: 240px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.pix-qr-wrap {
  max-width: 260px;
}

.pix-status-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  background: rgba(226, 88, 34, 0.18);
  border: 1px solid rgba(226, 88, 34, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  color: #f5c09e;
}

.pix-copypaste {
  background: #f8faf9;
  color: #15201f;
  border: 1px solid rgba(21, 32, 31, 0.25);
  font-size: 0.8rem;
  font-family: monospace;
}

.pix-copypaste:focus,
.pix-copypaste[readonly],
.pix-copypaste[readonly]:focus {
  background: #f8faf9;
  color: #15201f;
  border-color: rgba(21, 32, 31, 0.35);
  box-shadow: none;
}

#cacambas {
  scroll-margin-top: 96px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 1rem;
}

.order-summary-row span {
  font-size: 0.85rem;
  color: #aac0bb;
  flex-shrink: 0;
}

.order-summary-row strong {
  text-align: right;
  font-size: 0.9rem;
}

.text-orange {
  color: #f5a063;
}

/* ── CHECKOUT ────────────────────────────────────────── */
.checkout-hero {
  background: linear-gradient(90deg, #112321, #1f3532);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.step {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  color: #8aaaa5;
  background: rgba(255,255,255,0.06);
}

.step.active {
  background: var(--brand);
  color: #fff;
}

.step.done {
  background: rgba(255,255,255,0.12);
  color: #c8dfda;
}

.step-arrow {
  color: #4a6b66;
  font-size: 1.1rem;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  color: #d4e8e4;
}

.label-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.address-confirm-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.7rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #c8dfda;
}

.checkout-spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.checkout-spec-row div {
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  padding: 0.5rem 0.7rem;
  display: flex;
  flex-direction: column;
}

.checkout-spec-row strong {
  font-size: 0.75rem;
  color: #8aaaa5;
}

.checkout-spec-row span {
  font-size: 0.95rem;
  font-weight: 700;
}

.checkout-includes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout-includes li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── SUCCESS PAGE ────────────────────────────────────── */
.success-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(14, 29, 27, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 2.5rem;
  text-align: center;
  color: #f5f2ed;
  box-shadow: 0 24px 60px rgba(16, 28, 26, 0.25);
}

.success-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.success-detail-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.7rem;
  padding: 0.8rem 1rem;
  display: flex;
  flex-direction: column;
}

.success-detail-box span {
  font-size: 0.78rem;
  color: #8aaaa5;
  margin-bottom: 0.2rem;
}

.success-detail-box strong {
  font-size: 0.95rem;
}

/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(120deg, #112321, #1f3532);
  color: #f5f2ed;
}

.legal-hero h1 {
  color: #f5f2ed;
}

.legal-hero .hero-kicker {
  color: #9ecdc5;
}

.legal-hero .lead {
  color: #b8d4d0;
}

.legal-page h1,
.legal-page h2 {
  color: #112321;
}

.legal-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(17, 35, 33, 0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(16,28,26,0.07);
}

.legal-card h2 {
  font-size: 1.1rem;
  color: #112321;
  margin-bottom: 0.75rem;
}

.legal-card h3 {
  font-size: 1rem;
  color: #112321;
  margin-bottom: 0.75rem;
}

.legal-card p,
.legal-card li {
  color: #2e4440;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.legal-card--highlight {
  background: linear-gradient(160deg, #112321, #1f3a37);
  color: #f5f2ed;
  border-color: rgba(255,255,255,0.08);
}

.legal-card--highlight h3 {
  color: #f5f2ed;
}

.legal-card--highlight p,
.legal-card--highlight li {
  color: #c0d6d2;
}

/* ── COOKIE BANNER ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0d1f1d, #1a3230);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cookie-text {
  color: #d4ddd8;
  flex: 1;
  min-width: 220px;
}

.cookie-text strong {
  color: #f5f2ed;
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-text p {
  margin: 0;
  font-size: 0.85rem;
}

.cookie-text a {
  color: #9ecdc5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.address-modal .cep-link {
  color: var(--brand-light);
  font-size: 0.82rem;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(12px);
}

.reveal-item.is-visible {
  animation: rise 500ms ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 991px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .checkout-spec-row {
    grid-template-columns: 1fr;
  }
}
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, #ffd9bf 0, transparent 28%),
    radial-gradient(circle at 100% 25%, #b8dfd7 0, transparent 22%),
    linear-gradient(165deg, #f5ece0 0%, #f0eee8 55%, #ebe7de 100%);
  font-family: "Sora", sans-serif;
}

h1, h2, h3, h4, .brand, .page-title {
  font-family: "Barlow", sans-serif;
}

.site-header {
  border-bottom: 1px solid rgba(21, 32, 31, 0.12);
  backdrop-filter: blur(4px);
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}

.menu-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}


.container {
  position: relative;
  z-index: 2;
}
.menu-link:hover {
  color: var(--brand);
}

.hero {

.hero::before {
  content: "";
  position: absolute;
  inset: 5% -20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(226, 88, 34, 0.14) 0%, rgba(226, 88, 34, 0) 70%);
  pointer-events: none;
}
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.05;
  background: rgba(255, 255, 255, 0.42);
  margin-bottom: 1rem;

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 680px;
}

.trust-chip {
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(17, 35, 33, 0.15);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

.trust-chip strong {
  display: block;
  font-size: 1.05rem;
}

.trust-chip span {
  font-size: 0.8rem;
  color: #264341;
}
}

.hero-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #255651;
  font-weight: 700;
}

.brand-strip {
  background: linear-gradient(120deg, rgba(17, 35, 33, 0.92), rgba(31, 47, 45, 0.92));
}

.brand-strip p {
  color: #d6dfdb;
}

.hero-illustration {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;
  padding: 0.4rem;
}

.product-illustration {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem;
}

.chip {
  border: 1px solid rgba(21, 32, 31, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;

.testimonial-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(17, 35, 33, 0.14);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 246, 0.82));
  box-shadow: 0 14px 32px rgba(16, 28, 26, 0.08);
}

.testimonial-card p {
  margin-bottom: 1rem;
  color: #17302e;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-card small {
  color: #395653;
}
  font-size: 0.85rem;
  font-weight: 600;
}

.glass-card {
  background: rgba(14, 29, 27, 0.9);

  .trust-grid {
    grid-template-columns: 1fr;
  }
  color: #f5f2ed;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(18, 21, 20, 0.2);
}

.glass-card p,
.glass-card li,
.glass-card small,
.glass-card .text-muted {
  color: #d4ddd8 !important;
}

.price-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  background: linear-gradient(120deg, var(--brand), #f08b3e);
  color: #fff;
  font-weight: 700;
}

.btn-brand {
  border: none;
  color: #fff;
  background: linear-gradient(120deg, var(--brand), #f08b3e);
  font-weight: 700;
}

.btn-brand:hover {
  color: #fff;
  background: linear-gradient(120deg, var(--brand-dark), #d86b2d);
}

.metric-card {
  border-radius: 1rem;
  background: var(--surface);
  color: #fff;
  padding: 1rem;
  border: 1px solid var(--line);
}

.metric-card span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.metric-card strong {
  font-size: 1.5rem;
}

.site-footer {
  margin-top: 3rem;
  background: #112321;
  color: #d8dfdc;
}

.site-footer a {
  color: #f6f3ec;
  text-decoration: none;
}

.address-modal {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #132624;
  color: #f5f2ed;
}

.payment-qr {
  max-width: 260px;
  background: #fff;
  padding: 8px;
}

.legal-page h1,
.legal-page h2 {
  color: #112321;
}

.legal-page h2 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(12px);
}

.reveal-item.is-visible {
  animation: rise 500ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}