/* Todo o conteúdo que estava dentro da tag <style> */
body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff8f0;
    color: #222;
  }
  header {
    background: #d7263d;
    color: #fff;
    padding: 40px 0 20px 0;
    text-align: center;
  }
  header img {
    width: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  nav {
    margin: 20px 0;
  }
  nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s;
  }
  nav a:hover {
    color: #ffb400;
  }
  .hero {
    background: url('https://placehold.co/1200x400?text=Sua+Pizzaria') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 8px #0008;
  }
  .section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
  }
  .cardapio {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .pizza {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px #0001;
    padding: 20px;
    width: 260px;
    text-align: center;
  }
  .pizza img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .pizza h3 {
    margin: 10px 0 5px 0;
  }
  .pizza p {
    color: #555;
    font-size: 0.95em;
  }
  .pizza .preco {
    color: #d7263d;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 8px;
  }
  .whatsapp {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.2em;
    text-decoration: none;
    margin: 30px auto 0 auto;
    width: 260px;
    transition: background 0.2s;
  }
  .whatsapp:hover {
    background: #1ebe57;
  }
  .galeria-fotos, .galeria-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  .galeria-fotos img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    transition: transform 0.2s;
    cursor: pointer;
  }
  .galeria-fotos img:hover {
    transform: scale(1.05);
  }
  .galeria-videos iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    width: 320px;
    height: 180px;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
  }
  .whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
  }
  .fa-whatsapp {
    font-size: 38px;
  }
  /* Estilos para a seção de depoimentos */
  .depoimentos-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .depoimento {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .depoimento-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }
  .depoimento-conteudo {
    flex: 1;
  }
  .depoimento-conteudo h3 {
    margin: 0 0 5px 0;
    color: #333;
  }
  .estrelas {
    color: #ffd700;
    margin-bottom: 10px;
  }
  .depoimento-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .form-grupo {
    margin-bottom: 20px;
  }
  .form-grupo label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
  }
  .form-grupo input[type="text"],
  .form-grupo input[type="email"],
  .form-grupo textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  .form-grupo textarea {
    height: 100px;
    resize: vertical;
  }
  .preview-foto {
    margin-top: 10px;
    max-width: 200px;
  }
  .preview-foto img {
    width: 100%;
    border-radius: 50%;
  }
  .rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
  }
  .rating input {
    display: none;
  }
  .rating label {
    cursor: pointer;
    font-size: 30px;
    color: #ddd;
  }
  .rating input:checked ~ label {
    color: #ffd700;
  }
  .rating label:hover,
  .rating label:hover ~ label {
    color: #ffd700;
  }
  .btn-enviar {
    background: #d7263d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
  }
  .btn-enviar:hover {
    background: #b81f33;
  }
  /* Estilos para a seção de contato */
  .contato-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
  }
  .contato-info, .contato-form {
    flex: 1;
  }
  .contato-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
  }
  .info-item i {
    color: #d7263d;
    font-size: 20px;
    width: 24px;
  }
  .info-item p {
    margin: 0;
    color: #333;
  }
  .contato-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .contato-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
  }
  .contato-form .form-grupo {
    margin-bottom: 20px;
  }
  .contato-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
  }
  .contato-form input,
  .contato-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
  }
  .contato-form textarea {
    height: 120px;
    resize: vertical;
  }
  @media (max-width: 700px) {
    .cardapio {
      flex-direction: column;
      align-items: center;
    }
    .hero {
      font-size: 1.5em;
      height: 180px;
    }
    .galeria-fotos img, .galeria-videos iframe {
      width: 100%;
      height: auto;
      max-width: 320px;
    }
    .whatsapp-float {
      width: 50px;
      height: 50px;
      font-size: 25px;
      bottom: 15px;
      right: 15px;
    }
    .fa-whatsapp {
      font-size: 32px;
    }
    .depoimento {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .contato-container {
      flex-direction: column;
    }
  }
 /* Estilos do Footer */
footer {
    background: #222;
    color: #fff;
    padding: 40px 0 20px 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.footer-info p {
    margin: 0;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Cores específicas para cada rede social no hover */
.social-icon:hover {
    transform: translateY(-5px);
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-instagram:hover {
    color: #e4405f;
}

.fa-twitter:hover {
    color: #1da1f2;
}

.fa-youtube:hover {
    color: #ff0000;
}

.fa-tiktok:hover {
    color: #00f2ea;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.9em;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .social-links {
        justify-content: center;
    }
}
/* Estilos para o Clube de Vantagens */
.clube-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pacote {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s;
}

.pacote:hover {
  transform: translateY(-10px);
}

.pacote.destaque {
  border: 2px solid #d7263d;
  transform: scale(1.05);
}

.pacote.destaque:hover {
  transform: scale(1.05) translateY(-10px);
}

.tag-popular {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #d7263d;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9em;
}

.pacote-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.preco-clube {
  margin-top: 15px;
}

.preco-clube .valor {
  font-size: 2.5em;
  font-weight: bold;
  color: #d7263d;
}

.preco-clube .periodo {
  color: #666;
}

.beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
}

.beneficios li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.beneficios i {
  color: #25d366;
}

.btn-clube {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #d7263d;
  color: white;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-clube:hover {
  background: #b81f33;
}

.btn-clube.destaque {
  background: #25d366;
}

.btn-clube.destaque:hover {
  background: #1ebe57;
}

/* Estilos para Parceiros */
.parceiros-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.parceiro {
  background: white;
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.parceiro:hover {
  transform: translateY(-5px);
}

.parceiro img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.parceiro h3 {
  margin: 10px 0;
  color: #333;
}

.parceiro p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
}

.seja-parceiro {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-parceiro {
  background: #d7263d;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.btn-parceiro:hover {
  background: #b81f33;
}

@media (max-width: 768px) {
  .pacote {
      width: 100%;
      max-width: 320px;
  }
  
  .pacote.destaque {
      transform: none;
  }
  
  .pacote.destaque:hover {
      transform: translateY(-10px);
  }
  
  .parceiro {
      width: 100%;
      max-width: 320px;
  }
}