/* ============================================
   VARIÁVEIS DE CORES E IDENTIDADE VISUAL
   ============================================ */
:root {
  /* Cores principais */
  --vinho-escuro: #5A1A2B;
  --vinho: #7A2842;
  --rosa-principal: #C4305A;
  --rosa-hover: #A82850;
  --rosa-claro: #FDF2F4;
  --rosa-medio: #F5D4DC;
  --rosa-suave: #FCE4E9;
  
  /* Textos */
  --texto-escuro: #2D2D2D;
  --texto-medio: #5A5A5A;
  --texto-claro: #8A8A8A;
  
  /* Neutros */
  --branco: #FFFFFF;
  --cinza-fundo: #FAFAFA;
  --borda: #E8E8E8;
  
  /* Sombras */
  --sombra-suave: 0 2px 8px rgba(0, 0, 0, 0.06);
  --sombra-media: 0 4px 16px rgba(0, 0, 0, 0.08);
  --sombra-hover: 0 8px 24px rgba(196, 48, 90, 0.15);
  
  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--texto-escuro);
  background-color: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--texto-escuro);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

/* ============================================
   NAVBAR (MENU SUPERIOR)
   ============================================ */
.navbar-custom {
  background-color: var(--branco);
  padding: 1rem 0;
  box-shadow: var(--sombra-suave);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-custom .navbar-brand img {
  height: 55px;
}

.navbar-custom .nav-link {
  color: var(--texto-escuro);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--rosa-principal);
}

.navbar-custom .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--rosa-principal);
  border-radius: 2px;
}

/* Botão do Instagram na navbar */
.btn-instagram {
  background: linear-gradient(135deg, var(--vinho-escuro), var(--vinho));
  color: var(--branco);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  background: var(--vinho-escuro);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

/* ============================================
   BOTÕES PERSONALIZADOS
   ============================================ */
.btn-rosa {
  background-color: var(--rosa-principal);
  color: var(--branco);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-rosa:hover {
  background-color: var(--rosa-hover);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn-outline-rosa {
  background-color: transparent;
  color: var(--rosa-principal);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid var(--rosa-principal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-rosa:hover {
  background-color: var(--rosa-principal);
  color: var(--branco);
  transform: translateY(-2px);
}

/* ============================================
   SEÇÃO HERO (BANNER PRINCIPAL)
   ============================================ */
.hero-section {
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--rosa-suave) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--texto-escuro);
}

.hero-title .destaque {
  color: var(--rosa-principal);
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: var(--texto-medio);
  margin-bottom: 2rem;
  max-width: 400px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  text-align: center;
}

/* ============================================
   TÍTULOS DE SEÇÃO (com traços laterais)
   ============================================ */
.titulo-secao {
  text-align: center;
  margin: 4rem 0 3rem;
  position: relative;
}

.titulo-secao .coracao-top {
  color: var(--rosa-principal);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.titulo-secao h2 {
  font-size: 2.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--texto-escuro);
}

.titulo-secao h2::before,
.titulo-secao h2::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: var(--rosa-principal);
  opacity: 0.6;
}

/* ============================================
   CARDS DE PRODUTOS
   ============================================ */
.card-produto {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  margin-bottom: 1.5rem;
}

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

.card-produto-imagem {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-produto-corpo {
  padding: 1rem 0;
}

.card-produto-nome {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.3rem;
}

.card-produto-descricao {
  font-size: 0.85rem;
  color: var(--texto-medio);
  line-height: 1.4;
}

/* ============================================
   SEÇÃO AÇAÍS (card grande rosa)
   ============================================ */
.secao-acai {
  background: linear-gradient(135deg, var(--rosa-claro) 0%, var(--rosa-medio) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.secao-acai h2 {
  font-size: 2.2rem;
  color: var(--texto-escuro);
  margin-bottom: 1rem;
}

.acai-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.acai-feature-icone {
  width: 45px;
  height: 45px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ============================================
   SEÇÃO COMBOS (card vinho)
   ============================================ */
.secao-combos {
  background: linear-gradient(135deg, var(--vinho) 0%, var(--vinho-escuro) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin: 2rem 0;
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.secao-combos h2 {
  color: var(--branco);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.badge-desconto {
  background: var(--branco);
  color: var(--rosa-principal);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-combo-branco {
  background-color: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-combo-branco:hover {
  background: var(--branco);
  color: var(--rosa-principal);
}

/* ============================================
   SEÇÃO "POR QUE ESCOLHER"
   ============================================ */
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.feature-icone {
  width: 55px;
  height: 55px;
  background: var(--rosa-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-texto h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--texto-escuro);
}

.feature-texto p {
  font-size: 0.85rem;
  color: var(--texto-medio);
  margin: 0;
}

/* ============================================
   FOOTER (RODAPÉ)
   ============================================ */
.footer {
  background: linear-gradient(135deg, var(--vinho) 0%, var(--vinho-escuro) 100%);
  color: var(--branco);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer h5 {
  color: var(--branco);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer a {
  color: var(--branco);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
  color: var(--rosa-medio);
}

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

/* ============================================
   RESPONSIVO (MOBILE)
   ============================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .titulo-secao h2 {
    font-size: 1.5rem;
  }
  
  .titulo-secao h2::before,
  .titulo-secao h2::after {
    width: 25px;
  }
  
  .secao-acai,
  .secao-combos {
    padding: 2rem 1.5rem;
  }
  
  .secao-acai h2,
  .secao-combos h2 {
    font-size: 1.6rem;
  }
  
  .hero-buttons .btn-rosa,
  .hero-buttons .btn-outline-rosa {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.bg-rosa-claro {
  background-color: var(--rosa-claro);
}

.texto-rosa {
  color: var(--rosa-principal);
}

.texto-vinho {
  color: var(--vinho-escuro);
}

/* ============================================
   BREADCRUMB (navegação "Início > Bolos")
   ============================================ */
.breadcrumb-custom {
  padding: 1rem 0;
  font-size: 0.9rem;
}

.breadcrumb-custom a {
  color: var(--texto-medio);
  transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
  color: var(--rosa-principal);
}

.breadcrumb-custom .separador {
  margin: 0 0.5rem;
  color: var(--texto-claro);
}

.breadcrumb-custom .atual {
  color: var(--rosa-principal);
  font-weight: 500;
}

/* ============================================
   HEADER DE PÁGINA (com imagem lateral)
   ============================================ */
.page-header {
  padding: 2rem 0 3rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--texto-escuro);
}

.page-header .titulo-pequeno {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: var(--texto-escuro);
  font-weight: 500;
  margin-bottom: 0;
}

.page-header .subtitulo {
  color: var(--texto-medio);
  font-size: 1rem;
  max-width: 400px;
  margin-top: 1rem;
}

.coracao-inline {
  color: var(--rosa-principal);
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* ============================================
   CARD DE BOLO (com preço e botão)
   ============================================ */
.card-bolo {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.card-bolo:hover {
  transform: translateY(-5px);
}

.card-bolo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.card-bolo-nome {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.3rem;
}

.card-bolo-desc {
  font-size: 0.85rem;
  color: var(--texto-medio);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  min-height: 2.4em;
}

.card-bolo-preco {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rosa-principal);
  margin-bottom: 0.8rem;
}

.btn-adicionar {
  background: transparent;
  color: var(--rosa-principal);
  border: 2px solid var(--rosa-principal);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.btn-adicionar:hover {
  background: var(--rosa-principal);
  color: var(--branco);
}

.btn-adicionar.adicionado {
  background: var(--rosa-principal);
  color: var(--branco);
}

/* ============================================
   BANNER DE ENTREGA
   ============================================ */
.banner-entrega {
  background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-suave));
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.banner-entrega-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.banner-entrega-icone {
  width: 60px;
  height: 60px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.banner-entrega h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.banner-entrega p {
  margin: 0;
  color: var(--texto-medio);
  font-size: 0.9rem;
}

/* ============================================
   PÁGINA MONTE SEU AÇAÍ
   ============================================ */
.passo-titulo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.passo-numero {
  width: 36px;
  height: 36px;
  background: var(--rosa-principal);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.passo-titulo h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.passo-titulo .info-extra {
  font-size: 0.85rem;
  color: var(--rosa-principal);
}

/* Cards de tamanho de açaí */
.card-tamanho {
  background: var(--branco);
  border: 2px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  height: 100%;
}

.card-tamanho:hover {
  border-color: var(--rosa-medio);
}

.card-tamanho.selecionado {
  border-color: var(--rosa-principal);
  background: var(--rosa-claro);
}

.card-tamanho img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-tamanho-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.card-tamanho-info p {
  font-size: 0.8rem;
  color: var(--texto-medio);
  margin-bottom: 0.3rem;
}

.card-tamanho-info .preco {
  color: var(--rosa-principal);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-tamanho .check-circle {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--borda);
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.card-tamanho.selecionado .check-circle {
  background: var(--rosa-principal);
  border-color: var(--rosa-principal);
}

/* Cards de ingrediente */
.card-ingrediente {
  background: var(--branco);
  border: 2px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  margin-bottom: 1rem;
}

.card-ingrediente:hover {
  border-color: var(--rosa-medio);
}

.card-ingrediente.selecionado {
  border-color: var(--rosa-principal);
  background: var(--rosa-claro);
}

.card-ingrediente img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-ingrediente span {
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
}

.card-ingrediente .check-mini {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--borda);
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.card-ingrediente.selecionado .check-mini {
  background: var(--rosa-principal);
  border-color: var(--rosa-principal);
}

/* Resumo do pedido */
.resumo-pedido {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
}

.resumo-tempo {
  background: var(--rosa-claro);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.resumo-tempo-icone {
  width: 50px;
  height: 50px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Botões de ação (Voltar / Adicionar) */
.acoes-bottom {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.btn-voltar {
  background: var(--branco);
  color: var(--texto-escuro);
  border: 2px solid var(--borda);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.btn-voltar:hover {
  border-color: var(--rosa-principal);
  color: var(--rosa-principal);
}

.btn-grande {
  background: var(--rosa-principal);
  color: var(--branco);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  flex: 1;
  cursor: pointer;
}

.btn-grande:hover {
  background: var(--rosa-hover);
  color: var(--branco);
}

.btn-grande:disabled {
  background: var(--borda);
  cursor: not-allowed;
}

/* ============================================
   CARRINHO (ÍCONE NAVBAR)
   ============================================ */
.carrinho-navbar {
  position: relative;
  color: var(--rosa-principal);
  font-size: 1.5rem;
  margin-left: 1rem;
  cursor: pointer;
  background: none;
  border: none;
}

.carrinho-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--rosa-principal);
  color: var(--branco);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   OFFCANVAS DO CARRINHO
   ============================================ */
.offcanvas {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--borda);
}

.offcanvas-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Item do carrinho */
.item-carrinho {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--borda);
}

.item-carrinho img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.item-carrinho-info {
  flex: 1;
}

.item-carrinho-nome {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.item-carrinho-tipo {
  font-size: 0.8rem;
  color: var(--texto-medio);
  margin-bottom: 0.3rem;
}

.item-carrinho-preco {
  color: var(--rosa-principal);
  font-weight: 600;
  font-size: 0.9rem;
}

.controle-quantidade {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-qtd {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: var(--branco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-qtd:hover {
  border-color: var(--rosa-principal);
  color: var(--rosa-principal);
}

.btn-lixeira {
  background: none;
  border: none;
  color: var(--texto-claro);
  cursor: pointer;
  transition: color 0.3s ease;
}

.btn-lixeira:hover {
  color: var(--rosa-principal);
}

/* ============================================
   BOTTOM NAV (MOBILE)
   ============================================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vinho-escuro);
  padding: 0.8rem 0;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.bottom-nav-item {
  color: var(--branco);
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.7;
  position: relative;
  transition: opacity 0.3s ease;
}

.bottom-nav-item.ativo {
  opacity: 1;
}

.bottom-nav-item i {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.2rem;
}

.bottom-nav-item .mini-badge {
  position: absolute;
  top: -5px;
  right: 50%;
  transform: translateX(20px);
  background: var(--rosa-principal);
  color: var(--branco);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex;
    justify-content: space-around;
  }
  
  body {
    padding-bottom: 70px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .acoes-bottom {
    flex-direction: column;
  }
}

/* ============================================
   CHECKOUT (4 ETAPAS)
   ============================================ */
.checkout-container {
  max-width: 500px;
  margin: 2rem auto;
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-media);
}

.checkout-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--borda);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkout-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.checkout-body {
  padding: 1.5rem;
}

/* Opções de endereço (casa, trabalho, etc) */
.opcao-local {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 1px solid var(--borda);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.opcao-local:hover {
  border-color: var(--rosa-medio);
}

.opcao-local.selecionada {
  border-color: var(--rosa-principal);
  background: var(--rosa-claro);
}

.opcao-local input[type="radio"] {
  accent-color: var(--rosa-principal);
}

/* Inputs do formulário */
.form-label {
  font-size: 0.85rem;
  color: var(--texto-medio);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1px solid var(--borda);
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--rosa-principal);
  box-shadow: 0 0 0 0.15rem rgba(196, 48, 90, 0.15);
}

/* Resumo do checkout */
.resumo-linha {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.resumo-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--borda);
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.resumo-total .valor {
  color: var(--rosa-principal);
}

/* Botão WhatsApp grande */
.btn-whatsapp {
  background: #25D366;
  color: var(--branco);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--branco);
}

/* ============================================
   CATEGORIAS DE INGREDIENTES (Açaí)
   ============================================ */
.categoria-ingredientes {
  margin-bottom: 2rem;
}

.categoria-titulo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rosa-claro);
}

.categoria-titulo-icone {
  width: 32px;
  height: 32px;
  background: var(--rosa-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.categoria-titulo h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: var(--texto-escuro);
  flex: 1;
}

.categoria-titulo .qtd-selecionado {
  font-size: 0.8rem;
  color: var(--rosa-principal);
  font-weight: 500;
}

/* Atualização do card-ingrediente para mostrar preço */
.card-ingrediente {
  position: relative;
  padding: 0.8rem 0.8rem 0.8rem 0.8rem;
}

.card-ingrediente-info {
  flex: 1;
  min-width: 0;
}

.card-ingrediente-nome {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--texto-escuro);
  line-height: 1.2;
  display: block;
}

.card-ingrediente-preco {
  font-size: 0.75rem;
  color: var(--rosa-principal);
  font-weight: 600;
  margin-top: 0.2rem;
}

.card-ingrediente-preco.gratis {
  color: #2D9F4F;
  background: #E8F5ED;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Tag de categoria (pill) */
.tag-categoria {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--rosa-claro);
  color: var(--rosa-principal);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
  margin-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Resumo do açaí - lista detalhada de ingredientes */
.lista-ingredientes-resumo {
  font-size: 0.85rem;
  color: var(--texto-medio);
  line-height: 1.6;
}

.lista-ingredientes-resumo .item-linha {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 0;
}

.lista-ingredientes-resumo .item-linha .preco-extra {
  color: var(--rosa-principal);
  font-weight: 600;
  font-size: 0.8rem;
}

/* ============================================
   CARRINHO FLUTUANTE (FAB - Float Action Button)
   ============================================ */
.carrinho-flutuante {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--rosa-principal);
  color: var(--branco);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.5rem;
  box-shadow: 0 6px 20px rgba(196, 48, 90, 0.4);
  z-index: 998;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  animation: entrar-flutuante 0.4s ease;
}

.carrinho-flutuante:hover {
  background: var(--rosa-hover);
  color: var(--branco);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(196, 48, 90, 0.5);
}

.carrinho-flutuante.visivel {
  display: inline-flex;
}

.carrinho-flutuante .icone-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.carrinho-flutuante .badge-qtd {
  background: var(--branco);
  color: var(--rosa-principal);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.3rem;
}

.carrinho-flutuante .valor-total {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 0.8rem;
  margin-left: 0.3rem;
}

@keyframes entrar-flutuante {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile: ajustar posição quando bottom-nav está presente */
@media (max-width: 768px) {
  .carrinho-flutuante {
    bottom: 85px;
    right: 15px;
    left: 15px;
    justify-content: center;
    padding: 0.9rem 1.2rem;
  }
}

/* ============================================
   MODAL DE CONFIRMAÇÃO (adicionado ao carrinho)
   ============================================ */
.modal-confirmacao {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fade-in 0.2s ease;
}

.modal-confirmacao.ativo {
  display: flex;
}

.modal-confirmacao-caixa {
  background: var(--branco);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: subir 0.3s ease;
}

.modal-confirmacao-icone {
  width: 70px;
  height: 70px;
  background: var(--rosa-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--rosa-principal);
  font-size: 2rem;
}

.modal-confirmacao h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.modal-confirmacao p {
  color: var(--texto-medio);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.modal-confirmacao-botoes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.modal-confirmacao-botoes button {
  width: 100%;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ============================================
   BOTÃO EDITAR NO ITEM DO CARRINHO
   ============================================ */
.btn-editar-item {
  background: none;
  border: none;
  color: var(--rosa-principal);
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.btn-editar-item:hover {
  color: var(--rosa-hover);
  text-decoration: underline;
}

.item-carrinho-detalhes {
  font-size: 0.75rem;
  color: var(--texto-claro);
  margin-top: 0.2rem;
  font-style: italic;
}

/* ============================================
   BOTÃO CONTINUAR COMPRANDO
   ============================================ */
.btn-continuar-comprando {
  background: transparent;
  color: var(--rosa-principal);
  border: 2px dashed var(--rosa-medio);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  width: 100%;
  cursor: pointer;
  margin-bottom: 0.8rem;
}

.btn-continuar-comprando:hover {
  border-style: solid;
  background: var(--rosa-claro);
  color: var(--rosa-principal);
}

/* ============================================
   AJUSTES MOBILE PARA CARRINHO FLUTUANTE
   ============================================ */
@media (max-width: 768px) {
  /* Empurrar conteúdo pra não cobrir com o botão */
  body.tem-carrinho-flutuante {
    padding-bottom: 150px;
  }
}

/* ============================================
   CARD DE COMBO
   ============================================ */
.card-combo {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-combo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-combo-corpo {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-combo-nome {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.5rem;
}

.card-combo-desc {
  font-size: 0.9rem;
  color: var(--texto-medio);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

.card-combo-precos {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.preco-riscado {
  text-decoration: line-through;
  color: var(--texto-claro);
  font-size: 0.9rem;
}

.preco-destaque {
  color: var(--rosa-principal);
  font-weight: 700;
  font-size: 1.3rem;
}

/* Badge de desconto no canto do card */
.badge-combo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--rosa-principal);
  color: var(--branco);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(196, 48, 90, 0.3);
  z-index: 1;
}

/* ============================================
   PÁGINA QUEM SOMOS
   ============================================ */
.sobre-section {
  padding: 4rem 0;
}

.sobre-imagem-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-media);
}

.sobre-imagem-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.sobre-decoracao {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--rosa-medio);
  border-radius: 50%;
  opacity: 0.4;
  z-index: -1;
}

.sobre-decoracao.top-left {
  top: -30px;
  left: -30px;
}

.sobre-decoracao.bottom-right {
  bottom: -30px;
  right: -30px;
}

.valor-card {
  background: var(--branco);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--borda);
}

.valor-card:hover {
  border-color: var(--rosa-principal);
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
}

.valor-card-icone {
  width: 70px;
  height: 70px;
  background: var(--rosa-claro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}

.valor-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.valor-card p {
  font-size: 0.9rem;
  color: var(--texto-medio);
  margin: 0;
  line-height: 1.6;
}

.destaque-box {
  background: linear-gradient(135deg, var(--rosa-claro), var(--rosa-suave));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.destaque-box .icone-destaque {
  width: 80px;
  height: 80px;
  background: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rosa-principal);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--sombra-suave);
}

.destaque-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--texto-escuro);
  margin-bottom: 1rem;
}

.destaque-box p {
  color: var(--texto-medio);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PÁGINA CONTATO
   ============================================ */
.contato-card {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
}

.contato-card:hover {
  border-color: var(--rosa-principal);
  transform: translateY(-5px);
  box-shadow: var(--sombra-hover);
  color: inherit;
}

.contato-card-icone {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  transition: transform 0.3s ease;
}

.contato-card:hover .contato-card-icone {
  transform: scale(1.1);
}

.contato-card-icone.whatsapp {
  background: #DCF8C6;
  color: #25D366;
}

.contato-card-icone.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--branco);
}

.contato-card-icone.endereco {
  background: var(--rosa-claro);
  color: var(--rosa-principal);
}

.contato-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contato-card p {
  color: var(--texto-medio);
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

/* Seção Horário */
.horario-section {
  background: var(--cinza-fundo);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
}

.horario-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.horario-lista li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--borda);
  font-size: 0.95rem;
}

.horario-lista li:last-child {
  border-bottom: none;
}

.horario-lista .dia {
  font-weight: 500;
  color: var(--texto-escuro);
}

.horario-lista .hora {
  color: var(--rosa-principal);
  font-weight: 600;
}

.horario-lista .fechado {
  color: var(--texto-claro);
  font-style: italic;
}

/* Mapa */
.mapa-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra-media);
  margin-top: 2rem;
}

.mapa-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  display: block;
}

/* Responsivo */
@media (max-width: 768px) {
  .destaque-box h3 {
    font-size: 1.3rem;
  }
  
  .horario-section {
    padding: 1.5rem;
  }
}

/* ============================================
   LINK DE ACESSO ADMIN (rodapé)
   ============================================ */
.acesso-admin-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.75rem !important;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.acesso-admin-footer:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--branco) !important;
}

.acesso-admin-footer i {
  font-size: 0.75rem;
}


/* ============================================
   OPÇÕES DE PAGAMENTO
   ============================================ */
.opcoes-pagamento {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.opcao-pagamento {
  cursor: pointer;
  display: block;
  margin: 0;
}

.opcao-pagamento input[type="radio"] {
  display: none;
}

.opcao-pagamento-conteudo {
  background: var(--branco);
  border: 2px solid var(--borda);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.opcao-pagamento:hover .opcao-pagamento-conteudo {
  border-color: var(--rosa-medio);
  background: var(--rosa-suave);
}

.opcao-pagamento input[type="radio"]:checked + .opcao-pagamento-conteudo {
  border-color: var(--rosa-principal);
  background: var(--rosa-claro);
  box-shadow: 0 4px 12px rgba(196, 48, 90, 0.15);
}

.opcao-pagamento-icone {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.opcao-pagamento-info {
  flex: 1;
}

.opcao-pagamento-info h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin: 0 0 0.2rem;
}

.opcao-pagamento-info p {
  font-size: 0.8rem;
  color: var(--texto-medio);
  margin: 0;
}

.opcao-pagamento-check {
  width: 28px;
  height: 28px;
  color: var(--rosa-principal);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.opcao-pagamento input[type="radio"]:checked + .opcao-pagamento-conteudo .opcao-pagamento-check {
  opacity: 1;
}

@media (max-width: 576px) {
  .opcao-pagamento-conteudo {
    padding: 0.8rem;
  }
  .opcao-pagamento-info h4 {
    font-size: 0.9rem;
  }
  .opcao-pagamento-info p {
    font-size: 0.75rem;
  }
  .opcao-pagamento-icone {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}


/* ============================================
   ITENS DO CARRINHO - VISUAL MELHORADO
   ============================================ */

/* Container do item */
.item-checkout {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.item-checkout:hover {
  border-color: var(--rosa-medio);
  box-shadow: var(--sombra-suave);
}

/* Imagem menor e elegante */
.item-checkout img {
  width: 75px !important;
  height: 75px !important;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Info do item */
.item-checkout-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0; /* permite truncar texto */
}

.item-checkout-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin: 0 0 0.3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Ingredientes / detalhes */
.item-ingredientes {
  font-size: 0.75rem;
  color: var(--texto-medio);
  background: var(--rosa-suave);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 0.5rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Controles de quantidade */
.item-checkout-controles {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.btn-qtd {
  width: 28px;
  height: 28px;
  border: 1px solid var(--rosa-medio);
  background: var(--branco);
  color: var(--rosa-principal);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
  line-height: 1;
}

.btn-qtd:hover {
  background: var(--rosa-principal);
  color: var(--branco);
  transform: scale(1.1);
}

.btn-qtd:active {
  transform: scale(0.95);
}

.qtd {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--texto-escuro);
  min-width: 20px;
  text-align: center;
}

.preco-item {
  margin-left: auto;
  font-weight: 700;
  color: var(--rosa-principal);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Botão de remover */
.btn-remover {
  background: none;
  border: none;
  color: var(--texto-claro);
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  align-self: flex-start;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-remover:hover {
  color: #DC3545;
  background: #FEE;
  transform: scale(1.1);
}

/* Container do checkout */
.checkout-container {
  max-width: 600px;
  margin: 1.5rem auto;
  padding: 0 1rem;
}

.checkout-header {
  background: var(--branco);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--borda);
  border-bottom: none;
}

.checkout-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--texto-escuro);
  margin: 0;
}

.passo-numero {
  width: 32px;
  height: 32px;
  background: var(--rosa-principal);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.checkout-body {
  background: var(--branco);
  padding: 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1px solid var(--borda);
  border-top: none;
}

/* Rodapé do carrinho com subtotal */
#rodapeCarrinho {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed var(--borda);
}

.resumo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background: var(--rosa-claro);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.resumo-total .valor {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rosa-principal);
}

.resumo-linha {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--texto-medio);
}

/* Botão continuar comprando */
.btn-continuar-comprando {
  width: 100%;
  background: var(--branco);
  border: 2px dashed var(--rosa-medio);
  color: var(--rosa-principal);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-continuar-comprando:hover {
  background: var(--rosa-suave);
  border-style: solid;
  color: var(--rosa-escuro);
}

/* Botão grande (finalizar) */
.btn-grande {
  background: var(--rosa-principal);
  color: var(--branco);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-grande:hover {
  background: var(--rosa-escuro);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 48, 90, 0.3);
}

.btn-grande:active {
  transform: translateY(0);
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Opções de local (endereço) */
.opcao-local {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--branco);
  border: 2px solid var(--borda);
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.opcao-local:hover {
  border-color: var(--rosa-medio);
  background: var(--rosa-suave);
}

.opcao-local.selecionada {
  border-color: var(--rosa-principal);
  background: var(--rosa-claro);
}

.opcao-local input[type="radio"] {
  accent-color: var(--rosa-principal);
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.opcao-local span {
  font-weight: 500;
  color: var(--texto-escuro);
  font-size: 0.95rem;
}

/* Botão voltar */
.btn-voltar {
  background: var(--cinza-fundo);
  border: 1px solid var(--borda);
  color: var(--texto-medio);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-voltar:hover {
  background: var(--rosa-suave);
  border-color: var(--rosa-medio);
  color: var(--rosa-principal);
}

/* Responsivo Mobile */
@media (max-width: 576px) {
  .checkout-container {
    margin: 1rem auto;
    padding: 0 0.8rem;
  }
  
  .checkout-body {
    padding: 1rem;
  }
  
  .item-checkout {
    padding: 0.8rem;
    gap: 0.8rem;
  }
  
  .item-checkout img {
    width: 65px !important;
    height: 65px !important;
  }
  
  .item-checkout-info h5 {
    font-size: 0.9rem;
  }
  
  .preco-item {
    font-size: 0.9rem;
  }
  
  .btn-qtd {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }
  
  .item-ingredientes {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

/* Para telas muito pequenas */
@media (max-width: 360px) {
  .item-checkout img {
    width: 55px !important;
    height: 55px !important;
  }
  
  .item-checkout-controles {
    flex-wrap: wrap;
  }
}