/* ============================================
   Pitayas do Léo — Estilos
   Design moderno, acessível e responsivo
   ============================================ */

/* --- Reset e variáveis --- */
:root {
  /* Cores — identidade pitaya: verde (casca) + rosa (polpa) */
  --color-bg: #eef4ee;
  --color-bg-alt: #fdf2f4;
  --color-surface: #ffffff;
  --color-text: #1c1b19;
  --color-text-muted: #5a5652;
  --color-accent: #b53a2e;
  --color-accent-hover: #943128;
  --color-pitaya: #b83852;
  --color-pitaya-rosa: #d4436a;
  --color-pitaya-dark: #8b2d42;
  --color-green: #1e4d32;
  --color-green-light: #2d6b44;
  --color-border: #d8ddd6;
  --color-overlay: rgba(28, 27, 25, 0.55);
  --color-overlay-gradient: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(28, 27, 25, 0.65) 100%);
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20bd5a;
  --color-simulator-bg: #ffffff;
  --color-simulator-border: #1e4d32;
  --color-form-success-bg: #d4edda;
  --color-form-success-text: #155724;
  --color-form-error-bg: #f8d7da;
  --color-form-error-text: #721c24;

  /* Padrão agro (sulcos/terra) */
  --pattern-agro: repeating-linear-gradient(
    -25deg,
    transparent,
    transparent 2px,
    rgba(45, 90, 61, 0.02) 2px,
    rgba(45, 90, 61, 0.02) 4px
  );

  /* Tipografia — mais profissional */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Espaçamento e layout */
  --container: min(92vw, 1280px);
  --section-padding: clamp(3.5rem, 7vw, 6rem);
  --content-max: 72ch;
  --header-height: 80px;
  --conversion-bar-height: 44px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(28, 27, 25, 0.06);
  --shadow-hover: 0 8px 28px rgba(28, 27, 25, 0.1);
  --shadow-card: 0 2px 8px rgba(28, 27, 25, 0.06);

  /* Transições */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: linear-gradient(
    180deg,
    #eef4ee 0%,
    #f5f6f2 35%,
    #faf4f6 70%,
    #fdf2f4 100%
  );
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

a:hover {
  color: var(--color-accent-hover);
}

/* --- Barra de conversão (lead → cliente) --- */
.conversion-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--color-pitaya-dark) 0%, var(--color-pitaya) 50%, var(--color-pitaya-rosa) 100%);
  color: #fff;
  padding: 0.6rem 1rem 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(201, 59, 92, 0.4);
  transition: transform var(--duration) var(--ease);
}

.conversion-bar.is-hidden {
  transform: translateY(-100%);
}

.conversion-bar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.conversion-bar__text {
  font-size: 0.95rem;
  font-weight: 500;
}

.conversion-bar__text strong {
  font-weight: 700;
}

.conversion-bar__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: #fff;
  color: var(--color-pitaya);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.conversion-bar__btn:hover {
  background: #f0f0f0;
  color: var(--color-pitaya-dark);
  transform: scale(1.05);
}

.conversion-bar__close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.conversion-bar__close:hover {
  color: #fff;
}

/* Header desce quando barra de conversão está visível */
body.show-conversion-bar .header {
  top: 44px;
}

body.show-conversion-bar main {
  padding-top: 0;
}

body.conversion-bar-closed .header {
  top: 0;
}

body.conversion-bar-closed .conversion-bar {
  display: none;
}

/* --- Acessibilidade --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--color-accent);
  color: white;
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--duration) var(--ease);
}

.skip-link:focus {
  top: 1rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(238, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 0 0 rgba(45, 90, 61, 0.08);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity var(--duration) var(--ease);
}

.logo:hover .logo__img {
  opacity: 0.9;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__list a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__list a:hover {
  color: var(--color-green);
}

.nav__list a.nav__link--active {
  color: var(--color-pitaya-rosa);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease), visibility var(--duration);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav__list a {
    display: block;
    padding: 0.75rem;
  }
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Páginas de login / auth --- */
.auth-page {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  min-height: calc(100vh - var(--header-height) - 140px);
  display: flex;
  align-items: center;
}

.auth-page__container {
  max-width: 440px;
  width: 100%;
}

.auth-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 4px 20px rgba(28, 27, 25, 0.06);
}

.auth-card__title {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.auth-card__lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.auth-card__error,
.auth-card__message {
  margin-bottom: 1.25rem;
}

.auth-card__form {
  margin-bottom: 0;
}

.auth-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.auth-card__remember {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.auth-card__link-wrap {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.auth-card__link-wrap a,
.auth-card__back a {
  color: var(--color-text-muted);
}

.auth-card__link-wrap a:hover,
.auth-card__back a:hover {
  color: var(--color-green);
}

.auth-card__back {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}

/* --- Modal Entrar / Cadastrar --- */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 27, 25, 0.5);
  cursor: pointer;
}

.auth-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(28, 27, 25, 0.2);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.auth-modal__box--register {
  max-width: 560px;
  max-height: 90vh;
}

.auth-modal__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--color-border);
  padding: 0 1rem 0 1.5rem;
  flex-shrink: 0;
}

.auth-modal__tabs-inner {
  display: flex;
}

.auth-modal__close {
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  flex-shrink: 0;
}

.auth-modal__close:hover {
  color: var(--color-text);
}

.auth-modal__tab {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.auth-modal__tab:hover {
  color: var(--color-text);
}

.auth-modal__tab.auth-modal__tab--active {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}

.auth-modal__panel {
  padding: 1.5rem 1.5rem 2rem;
  overflow-y: visible;
  flex: 1 1 auto;
}

.auth-modal__box--register .auth-modal__panel {
  overflow-y: auto;
  min-height: 0;
  max-height: calc(90vh - 56px);
}

.auth-modal__panel:not(.auth-modal__panel--active) {
  display: none;
}

.auth-modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.auth-modal__error {
  margin-bottom: 1rem;
}

.auth-modal__form {
  margin-bottom: 0;
}

.auth-modal__form--scroll {
  padding-right: 0.25rem;
}

.auth-modal__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.auth-modal__checkbox {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
  cursor: pointer;
}

.auth-modal__remember {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
}

.auth-modal__link-wrap {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.auth-modal__link-wrap a {
  color: var(--color-text-muted);
}

.auth-modal__link-wrap a:hover {
  color: var(--color-green);
}

.auth-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-modal__grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 520px) {
  .auth-modal__grid--3 {
    grid-template-columns: 1fr;
  }
}

.nav__link--btn {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

/* --- Checkout gate (entrar/cadastrar para finalizar) --- */
.checkout-gate {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  min-height: 50vh;
}

.checkout-gate__container {
  max-width: 480px;
  margin: 0 auto;
}

.checkout-gate__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(28, 27, 25, 0.06);
}

.checkout-gate__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.checkout-gate__lead {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.checkout-gate__summary {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.checkout-gate__summary-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
}

.checkout-gate__list {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.checkout-gate__subtotal {
  margin: 0;
  font-size: 1rem;
}

.checkout-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.checkout-gate__actions .btn {
  flex: 1;
  min-width: 140px;
}

/* --- Trust bar (landing) --- */
.trust-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
  box-shadow: 0 2px 8px rgba(28, 27, 25, 0.04);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.trust-bar__item {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.trust-bar__item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* --- Page header (loja) --- */
.page-header {
  margin-bottom: 2rem;
}

.page-header__breadcrumb {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.page-header__breadcrumb a {
  color: var(--color-text-muted);
}

.page-header__breadcrumb a:hover {
  color: var(--color-green);
}

.page-header__sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.page-header__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* --- Seções --- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--color-bg-alt);
  background-image:
    linear-gradient(135deg, rgba(45, 90, 61, 0.04) 0%, transparent 50%),
    var(--pattern-agro);
  background-size: 100% 100%, 60px 60px;
}

.section[id] {
  scroll-margin-top: calc(var(--header-height) + 0.5rem);
}

/* Divisor agro entre seções */
.section + .section {
  position: relative;
}

.section + .section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-green), transparent);
  opacity: 0.5;
  border-radius: 2px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-green);
  margin-bottom: 0.75rem;
}

.section__tag::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--color-green);
  border-radius: 1px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.section__title--center {
  text-align: center;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  text-align: center;
}

body.show-conversion-bar .hero {
  padding-top: calc(var(--conversion-bar-height) + var(--header-height) + 2rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay-gradient);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__logo {
  height: clamp(110px, 20vw, 180px);
  width: auto;
  max-width: 380px;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  animation: fadeUp 0.8s var(--ease) forwards;
}

.hero__tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero__tag--destaque {
  background: rgba(201, 59, 92, 0.9);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  display: inline-block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero__logo + .hero__tag { animation-delay: 0.05s; }
.hero__title { animation-delay: 0.15s; }
.hero__lead { animation-delay: 0.2s; }
.hero__cta { animation-delay: 0.3s; }
.hero__scroll { animation-delay: 0.5s; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.8s var(--ease) 0.3s both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero__scroll svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll span + svg {
  transform: none;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}

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

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

/* CTA principal: mudas (cor pitaya) */
.btn--mudas {
  background: var(--color-pitaya);
  border-color: var(--color-pitaya);
}

.btn--mudas:hover {
  background: var(--color-pitaya-dark);
  border-color: var(--color-pitaya-dark);
  color: #fff;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
  gap: 0.5rem;
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  border-color: var(--color-whatsapp-hover);
  color: #fff;
}

.btn--block {
  width: 100%;
}

/* --- Sobre / Produção --- */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.sobre__grid--reverse .sobre__media {
  order: 2;
}

.sobre__grid--reverse .sobre__text {
  order: 1;
}

.sobre__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.sobre__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.prose p {
  margin-bottom: 1.1rem;
}

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

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

  .sobre__grid--reverse .sobre__media,
  .sobre__grid--reverse .sobre__text {
    order: unset;
  }
}

/* --- Cards (diferenciais) --- */
.cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-green);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(28, 27, 25, 0.08);
}

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  color: var(--color-green);
}

.card__icon svg {
  width: 40px;
  height: 40px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* --- Produtos (Mudas e Frutas) --- */
.section--produtos {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
}

.produtos__intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 40ch;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.produtos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.produtos__item {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-green);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-align: center;
  position: relative;
}

.produtos__item--destaque {
  border-top-color: var(--color-pitaya);
  border-top-width: 5px;
  box-shadow: 0 8px 32px rgba(201, 59, 92, 0.15);
}

.produtos__item--destaque:hover {
  box-shadow: 0 12px 40px rgba(201, 59, 92, 0.2);
}

.produtos__badge {
  position: absolute;
  top: -10px;
  right: 1.25rem;
  background: var(--color-pitaya);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.produtos__item--frutas {
  border-top-color: var(--color-accent);
}

.produtos__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.produtos__icon {
  color: var(--color-green);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produtos__item--frutas .produtos__icon {
  color: var(--color-accent);
}

.produtos__icon svg {
  width: 56px;
  height: 56px;
}

.produtos__nome {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.produtos__texto {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: var(--content-max);
  margin: 0 auto;
}

.produtos__item--destaque .produtos__icon {
  color: var(--color-pitaya);
}

@media (max-width: 700px) {
  .produtos__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.produtos__grid--loja {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.produtos__preco {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.produtos__preco-unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.produtos__add-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.produtos__qty-input {
  width: 90px;
  padding: 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
}

.produtos__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-muted);
  padding: 3rem;
}

/* Cards estilo e-commerce (loja + landing) */
.produtos__item--store {
  padding: 0;
  overflow: hidden;
  text-align: left;
  border-top-width: 3px;
  display: flex;
  flex-direction: column;
}

.produto-card__thumb {
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--color-bg-alt) 0%, rgba(232, 244, 238, 0.9) 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--color-green);
  font-family: var(--font-display);
  opacity: 0.85;
  margin-bottom: 1rem;
  overflow: hidden;
}

.produto-card__thumb .produto-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-card__thumb--link {
  text-decoration: none;
  color: inherit;
}

.produto-card__thumb--link:hover {
  opacity: 0.92;
}

.produtos__nome-link {
  color: inherit;
  text-decoration: none;
}

.produtos__nome-link:hover {
  color: var(--color-green);
  text-decoration: underline;
}

.produtos__preco--unit {
  font-size: 1.2rem;
}

.produtos__item--store .produtos__nome {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  padding: 0 1.25rem;
}

.produtos__meta {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
}

.produtos__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  padding: 0 1.25rem;
  line-height: 1.45;
  flex-grow: 1;
}

.produtos__item--store .produtos__preco {
  padding: 0 1.25rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.produtos__add-form--stack {
  flex-direction: column;
  padding: 0 1.25rem 1.25rem;
  margin-top: auto;
}

.produtos__add-form--stack .produtos__qty-input {
  width: 100%;
  max-width: 120px;
}

.produtos__add-form--stack .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.produtos__cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .trust-bar__inner {
    gap: 0.75rem;
  }
  .trust-bar__item {
    font-size: 0.85rem;
  }
}

/* --- Página de detalhe do produto --- */
.produto-detalhe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

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

.produto-detalhe__galeria {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

@media (max-width: 900px) {
  .produto-detalhe__galeria {
    position: static;
  }
}

.produto-detalhe__main {
  aspect-ratio: 1;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: 0.75rem;
}

.produto-detalhe__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.produto-detalhe__main--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-green);
  font-family: var(--font-display);
  opacity: 0.8;
}

.produto-detalhe__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.produto-detalhe__thumb {
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.produto-detalhe__thumb:hover,
.produto-detalhe__thumb.is-active {
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(30, 77, 50, 0.2);
}

.produto-detalhe__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produto-detalhe__meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.produto-detalhe__nome {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.produto-detalhe__preco {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 1.25rem;
}

.produto-detalhe__desc {
  margin-bottom: 1.5rem;
  color: var(--color-text);
  line-height: 1.65;
}

.produto-detalhe__form {
  margin-bottom: 1rem;
}

.produto-detalhe__qty {
  margin-bottom: 1rem;
}

.produto-detalhe__qty label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.produto-detalhe__qty input {
  width: 120px;
  padding: 0.6rem 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
}

.produto-detalhe__back {
  font-size: 0.95rem;
}

.produto-detalhe__back a {
  color: var(--color-text-muted);
}

.produto-detalhe__back a:hover {
  color: var(--color-green);
}

/* Paginação (loja e listagens) */
.produtos__pagination,
.pagination {
  margin-top: 2rem;
}

nav .pagination {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav .pagination li {
  display: inline-block;
}

nav .pagination li a,
nav .pagination li span {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

nav .pagination li a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-green);
}

nav .pagination li.active span {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

nav .pagination li.disabled span {
  color: var(--color-text-muted);
  cursor: not-allowed;
  opacity: 0.7;
}

/* --- Simulador de preços --- */
.simulador__intro {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

.simulador__box {
  background: var(--color-simulator-bg);
  border: 2px solid var(--color-simulator-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(30, 77, 50, 0.12);
}

.simulador__form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.simulador__form input[type="number"] {
  width: 100%;
  max-width: 180px;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.simulador__form input[type="number"]:focus {
  outline: none;
  border-color: var(--color-green);
}

.simulador__hint {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.simulador__resultado {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.simulador__preco-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
}

.simulador__preco-unit span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.simulador__desconto {
  font-size: 1rem;
  color: var(--color-pitaya);
  font-weight: 600;
  margin-top: 0.35rem;
}

.simulador__total {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  color: var(--color-text);
}

.simulador__cta {
  display: inline-block;
  margin-top: 1.25rem;
}

.simulador__admin {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.simulador__admin a {
  color: var(--color-text-muted);
}

.simulador__admin a:hover {
  color: var(--color-green);
}

/* --- Galeria --- */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.galeria__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.galeria__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--duration) var(--ease);
}

.galeria__item:hover img {
  transform: scale(1.03);
}

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

/* --- Reportagem em destaque (mídia) --- */
.section--midia {
  background: linear-gradient(180deg, var(--color-pitaya-dark) 0%, var(--color-pitaya) 35%, var(--color-pitaya-rosa) 100%);
  color: #fff;
}

.midia__header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section__tag--light {
  color: rgba(255, 255, 255, 0.95);
}

.section__tag--light::before {
  background: rgba(255, 255, 255, 0.8);
}

.section__title--light {
  color: #fff;
  margin-bottom: 0.75rem;
}

.midia__lead {
  font-size: 1.1rem;
  max-width: 42ch;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

.video-wrapper--destaque {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.midia__cta {
  text-align: center;
  margin-top: 2rem;
}

.midia__cta .btn {
  min-width: 260px;
}

/* --- Vídeo --- */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 56.25%;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Contato --- */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.contato__info .section__title {
  margin-bottom: 1rem;
}

.contato__info > p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contato__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  width: fit-content;
}

.contato__whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.contato__email-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- Formulário --- */
.form {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

.form .btn {
  margin-top: 0.5rem;
}

.form__success {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-form-success-bg);
  color: var(--color-form-success-text);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form__error {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-form-error-bg);
  color: var(--color-form-error-text);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

/* Utilitários: linhas de formulário e layout */
.form__row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__row--2col {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .form__row--2col {
    grid-template-columns: 1fr;
  }
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form__hint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Tabela loja (carrinho, pedidos) */
.table-store {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-store th,
.table-store td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.table-store th {
  font-weight: 600;
  color: var(--color-text-muted);
}

.table-store tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* Simulador na loja */
.simulador__box {
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  margin-bottom: 2rem;
}

.simulador__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.simulador__intro {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.simulador__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.simulador__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.simulador__field select,
.simulador__field input {
  min-width: 220px;
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
}

.simulador__field input[type="number"] {
  min-width: 100px;
  width: 100px;
}

.simulador__result {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.simulador__result[hidden] {
  display: none;
}

/* Título de seção menor */
.section__title--sm {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

/* --- Footer --- */
.footer {
  padding: 2.5rem 0;
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 0;
  border-top: 3px solid var(--color-green);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.95;
}

.footer__copy {
  font-size: 0.9rem;
}

/* --- Carrinho flutuante --- */
.nav-cart-trigger {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-cart-trigger:hover { color: var(--color-green); }
.nav-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--color-pitaya);
  color: #fff;
  border-radius: 999px;
}
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.cart-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--color-surface);
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__title { font-size: 1.25rem; margin: 0; }
.cart-drawer__close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--color-text-muted);
}
.cart-drawer__close-btn:hover { color: var(--color-text); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
}
.cart-drawer__empty {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.cart-drawer__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.cart-drawer__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  gap: 0.25rem;
}
.cart-drawer__item-name { font-weight: 600; }
.cart-drawer__item-meta { font-size: 0.9rem; color: var(--color-text-muted); }
.cart-drawer__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.cart-drawer__footer .btn { margin-bottom: 0.5rem; }
.cart-drawer__footer .btn:last-child { margin-bottom: 0; }
.cart-drawer__subtotal { margin-bottom: 1rem; font-size: 1.1rem; }
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-green);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
  z-index: 102;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cart-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* --- Redução de movimento (acessibilidade) --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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