/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #333;
  line-height: 1.6; ;
  overflow-x: hidden;
}

/* Container padrão */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.main {
  text-align: center;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-attachment: scroll;
}


/* Logo animada */
.imagem-container {
  text-align: center;
  padding: 2rem;
}

.imagem {
  max-width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.imagem.aparecer {
  opacity: 1;
}

/* Botão de pedidos */

  .main .pedidos .botao {
    padding: 10px 20px;
    font-family: "SUSE", sans-serif;
    font-weight: bolder;
    background-color: transparent;
    border: 2px solid #ff9100;
    border-radius: 5px;
    color: #ff9100;
    cursor: pointer;
    margin: 40px;
    transition: all 0.3s ease-in-out;
    animation: pulsar 1.5s infinite alternate;
  }
  .main .botao:hover {
    background-color: #fff;
    color: #ff9100;
    transform: scale(1.2);
    animation: balancar 0.5s ease-in-out;
  }
  
  /* Animações */
  @keyframes pulsar {
    0% { transform: scale(1); box-shadow: 0 0 5px #ff9100; }
    50% { transform: scale(1.1); box-shadow: 0 0 20px #ff9100; }
    100% { transform: scale(1); box-shadow: 0 0 5px #ff9100; }
  }
  @keyframes balancar {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
  }
  
  /* Modal */
  body.modal-aberto {
    overflow: hidden;
  }
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .modal-conteudo {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 80%;
  }
  .modal-conteudo h2 {
    font-family: "SUSE", sans-serif;
    font-weight: bolder;
    font-size: 30px;
    padding: 20px;
  }
  #fazerPedido, #fazerEncomenda, #fecharModal {
    background: none;
    color: rgb(0, 0, 0);
    padding: 5px 20px;
    margin: 20px 10px;
    border: 2px solid #c6c6c6;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s;
  }
  #fazerPedido:hover, #fazerEncomenda:hover, #fecharModal:hover {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
    color: #ff9100;
    transform: scale(1.2);
  }

/* Delivery */
.section-delivery {
  padding: 40px 0;
  background-color: #fef8ef;
  width: 100%;
  height: 92vh;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff9100;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ffa94d;
  display: block;
  margin: 10px auto 0;
}

.delivery-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 0 20px;
  transition: opacity 1s ease, transform 1s ease;
}

.delivery-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.delivery-text {
  max-width: 500px;
}

.delivery-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  
  
}

.delivery-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 15px;
  color: white;
  transition: background 0.3s;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

.delivery-btn.whatsapp {
  background-color: #25d366;
}

.delivery-btn.whatsapp:hover {
  background-color: #1ebe57;
}

.delivery-btn.ifood {
  background-color: #ea1d2c;
}

.delivery-btn.ifood:hover {
  background-color: #c71725;
}

.delivery-image {
  max-width: 100%;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.delivery-image.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Galeria */
.product-gallery {
  text-align: center;
  margin-top: 40px;
}

.product-gallery h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ff9100;
  
}

.product-gallery h3::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #ffa94d;
  display: block;
  margin: 10px auto 0;
}

.gallery-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;

}

.gallery-images img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.gallery-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
}



.desenvolvido p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.desenvolvido a {
  color: #ffa600;
  text-decoration: none;
}

.desenvolvido a:hover {
  color: #ffc14d;
}

/* Responsividade */

@media (max-width: 1600px) {
  .main {
    height: 100vh;
    padding: 20px;
  }

  .imagem-container {
    padding: 1rem;
  }
  

  .imagem {
    max-width: 80%;
    height: auto;
  }

  .main .pedidos .botao {
    padding: 8px 16px;
    font-size: 14px;
    margin: 20px;
  }

  .section-delivery {
    height: auto;
    padding: 20px;
  }

  .delivery-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .delivery-text {
    max-width: none;
    margin-bottom: 20px;
  }
  .delivery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .delivery-btn {
    margin-top: 15px;
  }
}


@media (max-width: 768px) {
  .delivery-info {
    flex-direction: column;
    text-align: center;
  }

  .delivery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

  .gallery-images img {
    width: 100px;
    height: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }

  .section-delivery {
    padding: 40px 0;
    background-color: #fef8ef;
    width: 100%;
    height: 120vh;
  }
  .delivery-image {
    width: 100%;
    height: auto;
  }

  .product-gallery {
    margin-bottom: 10px;
  }
  .delivery-btn {
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    
  }
  

  footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}

@media (max-width: 480px) {

  .delivery-info {
    flex-direction: column;
    text-align: center;
  }

  .delivery-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 15px;
  }

  .gallery-images img {
    width: 100px;
    height: 100px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }
  .section-delivery h2{
    font-size: 25px;
    margin-bottom: 10px;
    color: #ff9100;
  }
  .section-delivery {
    padding: 40px 0;
    background-color: #fef8ef;
    width: 100%;
    height: 140vh;
  }
  .delivery-image {
    width: 100%;
    height: auto;
  }

  .product-gallery {
    margin-bottom: 10px;
  }
  .delivery-btn {
    margin-top: 15px;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 10px 8px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    
  }
  .delivery-text {
   
    margin-top: 20px;
  }

  footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}
