body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
}

.navbar .logo {
  height: 50px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.btn-delivery {
  background: green;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.slider {
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 500px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  top: 20%;
  left: 5%;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.slide-text h2 {
  font-size: 40px;
  font-weight: bold;
}

.slide-text p {
  font-size: 18px;
}

.telefone {
  font-size: 22px;
  font-weight: bold;
  color: yellow;
}

.btn-slide {
  display: inline-block;
  margin-top: 10px;
  background: red;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

.promocoes .cards,
.unidades .cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.card h3 {
  font-weight: bold;
}

.btn-card {
  display: inline-block;
  margin-top: 10px;
  background: red;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.clientes .gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.clientes .gallery img {
  width: 30%;
  border-radius: 10px;
}

.footer {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background: #222;
  color: #fff;
  padding: 80px;
  margin-top: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 10px;
}

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

.footer-menu ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-contato p {
  margin: 5px 0;
}


/* ==== Slider Arrows ==== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 36px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}
.arrow-left { left: 12px; }
.arrow-right { right: 12px; }
.arrow:focus { outline: 2px solid #fff; }

/* ==== Delivery grid (imagem pequena + texto) ==== */
.delivery {
  padding: 40px 20px;
}
.delivery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
}
.delivery-media img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.delivery-text h2 {
  text-align: left;
  margin-top: 0;
  font-weight: 800;
}
.delivery-text p {
  margin: 10px 0 16px;
}
.btn-delivery-cta {
  display: inline-block;
  background: green;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

/* ==== Centralizações de seções ==== */
.promocoes h2, .promocoes > p,
.clientes h2,
.unidades h2, .unidades > p {
  text-align: center;
}

/* ==== Cards mais arredondados + imagens iguais ==== */
.cards { gap: 16px; }
.card {
  border-radius: 22px;
  padding: 14px;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}
.btn-card { margin-bottom: 4px; }

/* ==== Clientes: menor e com efeito passando ==== */
.clientes {
  padding: 40px 20px;
}
.clientes h2 { margin-bottom: 14px; }
.marquee {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 12px;
  animation: scroll 18s linear infinite;
}
.marquee img {
  height: 160px;
  width: auto;
  border-radius: 12px;
  flex: 0 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==== Unidades centralizadas ==== */
.unidades h2, .unidades > p {
  text-align: center;
}

/* ==== Responsivo ==== */
@media (max-width: 768px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .delivery-text h2 { text-align: center; }
  .marquee img { height: 120px; }
}


/* ===== Eventos ===== */
.eventos { padding: 50px 20px; max-width: 1100px; margin: 0 auto; }
.eventos h2 { text-align: center; font-weight: 800; margin-bottom: 8px; }
.eventos-desc { text-align: center; margin-bottom: 22px; }
.eventos-wrap { display: grid; grid-template-columns: 420px 1fr; gap: 24px; align-items: start; }
.eventos-img img { width: 100%; border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.eventos-form .row { display: flex; flex-direction: column; margin-bottom: 10px; }
.eventos-form label { font-weight: 600; margin-bottom: 6px; }
.eventos-form input, .eventos-form select, .eventos-form textarea {
  padding: 10px 12px; border: 1px solid #ddd; border-radius: 10px; font-size: 14px;
}
.eventos-form .terms { margin: 12px 0; }
.eventos .btn-card { align-self: start; }

@media (max-width: 900px) {
  .eventos-wrap { grid-template-columns: 1fr; }
  .eventos .btn-card { align-self: center; }
}


/* ===== Ajustes Rodapé ===== */
.footer { background: #000; color: #fff; padding: 80px 20px 20px; }
.footer .footer-bottom { text-align: center; margin-top: 30px; font-size: 14px; color: #fff; }


/* ===== Ajustes Formulário Eventos ===== */
.eventos-form { max-width: 500px; }
.eventos-form input, .eventos-form select, .eventos-form textarea {
  font-size: 13px;
  padding: 8px 10px;
}
.eventos-wrap { align-items: center; } /* centralizar imagem em relação ao formulário */

/* ===== Ajustes Rodapé Bottom ===== */
.footer-bottom { 
  text-align: center; 
  margin-top: 30px; 
  font-size: 16px; 
  font-weight: 600; 
}


/* ===== Ajustes Eventos - Foto acima e formulário expandido ===== */
.eventos-wrap { display: block; }
.eventos-img { text-align: center; margin-bottom: 20px; }
.eventos-img img { max-width: 520px; width: 100%; margin: 0 auto; display: block; }
.eventos-form { max-width: 800px; margin: 0 auto; }

/* ===== Ajustes Rodapé ===== */
.footer { padding: 80px 20px 40px; } /* mais respiro no espaço preto */
.footer-bottom { 
  text-align: center; 
  margin-top: 20px; 
  font-size: 16px; 
  font-weight: 600; 
  color: #000; /* parte branca, texto preto */
  background: #fff; 
  padding: 15px 0; 
}


/* === Hover effects for buttons === */
.btn-card:hover, .btn-delivery:hover, .btn-delivery-cta:hover, .btn-slide:hover {
  transform: translateY(-1px) scale(1.04);
  filter: brightness(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* === Hover effects for images (cards & galleries) === */
.promocoes .card img, .unidades .card img, .clientes .marquee img {
  transition: transform .3s ease, box-shadow .3s ease;
}
.promocoes .card img:hover, .unidades .card img:hover, .clientes .marquee img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}


/* === Sobre Section === */
.sobre {
  background: #fff;
  padding: 80px 20px;
}
.sobre .section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #c62828;
}
.sobre-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.sobre-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.sobre-img img {
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.sobre-img img:hover {
  transform: scale(1.03);
}
