/* Paleta de cores */
:root {
  --cor-primaria: #E8B4B8;
  --cor-secundaria: #F5EDE4;
  --cor-texto: #333333;
}

/* Header elegante */
header, .cabecalho {
  background-color: var(--cor-secundaria) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
  max-height: 80px;
}

/* Botões */
.botao, .btn {
  background-color: var(--cor-primaria) !important;
  border-radius: 25px !important;
  padding: 12px 30px !important;
  font-weight: bold;
  transition: all 0.3s;
}

.botao:hover {
  background-color: #d19a9f !important;
  transform: scale(1.05);
}

/* Produtos - cards mais bonitos */
.produto {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.produto:hover {
  transform: translateY(-10px);
}

/* Tipografia */
body, .fonte-padrao {
  font-family: 'Inter', system-ui, sans-serif;
}

/* Ajustes mobile */
@media (max-width: 768px) {
  .logo img { max-height: 60px; }
}