/* ============================================================
   GREENLAB — STYLE.CSS
   CSS Global: variáveis, reset, tipografia, botões, nav, footer
   ============================================================ */

/* ------------------------------------------------------------
   VARIÁVEIS GLOBAIS
   ------------------------------------------------------------ */
:root {
  --verde:        #3d5a3e;
  --verde-claro:  #5a7d5a;
  --verde-musgo:  #2a3d2a;
  --creme:        #f5f0e8;
  --creme-escuro: #ede6d8;
  --branco:       #faf8f4;
  --texto:        #2a3020;
  --texto-suave:  #5a6350;
  --detalhe:      #c8b99a;

  --fonte-titulo: 'Cormorant Garamond', Georgia, serif;
  --fonte-corpo:  'DM Sans', sans-serif;

  --raio:    2px;
  --raio-lg: 12px;
  --sombra:  0 4px 24px rgba(42, 61, 34, 0.08);

  --nav-height: 72px;
}

/* ------------------------------------------------------------
   RESET
   ------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--branco);
  color: var(--texto);
  font-family: var(--fonte-corpo);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; }

/* ------------------------------------------------------------
   TIPOGRAFIA
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.overline {
  display: block;
  font-family: var(--fonte-corpo);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-claro);
}

/* ------------------------------------------------------------
   BOTÕES
   ------------------------------------------------------------ */
.btn-primary {
  display: inline-block;
  background: var(--verde);
  color: var(--creme);
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--fonte-corpo);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--verde-musgo);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 61, 34, 0.2);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--verde);
  padding: 13px 28px;
  border-radius: 40px;
  border: 1.5px solid var(--verde);
  font-family: var(--fonte-corpo);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: var(--verde);
  color: var(--creme);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--verde);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  cursor: pointer;
  transition: gap 0.2s;
}
.btn-ghost::after { content: '→'; }
.btn-ghost:hover  { gap: 10px; }

/* ------------------------------------------------------------
   SECTION HEADER (padrão reutilizável)
   ------------------------------------------------------------ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-header .overline { margin-bottom: 1rem; }
.section-header h2 { color: var(--verde-musgo); margin-bottom: 1rem; }
.section-header p  { color: var(--texto-suave); font-size: 0.95rem; }

/* ------------------------------------------------------------
   NAVBAR
   ------------------------------------------------------------ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 90, 62, 0.1);
  padding: 0 5%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  color: var(--verde);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  color: var(--texto-suave);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde); }

.nav-cta {
  background: var(--verde) !important;
  color: var(--creme) !important;
  padding: 10px 22px;
  border-radius: 40px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--verde-musgo) !important;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--verde);
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ------------------------------------------------------------
   SELOS (faixa reutilizável)
   ------------------------------------------------------------ */
.selos {
  padding: 60px 8%;
  background: var(--creme-escuro);
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.selo-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(61, 90, 62, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.selo-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
footer {
  background: var(--verde-musgo);
  color: rgba(245, 240, 232, 0.6);
  padding: 60px 8%;
  text-align: left;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.footer-brand-text {
  font-family: var(--fonte-titulo);
  font-size: 1.4rem;
  color: var(--creme);
}
.footer-tagline { font-size: 0.85rem; line-height: 1.7; }
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--detalhe);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--creme); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
}
.footer-bottom a { color: rgba(245, 240, 232, 0.4); }

/* ------------------------------------------------------------
   ANIMAÇÕES GLOBAIS
   ------------------------------------------------------------ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.animate-fadein    { animation: fadeUp 0.7s 0.00s ease both; }
.animate-fadein-d1 { animation: fadeUp 0.7s 0.10s ease both; }
.animate-fadein-d2 { animation: fadeUp 0.7s 0.20s ease both; }
.animate-fadein-d3 { animation: fadeUp 0.7s 0.35s ease both; }
.animate-fadein-d4 { animation: fadeUp 0.7s 0.50s ease both; }
.float-anim        { animation: float 4s ease-in-out infinite; }

/* ------------------------------------------------------------
   RESPONSIVO GLOBAL
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(61, 90, 62, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(61, 90, 62, 0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .selos        { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

    :root {
      --verde:        #3d5a3e;
      --verde-claro:  #5a7d5a;
      --verde-musgo:  #2a3d2a;
      --creme:        #f5f0e8;
      --creme-escuro: #ede6d8;
      --branco:       #faf8f4;
      --texto:        #2a3020;
      --texto-suave:  #5a6350;
      --detalhe:      #c8b99a;
      --fonte-titulo: 'Cormorant Garamond', Georgia, serif;
      --fonte-corpo:  'DM Sans', sans-serif;
      --nav-height:   72px;
    }
 
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--creme);
      color: var(--texto);
      font-family: var(--fonte-corpo);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
 
    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(245,240,232,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(61,90,62,0.1);
      padding: 0 5%; height: var(--nav-height);
      display: flex; align-items: center; justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo-text { font-family: var(--fonte-titulo); font-size: 1.5rem; color: var(--verde); }
    .nav-links { display: flex; list-style: none; gap: 2.5rem; }
    .nav-links a { color: var(--texto-suave); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--verde); }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--verde); transition: all 0.3s; }
 
    /* PAGE LAYOUT */
    .compra-page {
      min-height: 100vh;
      padding-top: var(--nav-height);
      display: grid;
      grid-template-columns: 1fr 1.1fr;
    }
 
    /* LEFT PANEL */
    .compra-visual {
      background: var(--verde-musgo);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 10%;
    }
    .compra-visual::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      pointer-events: none;
    }
    .compra-visual::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,0.02);
      pointer-events: none;
    }
 
    .visual-overline {
      display: block;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--detalhe);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }
    .visual-title {
      font-family: var(--fonte-titulo);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      color: var(--creme);
      line-height: 1.15;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .visual-title em { font-style: italic; color: var(--detalhe); }
    .visual-desc {
      font-size: 0.88rem;
      color: rgba(245,240,232,0.55);
      line-height: 1.8;
      max-width: 380px;
      margin-bottom: 3rem;
      animation: fadeUp 0.6s 0.3s ease both;
    }
 
    /* Produto card no painel esquerdo */
    .produto-resumo {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(245,240,232,0.1);
      border-radius: 16px;
      padding: 1.75rem;
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .produto-resumo-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .produto-resumo-icon {
      width: 48px; height: 48px;
      border-radius: 12px;
      background: rgba(245,240,232,0.08);
      border: 1px solid rgba(245,240,232,0.12);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .produto-resumo-nome {
      font-family: var(--fonte-titulo);
      font-size: 1.15rem;
      color: var(--creme);
      line-height: 1.3;
    }
    .produto-resumo-sub {
      font-size: 0.72rem;
      color: rgba(245,240,232,0.45);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-top: 2px;
    }
    .produto-resumo-divider {
      border: none;
      border-top: 1px solid rgba(245,240,232,0.08);
      margin: 1.25rem 0;
    }
    .produto-resumo-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .produto-resumo-tag {
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.5);
      border: 1px solid rgba(245,240,232,0.12);
      padding: 4px 10px;
      border-radius: 40px;
    }
 
    /* Garantias */
    .garantias {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      margin-top: 2rem;
      animation: fadeUp 0.6s 0.5s ease both;
    }
    .garantia-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.82rem;
      color: rgba(245,240,232,0.5);
    }
    .garantia-item svg { flex-shrink: 0; opacity: 0.6; }
 
    /* RIGHT PANEL — FORM */
    .compra-form-panel {
      background: var(--branco);
      padding: 80px 8%;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .form-panel-header {
      margin-bottom: 2.5rem;
      animation: fadeUp 0.6s 0.15s ease both;
    }
    .form-panel-header .overline {
      display: block;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--verde-claro);
      margin-bottom: 0.75rem;
    }
    .form-panel-header h2 {
      font-family: var(--fonte-titulo);
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      color: var(--verde-musgo);
      font-weight: 400;
      margin-bottom: 0.5rem;
    }
    .form-panel-header p {
      font-size: 0.85rem;
      color: var(--texto-suave);
    }
 
    /* Steps indicator */
    .steps-bar {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }
    .step-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--texto-suave);
      opacity: 0.4;
      transition: opacity 0.3s;
    }
    .step-item.active { opacity: 1; color: var(--verde); }
    .step-item.done { opacity: 0.7; color: var(--verde-claro); }
    .step-num {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1.5px solid currentColor;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem;
      font-weight: 500;
      flex-shrink: 0;
    }
    .step-item.active .step-num {
      background: var(--verde);
      border-color: var(--verde);
      color: white;
    }
    .step-item.done .step-num {
      background: var(--verde-claro);
      border-color: var(--verde-claro);
      color: white;
    }
    .step-line {
      flex: 1;
      height: 1px;
      background: rgba(61,90,62,0.15);
      margin: 0 0.75rem;
    }
 
    /* Quantity + price block */
    .quantidade-preco {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.25s ease both;
    }
    .qty-box {
      background: var(--creme);
      border: 1px solid rgba(61,90,62,0.12);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
    }
    .qty-box label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--verde-claro);
      margin-bottom: 0.75rem;
    }
    .qty-controls {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .qty-btn {
      width: 32px; height: 32px;
      border-radius: 50%;
      border: 1.5px solid rgba(61,90,62,0.25);
      background: none;
      color: var(--verde);
      font-size: 1.1rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .qty-btn:hover { background: var(--verde); color: white; border-color: var(--verde); }
    .qty-value {
      font-family: var(--fonte-titulo);
      font-size: 1.6rem;
      color: var(--verde-musgo);
      min-width: 24px;
      text-align: center;
    }
 
    .total-box {
      background: var(--verde-musgo);
      border-radius: 12px;
      padding: 1.25rem 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .total-label {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.5);
      margin-bottom: 0.5rem;
    }
    .total-valor {
      font-family: var(--fonte-titulo);
      font-size: 2rem;
      color: var(--creme);
      line-height: 1;
    }
    .total-por { font-size: 0.72rem; color: rgba(245,240,232,0.4); margin-top: 4px; }
 
    /* Payment */
    .payment-section {
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.3s ease both;
    }
    .payment-label-title {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--verde-claro);
      margin-bottom: 0.85rem;
    }
    .payment-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }
    .payment-option {
      cursor: pointer;
    }
    .payment-option input[type="radio"] { display: none; }
    .payment-card {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.85rem 1rem;
      border: 1.5px solid rgba(61,90,62,0.15);
      border-radius: 10px;
      font-size: 0.82rem;
      color: var(--texto-suave);
      background: var(--branco);
      transition: all 0.2s;
    }
    .payment-option input:checked + .payment-card {
      border-color: var(--verde);
      background: rgba(61,90,62,0.05);
      color: var(--verde);
    }
    .payment-card svg { flex-shrink: 0; }
 
    /* Form fields */
    .form-fields {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.35s ease both;
    }
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--verde-claro);
    }
    .form-input {
      padding: 0.85rem 1rem;
      border: 1.5px solid rgba(61,90,62,0.15);
      border-radius: 10px;
      background: var(--branco);
      color: var(--texto);
      font-family: var(--fonte-corpo);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-input:focus {
      border-color: var(--verde);
      box-shadow: 0 0 0 3px rgba(61,90,62,0.08);
    }
    .form-input::placeholder { color: rgba(90,99,80,0.4); }
 
    /* Submit */
    .submit-area {
      animation: fadeUp 0.6s 0.4s ease both;
    }
    .btn-submit {
      width: 100%;
      padding: 16px;
      background: var(--verde);
      color: var(--creme);
      border: none;
      border-radius: 50px;
      font-family: var(--fonte-corpo);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .btn-submit:hover {
      background: var(--verde-musgo);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(42,61,34,0.22);
    }
    .purchase-note {
      font-size: 0.75rem;
      color: var(--texto-suave);
      text-align: center;
      opacity: 0.6;
      line-height: 1.6;
    }
 
    /* FOOTER */
    footer {
      background: var(--verde-musgo);
      color: rgba(245,240,232,0.6);
      padding: 60px 8%;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(245,240,232,0.1);
      margin-bottom: 2rem;
    }
    .footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
    .footer-brand-text { font-family: var(--fonte-titulo); font-size: 1.4rem; color: var(--creme); }
    .footer-tagline { font-size: 0.85rem; line-height: 1.7; }
    .footer-col-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--detalhe); margin-bottom: 1rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links a { color: rgba(245,240,232,0.5); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--creme); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem; }
    .footer-bottom a { color: rgba(245,240,232,0.4); text-decoration: none; }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* RESPONSIVE */
  @media (max-width: 900px) {
  .compra-page {
    grid-template-columns: 1fr;
  }
  .compra-visual {
    display: none; /* esconde o painel esquerdo no mobile */
  }
  .compra-form-panel {
    padding: 48px 6% 60px;
    min-height: calc(100vh - var(--nav-height));
    justify-content: flex-start;
  }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(245,240,232,0.98);
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 5%;
    border-bottom: 1px solid rgba(61,90,62,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(61,90,62,0.08);
  }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .quantidade-preco { grid-template-columns: 1fr; }
}
