/* 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=Show+Mini+Pizza') 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 {
  text-decoration: none;  /* Remove o sublinhado */
  display: block;  /* Mantém comportamento de botão */
  padding: 12px 24px;    /* Espaçamento interno */
  background: #d7263d;   /* Cor de fundo */
  color: white;          /* Cor do texto */
  border-radius: 5px;    /* Bordas arredondadas */
  font-weight: bold;     /* Texto em negrito */
  transition: all 0.3s;  /* Animação suave */
  border: none;          /* Remove borda */
  cursor: pointer;       /* Cursor de clique */
  text-align: center;    /* Centraliza o texto */
  margin: 0 auto;
}

.btn-clube:hover {
  background: #b81f33;   /* Cor mais escura ao passar o mouse */
  transform: translateY(-2px); /* Efeito de elevação */
  text-decoration: none;  /* Mantém sem sublinhado mesmo no hover */
}

.btn-clube:active {
  transform: translateY(0); /* Efeito de clique */
}

.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;
  text-decoration: none;
}

.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;
  text-decoration: none;
}

.parceiro:hover {
  transform: translateY(-5px);
  text-decoration: none;
}

.parceiro img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.parceiro h3 {
  margin: 10px 0;
  color: #333;
  text-decoration: none;
}

.parceiro p {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
  text-decoration: none;
}

.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 {
  text-decoration: none;  /* Remove o sublinhado */
  display: inline-block;
  padding: 12px 24px;
  background: #d7263d;    /* Cor de fundo - você pode alterar */
  color: white;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-parceiro:hover {
  background: #b81f33;    /* Cor mais escura ao passar o mouse */
  transform: translateY(-2px);
  text-decoration: none;  /* Mantém sem sublinhado mesmo no hover */
}

.btn-parceiro:active {
  transform: translateY(0);
}

@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;
  }
}

.depoimentos-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.depoimento {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.depoimento-foto {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.estrelas {
  color: #ffd700;
  font-size: 20px;
  margin: 10px 0;
}

.sem-depoimentos {
  text-align: center;
  color: #666;
  font-style: italic;
  grid-column: 1 / -1;
  padding: 20px;
}

/* Estilos para a seção FAQ */
.faq-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  background-color: #f9f9f9;
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #666;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  padding: 1rem;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Seção Sobre */
.sobre-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sobre-imagem {
  flex: 1;
}

.sobre-imagem img {
  width: 100%; /* Garante que a imagem não ultrapasse a largura do container */
  height: auto; /* Mantém a proporção da imagem */
  max-height: 300px; /* Define uma altura máxima para a imagem */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sobre-texto {
  flex: 1;
}

.sobre-texto h2 {
  color: #d32f2f;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
  font-size: 1.1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .sobre-imagem img {
    height: 250px;
  }
  
  .sobre-texto h2 {
    font-size: 2rem;
    text-align: center;
  }
}

