:root {
  --creme: #FDF6EE;
  --branco: #FFFFFF;
  --rosa: #F6E3D8;
  --rosa-forte: #EECAB4;
  --texto: #3A2A22;
  --texto-suave: #7A6458;
  --marrom: #4A2E24;
  --bordo: #8C3A2B;
  --bordo-escuro: #6D2A1F;
  --caramelo: #C08A50;
  --sombra: 0 10px 30px rgba(74, 46, 36, 0.12);
  --sombra-lg: 0 20px 50px rgba(74, 46, 36, 0.2);
  --raio: 20px;
  --wa: #25D366;
  --wa-escuro: #1DA851;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--texto);
  background: var(--creme);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--marrom);
  line-height: 1.15;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bordo);
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(135deg, var(--bordo), var(--bordo-escuro));
  color: #fff;
  box-shadow: 0 8px 20px rgba(140, 58, 43, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(140, 58, 43, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--branco);
  color: var(--bordo);
  border: 2px solid var(--bordo);
}

.btn-outline:hover {
  background: var(--rosa);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rosa);
}

.header-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordo), var(--bordo-escuro));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--sombra);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--bordo);
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.nav {
  display: flex;
  gap: 6px;
}

.nav-link {
  font-weight: 700;
  color: var(--texto);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-link:hover {
  background: var(--rosa);
  color: var(--bordo);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rosa);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--bordo);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--branco);
  border-bottom: 1px solid var(--rosa);
  box-shadow: var(--sombra);
  padding: 6px 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 24px;
  font-weight: 800;
  color: var(--bordo);
  border-bottom: 1px solid var(--rosa);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: var(--creme);
}

.cart-btn {
  position: relative;
  background: var(--bordo);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 16px rgba(140, 58, 43, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}

.cart-btn:hover {
  background: var(--bordo-escuro);
}

.cart-btn:active {
  transform: scale(0.92);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--caramelo);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.cart-count.hidden {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(192, 138, 80, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, var(--rosa) 0%, var(--creme) 60%, var(--creme) 100%);
  padding: 72px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  width: min(760px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--branco);
  color: var(--bordo);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: var(--sombra);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--bordo);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto-suave);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-emojis {
  margin-top: 40px;
  font-size: 2rem;
  letter-spacing: 10px;
  opacity: 0.8;
}

/* ---------- Strip ---------- */
.strip {
  background: var(--bordo);
  padding: 26px 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.strip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #fff;
}

.strip-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.strip-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2px;
}

.strip-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Sections ---------- */
.loja,
.cardapio {
  padding: 70px 0 40px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.section-head p {
  font-weight: 600;
  color: var(--texto-suave);
  margin-bottom: 22px;
}

.pill {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--bordo);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  vertical-align: middle;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter {
  background: var(--branco);
  border: 2px solid var(--rosa-forte);
  color: var(--bordo);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.15s ease;
}

.filter:hover {
  background: var(--rosa);
}

.filter.active {
  background: var(--bordo);
  color: #fff;
  border-color: var(--bordo);
}

/* ---------- Grid / cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.card {
  background: var(--branco);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-art {
  aspect-ratio: 1 / 0.9;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: linear-gradient(160deg, var(--rosa), var(--rosa-forte));
}

.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-cat {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bordo);
  opacity: 0.7;
}

.card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--texto);
}

.card-desc {
  font-size: 0.82rem;
  color: var(--texto-suave);
  flex: 1;
}

.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.card-price {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bordo);
}

.add-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bordo);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(140, 58, 43, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}

.add-btn:hover {
  background: var(--bordo-escuro);
}

.add-btn:active {
  transform: scale(0.85);
}

/* pavês: card com seletor de tamanho */
.empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  font-weight: 700;
  color: var(--texto-suave);
  padding: 30px 0;
}

.card-select {
  width: 100%;
  padding: 9px 12px;
  border: 2px solid var(--rosa-forte);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--creme);
  color: var(--texto);
  outline: none;
  cursor: pointer;
}

.card-select:focus {
  border-color: var(--bordo);
}

/* Monte seu pavê */
.monte-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--bordo), var(--bordo-escuro));
  color: #fff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--sombra-lg);
}

.monte-cta h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.monte-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Pavês de mesa */
.paves-mesa {
  margin-top: 36px;
  background: var(--rosa);
  border-radius: 24px;
  padding: 28px 32px;
  text-align: center;
}

.paves-mesa h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pmesa-desc {
  font-weight: 600;
  color: var(--texto-suave);
  margin-bottom: 16px;
}

.pmesa-nota {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bordo);
  margin: 14px 0 18px;
}

.paves-mesa .btn {
  margin-top: 4px;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.paves-mesa .chips {
  justify-content: center;
}

.chip {
  background: var(--branco);
  border: 1px solid var(--rosa-forte);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--texto);
}

/* Banner bolo */
.bolo-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--bordo), var(--bordo-escuro));
  color: #fff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: var(--sombra-lg);
}

.bolo-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.bolo-emoji {
  font-size: 3rem;
  flex-shrink: 0;
}

.bolo-head h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.bolo-head p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
}

.bolo-banner .chips {
  justify-content: flex-start;
}

.bolo-banner .chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.bolo-banner .chip:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bolo-banner .chip.selected {
  background: var(--caramelo);
  border-color: var(--caramelo);
  color: #fff;
  box-shadow: 0 6px 14px rgba(192, 138, 80, 0.4);
}

/* Montador de bolo */
.bolo-builder .bolo-head {
  margin-bottom: 28px;
}

.bolo-passos {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 26px;
}

.builder-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.builder-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--caramelo);
}

.builder-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  resize: vertical;
}

.builder-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.builder-input:focus {
  border-color: var(--caramelo);
}

.builder-resumo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.builder-resumo-linhas {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}

.builder-resumo-preco {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--caramelo);
}

.builder-note {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 14px;
  text-align: center;
}

/* Presentes */
.presentes {
  padding: 70px 0;
}

.card-extra {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bordo);
  background: var(--rosa);
  border-radius: 10px;
  padding: 10px 12px;
}

.presentes .card-body .btn {
  margin-top: 6px;
}

/* Sobre */
.sobre {
  padding: 70px 0;
  background:
    radial-gradient(700px 350px at 10% 10%, rgba(192, 138, 80, 0.14) 0%, transparent 55%),
    var(--branco);
  border-top: 1px solid var(--rosa);
  border-bottom: 1px solid var(--rosa);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 44px;
  align-items: center;
}

.sobre-art {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--rosa), var(--rosa-forte));
  display: grid;
  place-items: center;
  font-size: 6.5rem;
  box-shadow: var(--sombra);
}

.sobre-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}

.sobre-text > p {
  font-weight: 600;
  color: var(--texto-suave);
  margin-bottom: 14px;
}

.sobre-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mvv-card {
  background: var(--creme);
  border: 1px solid var(--rosa);
  border-radius: 16px;
  padding: 16px;
}

.mvv-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bordo);
  margin-bottom: 8px;
}

.mvv-card p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto-suave);
}

.mvv-card ul {
  list-style: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texto-suave);
}

.mvv-card ul li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.mvv-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--caramelo);
}

/* Entrega */
.entrega {
  padding: 70px 0;
}

.entrega-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.entrega-card {
  background: var(--branco);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sombra);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.entrega-emoji {
  font-size: 2rem;
  flex-shrink: 0;
}

.entrega-card h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--bordo);
  margin-bottom: 4px;
}

.entrega-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--texto-suave);
}

.entrega-regras {
  grid-column: 1 / -1;
  list-style: none;
  background: var(--rosa);
  border-radius: 18px;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entrega-regras li {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--texto);
  position: relative;
  padding-left: 22px;
}

.entrega-regras li::before {
  content: "🛵";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ---------- Franquia ---------- */
.franquia {
  padding: 70px 0;
}

.franquia-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  background: var(--branco);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--sombra);
}

.franquia-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.franquia-text p {
  color: var(--texto-suave);
  font-weight: 600;
  margin-bottom: 24px;
}

.franquia-art {
  display: grid;
  place-items: center;
  font-size: 6rem;
  background: linear-gradient(160deg, var(--rosa), var(--rosa-forte));
  border-radius: 50%;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  box-shadow: var(--sombra);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--marrom);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordo), var(--bordo-escuro));
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.footer-brand p {
  font-weight: 600;
  opacity: 0.9;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.15s ease, transform 0.15s ease;
}

.social a:hover {
  background: var(--bordo);
  transform: translateY(-2px);
}

.footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-col p {
  margin-bottom: 8px;
  font-weight: 600;
  opacity: 0.92;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ---------- Carrinho ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 42, 34, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 90;
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(400px, 100%);
  background: var(--creme);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -10px 0 40px rgba(58, 42, 34, 0.2);
}

.cart.open {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: var(--branco);
  border-bottom: 1px solid var(--rosa);
}

.cart-head h3 {
  font-size: 1.3rem;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rosa);
  color: var(--bordo);
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.cart-close:hover {
  background: var(--rosa-forte);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-empty {
  flex: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 600;
  opacity: 0.7;
  padding: 20px;
}

.cart-empty.show {
  display: flex;
}

.cart-empty-icon {
  font-size: 3rem;
}

.cart-item {
  display: flex;
  gap: 12px;
  background: var(--branco);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--sombra);
}

.cart-item-emoji {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(160deg, var(--rosa), var(--rosa-forte));
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cart-item-name {
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--texto);
  line-height: 1.2;
}

.cart-item-detail {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.6;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--rosa);
  color: var(--bordo);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
}

.qty-btn:hover {
  background: var(--rosa-forte);
}

.qty-value {
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.cart-item-price {
  font-weight: 800;
  color: var(--bordo);
  align-self: flex-end;
  font-family: 'Playfair Display', serif;
}

.cart-foot {
  padding: 20px 22px;
  background: var(--branco);
  border-top: 1px solid var(--rosa);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cart-foot.show {
  display: flex;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
}

.cart-total strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bordo);
}

.cart-delivery {
  background: var(--creme);
  border-radius: 16px;
  padding: 14px;
}

.cart-delivery h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--bordo);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.delivery-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--branco);
  border: 2px solid var(--rosa-forte);
  border-radius: 12px;
  padding: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.15s ease;
}

.delivery-opt.selected {
  background: var(--bordo);
  border-color: var(--bordo);
  color: #fff;
}

.delivery-opt input {
  accent-color: var(--bordo);
}

.delivery-field {
  display: none;
  margin-top: 10px;
}

.delivery-field.show {
  display: block;
}

.delivery-input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--rosa-forte);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--branco);
  color: var(--texto);
  outline: none;
}

.delivery-input:focus {
  border-color: var(--bordo);
}

.delivery-note {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
}

.delivery-note:empty {
  display: none;
}

.cart-note {
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.6;
  font-weight: 600;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bordo);
  color: #fff;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(140, 58, 43, 0.4);
  z-index: 120;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  .strip-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sobre-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sobre-art {
    width: 160px;
    height: 160px;
    font-size: 4rem;
  }

  .entrega-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    gap: 8px;
    padding: 10px 0;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 52px 0 64px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-emojis {
    font-size: 1.4rem;
    letter-spacing: 6px;
    margin-top: 28px;
  }

  .loja,
  .cardapio {
    padding: 48px 0 30px;
  }

  .franquia {
    padding: 48px 0;
  }

  .franquia-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    text-align: center;
  }

  .franquia-art {
    width: 140px;
    height: 140px;
    font-size: 4rem;
  }

  .monte-cta {
    padding: 28px 24px;
    text-align: center;
    justify-content: center;
  }

  .paves-mesa {
    padding: 22px 18px;
  }

  .paves-mesa h3 {
    font-size: 1.25rem;
  }

  .bolo-banner {
    padding: 24px 20px;
  }

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

  .bolo-head h3 {
    font-size: 1.2rem;
  }

  .sobre-mvv {
    grid-template-columns: 1fr;
  }

  .mvv-card {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer {
    padding-top: 44px;
  }

  .toast {
    white-space: normal;
    text-align: center;
    width: max-content;
    max-width: 90vw;
  }
}

@media (max-width: 420px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .grid-paves {
    grid-template-columns: 1fr;
  }

  .card-art {
    font-size: 3rem;
  }

  .card-body {
    padding: 12px;
  }

  .card-price {
    font-size: 1.05rem;
  }

  .card-foot {
    gap: 6px;
  }

  .add-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .card-select {
    font-size: 0.78rem;
    padding: 8px 8px;
  }

  .delivery-options {
    grid-template-columns: 1fr;
  }
}
