/* ==============================
   VARIABLES & BASE STYLES
============================== */
:root {
  --rosa-blush: #E7B1AD;
  --pessego: #F2B89F;
  --rosa-pastel: #F3C9C6;
  --verde: #9AA385;
  --creme: #F6E7E4;
  --marrom: #5A2E22;
  --rosa-vintage: #D79A97;
  --cereja: #DB4A48;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--creme);
  color: var(--marrom);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Modificador para página de confirmação */
body.page-confirmacao {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

/* ==============================
   NAVBAR COMPARTILHADA
============================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(246,231,228,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,177,173,0.3);
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--marrom); text-decoration: none; }
.nav-logo span { color: var(--verde); font-style: italic; font-weight: 400; font-size: 0.9rem; display: block; letter-spacing: 1px; }

.nav-back { display: flex; align-items: center; gap: 8px; color: var(--marrom); text-decoration: none; font-size: 0.88rem; font-weight: 500; opacity: 0.7; transition: opacity 0.2s; }
.nav-back:hover { opacity: 1; }

.cart-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--marrom); color: white;
  padding: 12px 24px; border-radius: 50px; cursor: pointer;
  text-decoration: none; font-size: 0.88rem; font-weight: 500;
  transition: all 0.25s; position: relative;
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,46,34,0.3); }
.cart-count {
  background: var(--cereja); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ==============================
   ESTRUTURAS GERAIS DE PÁGINA
============================== */
.page { max-width: 1000px; margin: 0 auto; padding: 120px 48px 80px; }
.page-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--marrom); margin-bottom: 8px; }
.page-sub { font-family: 'Caveat', cursive; color: var(--rosa-vintage); font-size: 1.1rem; margin-bottom: 48px; }

/* ==============================
   INDEX / HOME
============================== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 48px 80px; position: relative; overflow: hidden; }
.hero-blob1 { position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(231,177,173,0.4) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-blob2 { position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(154,163,133,0.25) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-content { display: flex; align-items: center; gap: 80px; max-width: 1100px; width: 100%; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-tag { display: inline-block; background: var(--rosa-pastel); color: var(--marrom); font-size: 0.75rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 700; color: var(--marrom); line-height: 1.0; margin-bottom: 8px; opacity: 0; animation: fadeUp 0.6s ease 0.3s forwards; }
.hero-subtitle { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--verde); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.6s ease 0.4s forwards; }
.hero-slogan { font-family: 'Caveat', cursive; font-size: clamp(1.2rem, 2.5vw, 1.6rem); color: var(--rosa-vintage); opacity: 0; animation: fadeUp 0.6s ease 0.5s forwards; }

.hero-image { flex: 0 0 420px; display: flex; align-items: center; justify-content: center; position: relative; opacity: 0; animation: fadeIn 0.8s ease 0.5s forwards; }
.hero-circle { width: 380px; height: 380px; background: radial-gradient(circle at 40% 40%, var(--pessego), var(--rosa-blush)); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: 0 24px 60px rgba(231,177,173,0.5); }
.hero-fox { width: 300px; height: auto; animation: float 4s ease-in-out infinite; }
.sparkle { position: absolute; font-size: 1.2rem; animation: sparkle 2.5s ease-in-out infinite; }
.sparkle:nth-child(1) { top: 10%; right: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 25%; left: 8%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 20%; right: 10%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 10%; left: 20%; animation-delay: 1.5s; }

.delivery-badge { position: absolute; bottom: 20px; right: -20px; background: white; border-radius: 16px; padding: 14px 20px; box-shadow: 0 8px 32px rgba(90,46,34,0.15); display: flex; align-items: center; gap: 12px; font-size: 0.82rem; font-weight: 500; color: var(--marrom); animation: float 4s ease-in-out 1s infinite; }
.badge-dot { width: 10px; height: 10px; background: var(--verde); border-radius: 50%; box-shadow: 0 0 0 3px rgba(154,163,133,0.3); }

/* COMBOS */
.combos { padding: 100px 48px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { font-family: 'Caveat', cursive; font-size: 1.1rem; color: var(--rosa-vintage); margin-bottom: 8px; }
.section-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(2rem, 4vw, 3rem); color: var(--verde); font-weight: 400; }

.combos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.combo-card { background: white; border-radius: 28px; padding: 36px 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s; overflow: hidden; }
.combo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--rosa-blush); }
.combo-card.destaque::before { background: var(--cereja); }
.combo-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(90,46,34,0.12); }
.combo-card.destaque { background: linear-gradient(145deg, #fff 0%, #FFF5F4 100%); box-shadow: 0 8px 32px rgba(219,74,72,0.12); transform: scale(1.03); }
.combo-card.destaque:hover { transform: scale(1.03) translateY(-8px); }

.combo-badge { position: absolute; top: 20px; right: 20px; background: var(--cereja); color: white; font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; }
.combo-emoji { width: 44px; height: auto; margin-bottom: 12px; display: block; }
.combo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--marrom); margin-bottom: 4px; }
.combo-persons { font-size: 0.78rem; color: var(--rosa-vintage); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 16px; }

/* PEÇAS NO COMBO */
.combo-pecas-list { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; }
.peca-item { background: var(--creme); border-radius: 12px; padding: 10px 14px; }
.peca-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.peca-name { font-size: 0.85rem; font-weight: 600; color: var(--marrom); }
.peca-qty { font-size: 0.75rem; color: var(--verde); font-weight: 600; }
.peca-ingredientes { font-size: 0.73rem; color: #888; }

.combo-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.combo-price-block .combo-qtd { font-size: 0.75rem; color: var(--verde); font-weight: 600; letter-spacing: 0.5px; }
.combo-price-block .combo-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--marrom); }

.add-btn { background: var(--cereja); color: white; border: none; padding: 12px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: all 0.25s; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.add-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(219,74,72,0.35); }
.add-btn.verde { background: var(--verde); }
.add-btn.verde:hover { box-shadow: 0 6px 20px rgba(154,163,133,0.4); }
.add-btn.added { background: var(--marrom); }

/* SOBRE */
.sobre { padding: 100px 48px; background: var(--marrom); position: relative; overflow: hidden; }
.sobre-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.sobre-fox { width: 120px; height: auto; flex: 0 0 auto; margin: 0 auto; animation: float 4s ease-in-out infinite; }
.sobre-text { flex: 1; }
.sobre-tag { font-family: 'Caveat', cursive; font-size: 1.1rem; color: var(--rosa-blush); margin-bottom: 12px; display: block; }
.sobre-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.5rem); color: white; margin-bottom: 24px; line-height: 1.2; }
.sobre-body { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 36px; }
.sobre-pilares { display: flex; gap: 20px; flex-wrap: wrap; }
.pilar { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 12px 20px; font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }

/* FOOTER */
footer { background: #3D1A10; padding: 56px 48px 36px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 4px; }
.footer-brand .brand-sub { font-family: 'Playfair Display', serif; font-style: italic; color: var(--verde); font-size: 0.9rem; }
.footer-brand .slogan { font-family: 'Caveat', cursive; color: var(--rosa-blush); font-size: 1rem; margin-top: 12px; }
.footer-links h4 { color: white; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--rosa-blush); }
.footer-entrega { background: rgba(255,255,255,0.06); border-radius: 16px; padding: 20px 24px; }
.footer-entrega h4 { color: white; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.entrega-item { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 0.85rem; }
.entrega-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.entrega-dot.verde { background: var(--verde); }
.entrega-dot.rosa { background: var(--rosa-blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* TOAST */
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--marrom); color: white; padding: 14px 28px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; z-index: 999; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); pointer-events: none; white-space: nowrap; }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ==============================
   SACOLA & CHECKOUT COMPARTILHADOS 
============================== */
.sacola-grid, .checkout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }

.resumo { background: white; border-radius: 24px; padding: 28px; box-shadow: 0 4px 20px rgba(90,46,34,0.06); position: sticky; top: 100px; }
.resumo-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--marrom); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--rosa-pastel); }
.resumo-linha, .resumo-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; font-size: 0.85rem; }
.resumo-linha .label, .resumo-item .label { color: #888; max-width: 180px; }
.resumo-linha .value, .resumo-item .value { color: var(--marrom); font-weight: 500; text-align: right; }
.resumo-divider { height: 1px; background: var(--rosa-pastel); margin: 12px 0; }
.resumo-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-top: 16px; border-top: 2px solid var(--rosa-pastel); margin-top: 8px; }
.resumo-total .label { font-weight: 600; color: var(--marrom); }
.resumo-total .value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--marrom); }

.entrega-info { background: var(--creme); border-radius: 12px; padding: 14px 16px; margin-bottom: 24px; font-size: 0.82rem; }
.entrega-info .ei-title { font-weight: 600; color: var(--marrom); margin-bottom: 4px; }
.entrega-info .ei-sub { color: #888; }

.btn-finalizar { width: 100%; background: var(--cereja); color: white; border: none; padding: 18px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.25s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.btn-finalizar:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(219,74,72,0.35); }
.btn-finalizar:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.whats-note { font-size: 0.72rem; color: #aaa; text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ==============================
   SACOLA 
============================== */
.itens-list { display: flex; flex-direction: column; gap: 20px; }
.combo-item { background: white; border-radius: 24px; padding: 28px; box-shadow: 0 4px 20px rgba(90,46,34,0.06); }
.combo-item-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.combo-item-info { display: flex; align-items: center; gap: 14px; }
.combo-item-emoji { width: 40px; height: auto; display: block; }
.combo-item-nome { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--marrom); }
.combo-item-pecas { font-size: 0.78rem; color: var(--verde); font-weight: 600; }
.combo-item-preco { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--marrom); }
.remove-combo { background: none; border: none; color: var(--rosa-vintage); font-size: 0.78rem; cursor: pointer; padding: 6px 12px; border-radius: 20px; border: 1px solid var(--rosa-pastel); transition: all 0.2s; }
.remove-combo:hover { background: var(--rosa-pastel); color: var(--marrom); }

/* Peças sacola */
.pecas-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); margin-bottom: 12px; }
.peca-row { background: var(--creme); border-radius: 14px; padding: 14px 16px; margin-bottom: 10px; }
.peca-row-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.peca-row-name { font-size: 0.88rem; font-weight: 600; color: var(--marrom); }
.peca-row-qty { font-size: 0.78rem; color: var(--verde); font-weight: 600; }
.ingredientes-list { display: flex; flex-wrap: wrap; gap: 6px; }
.ing-tag { display: flex; align-items: center; gap: 5px; background: white; border: 1px solid var(--rosa-pastel); border-radius: 50px; padding: 4px 12px; font-size: 0.73rem; color: var(--marrom); cursor: pointer; transition: all 0.2s; user-select: none; }
.ing-tag:hover { border-color: var(--cereja); }
.ing-tag.removed { background: var(--rosa-pastel); color: var(--rosa-vintage); text-decoration: line-through; border-color: var(--rosa-pastel); opacity: 0.6; }
.ing-tag .ing-x { font-size: 0.8rem; color: var(--cereja); font-weight: 700; }
.ing-tag.removed .ing-x { display: none; }
.obs-removidos { font-size: 0.72rem; color: var(--cereja); margin-top: 8px; font-style: italic; }

/* Sacola vazia */
.empty-state { text-align: center; padding: 80px 40px; }
.empty-fox { width: 80px; height: auto; display: block; margin: 0 auto 20px auto; opacity: 0.8; }
.empty-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--marrom); margin-bottom: 8px; }
.empty-sub { color: var(--rosa-vintage); font-size: 0.9rem; margin-bottom: 28px; }
.btn-voltar { display: inline-block; background: var(--cereja); color: white; padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 500; transition: all 0.25s; }
.btn-voltar:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(219,74,72,0.3); }

/* ==============================
   CHECKOUT 
============================== */
.steps { display: flex; gap: 0; margin-bottom: 36px; }
.step { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 600; color: rgba(90,46,34,0.35); }
.step.active { color: var(--marrom); }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--rosa-pastel); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 700; color: var(--marrom); }
.step.active .step-num { background: var(--cereja); color: white; }
.step-divider { width: 40px; height: 2px; background: var(--rosa-pastel); margin: 0 8px; align-self: center; }

/* Formulário Checkout */
.form-section { background: white; border-radius: 24px; padding: 28px; box-shadow: 0 4px 20px rgba(90,46,34,0.06); margin-bottom: 20px; }
.form-section-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--marrom); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--marrom); letter-spacing: 0.5px; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--rosa-pastel); border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--marrom); background: var(--creme); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--rosa-blush); background: white; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Opções de Entrega / Pagamento */
.tipo-entrega { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.tipo-opt { border: 2px solid var(--rosa-pastel); border-radius: 14px; padding: 16px; cursor: pointer; transition: all 0.2s; text-align: center; }
.tipo-opt:hover { border-color: var(--rosa-blush); }
.tipo-opt.selected { border-color: var(--cereja); background: #FFF5F4; }
.tipo-opt .tipo-icon { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.tipo-opt .tipo-label { font-size: 0.85rem; font-weight: 600; color: var(--marrom); display: block; }
.tipo-opt .tipo-sub { font-size: 0.72rem; color: #888; }

.pagamento-opts { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.pag-opt { border: 2px solid var(--rosa-pastel); border-radius: 12px; padding: 14px; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 10px; }
.pag-opt:hover { border-color: var(--rosa-blush); }
.pag-opt.selected { border-color: var(--cereja); background: #FFF5F4; }
.pag-opt .pag-icon { font-size: 1.3rem; }
.pag-opt .pag-label { font-size: 0.85rem; font-weight: 600; color: var(--marrom); display: block; }
.pag-opt .pag-sub { font-size: 0.72rem; color: #888; }

.troco-field { margin-top: 14px; display: none; }
.troco-field.show { display: block; }

/* ==============================
   CONFIRMAÇAO PADRÃO (Card)
============================== */
.confetti-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; overflow: hidden; z-index: 0; }
.confetti { position: absolute; width: 10px; height: 10px; border-radius: 2px; animation: confettiFall linear forwards; opacity: 0.8; }

.card { background: white; border-radius: 32px; padding: 56px 48px; max-width: 560px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(90,46,34,0.12); position: relative; z-index: 1; animation: popIn 0.6s cubic-bezier(0.34,1.56,0.64,1); }
.status-icon { font-size: 72px; margin-bottom: 16px; display: block; animation: bounce 1s ease 0.5s; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; background: #E8F5E9; color: #2E7D32; font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; }
.status-dot { width: 8px; height: 8px; background: #4CAF50; border-radius: 50%; animation: pulse-green 1.5s ease-in-out infinite; }

.card h1 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--marrom); margin-bottom: 8px; }
.card .sub { font-family: 'Caveat', cursive; font-size: 1.2rem; color: var(--rosa-vintage); margin-bottom: 32px; }

.info-box { background: var(--creme); border-radius: 16px; padding: 20px; margin-bottom: 24px; text-align: left; }
.info-box-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--verde); margin-bottom: 12px; }
.info-linha { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; font-size: 0.85rem; }
.info-linha:last-child { margin-bottom: 0; }
.info-linha .label { color: #888; }
.info-linha .value { color: var(--marrom); font-weight: 500; text-align: right; max-width: 240px; }

.steps-status { display: flex; gap: 0; justify-content: center; margin-bottom: 32px; }
.sstep { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sstep-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.sstep-icon.done { background: var(--verde); color: white; }
.sstep-icon.active { background: var(--cereja); animation: pulse-red 1.5s ease-in-out infinite; color: white;}
.sstep-icon.pending { background: var(--rosa-pastel); }
.sstep-label { font-size: 0.7rem; font-weight: 600; color: var(--marrom); text-align: center; }
.sstep-line { width: 50px; height: 2px; background: var(--rosa-pastel); align-self: center; margin-top: -18px; }
.sstep-line.done { background: var(--verde); }

.btn-whats { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: #25D366; color: white; border: none; padding: 18px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.25s; text-decoration: none; margin-bottom: 12px; }
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); }
.btn-novo { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: transparent; color: var(--marrom); border: 2px solid var(--rosa-pastel); padding: 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.btn-novo:hover { border-color: var(--rosa-blush); background: var(--creme); }

.slogan { font-family: 'Caveat', cursive; font-size: 1rem; color: var(--rosa-blush); margin-top: 24px; }

/* ==============================
   ANIMATIONS & MEDIA QUERIES
============================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes sparkle { 0%,100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes popIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 40% { transform: translateY(-20px); } 60% { transform: translateY(-10px); } }
@keyframes pulse-green { 0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.4); } 50% { box-shadow: 0 0 0 8px rgba(76,175,80,0); } }
@keyframes pulse-red { 0%,100% { box-shadow: 0 0 0 0 rgba(219,74,72,0.4); } 50% { box-shadow: 0 0 0 8px rgba(219,74,72,0); } }
@keyframes confettiFall { 0% { transform: translateY(-20px) rotate(0deg); opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } }

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-content { flex-direction: column; text-align: center; gap: 48px; }
  .hero-image { flex: unset; }
  .hero-circle { width: 260px; height: 260px; }
  .hero-fox { width: 200px; height: auto; }
  .combos { padding: 72px 24px; }
  .combos-grid { grid-template-columns: 1fr; max-width: 420px; }
  .combo-card.destaque { transform: scale(1); }
  .sobre { padding: 72px 24px; }
  .sobre-inner { flex-direction: column; text-align: center; gap: 40px; }
  .sobre-pilares { justify-content: center; }
  footer { padding: 48px 24px 28px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 800px) {
  .page { padding: 100px 24px 60px; }
  .sacola-grid, .checkout-grid { grid-template-columns: 1fr; }
  .resumo { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .pagamento-opts { grid-template-columns: 1fr 1fr; }
}
