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

body {
  background-color: #fdf6e3;
  color: #3d2b1f;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

header, main, footer {
  width: 100%;
  background-color: #f6f1e9; /* ou marrom, etc. */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background-color: #312113;
  padding: 1rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 52px;
}

.auth-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  background-color: #a32020; /* vermelho escuro */
  color: white;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #8a1a1a;
}

.cart-link img {
  width: 28px;  /* tamanho que achar melhor */
  height: 28px;
  cursor: pointer;
  vertical-align: middle;
}

.hero {
  background-image: url('../imgs/pizzaBanner.png');
  background-size: cover;
  background-position: 50% 30%;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

footer {
  background-color: #1e1e1e;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.promocoes {
  padding: 2rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-areas:
    "principal lateral"
    "inferior inferior";
  gap: 1rem;
}

.banner-principal {
  grid-area: principal;
}

.banners-laterais {
  grid-area: lateral;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.promo-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.footer-institucional {
  background-color: #2e1d12; /* marrom escuro */
  color: #fceee3; /* bege claro */
  font-family: sans-serif;
  padding: 2rem 1rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #fceee3;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #fceee3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff4d00; /* vermelho vibrante */
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: invert(90%);
  transition: transform 0.2s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 50px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-bottom {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #d8c7b7;
}

.footer-bottom a {
  color: #ff4d00;
  text-decoration: underline;
}

