/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000; /* Preto */
    color: #fff;
    line-height: 1.6;
}

/* Cabeçalho */
header {
    background-color: #000;
    padding: 10px 20px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #FFD700; /* Amarelo ouro */
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

.logo {
    height: 40px;
}

/* Imagem principal */
#hero-image {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Texto abaixo da imagem */
#hero-text {
    text-align: center;
    padding: 40px 20px;
}

#hero-text h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 20px;
}

#hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #FFD700;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background-color: #fff;
    color: #000;
}
/* Menu padrão */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 15px 30px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #FFD700;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #fff;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #FFD700;
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #000;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* Rodapé */
footer {
    background-color: #111;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #FFD700;
}

/* Responsividade */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    #hero-text h1 {
        font-size: 2rem;
    }

    #hero-text p {
        font-size: 1rem;
    }
}
/* Overlay da busca */
.search-overlay {
    position: fixed;
    top: 10px; /* altura próxima ao menu */
    right: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999; /* fica acima do menu */
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-input {
    padding: 5px 10px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #000;
    color: #fff;
}

.search-btn {
    background-color: #FFD700;
    color: #000;
    padding: 5px 15px;
    margin-left: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background-color: #fff;
    color: #000;
}
/* Overlay escuro */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Conteúdo central */
.popup-content {
  background: #000;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  border: 2px solid #FFD700;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

#enable {
  padding: 15px 25px;
  font-size: 16px;
  background: #FFD700;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 5px;
}

#close-popup {
  padding: 10px 20px;
  font-size: 14px;
  background: #444;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
}
.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 60px;
  right: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  animation: vibrate 2s infinite; /* animação contínua */
}
/* Keyframes da vibração */
@keyframes vibrate {
  0% { transform: translate(0); }
  10% { transform: translate(-2px, 2px); }
  20% { transform: translate(-2px, -2px); }
  30% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  50% { transform: translate(-2px, 2px); }
  60% { transform: translate(2px, 2px); }
  70% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, -2px); }
  90% { transform: translate(-2px, 2px); }
  100% { transform: translate(0); }
}


.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.install-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #000;
  color: #FFD700;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}

.install-banner.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.install-banner button {
  margin: 10px;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#install-btn {
  background: #FFD700;
  color: #000;
}

#close-install {
  background: #444;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.contact-overlay.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.contact-content {
  background: #111;
  color: #FFD700;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
}

.contact-content h2 {
  margin-bottom: 20px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact-form input,
#contact-form textarea {
  padding: 10px;
  border: 1px solid #FFD700;
  border-radius: 5px;
  background: #000;
  color: #fff;
}

#contact-form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#contact-form button[type="submit"] {
  background: #FFD700;
  color: #000;
}

#close-contact {
  background: #444;
  color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.about-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.about-overlay.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.about-content {
  background: #111;
  color: #FFD700;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  text-align: left;
}

.about-content h2 {
  margin-bottom: 20px;
  text-align: center;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.5;
}

#close-about {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background: #FFD700;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

#close-about:hover {
  background: #e6c200;
}
#social {
  background: #000;
  color: #FFD700;
  text-align: center;
  padding: 30px 20px;
}

#social h2 {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.2);
}
.pedido-btn {
  background: #FFD700;   /* fundo dourado */
  color: #000 !important; /* força texto preto */
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pedido-btn:hover {
  background: #fff;
  color: #000 !important; /* mantém texto preto no hover */
  transform: scale(1.1);
}

/* Efeito de pulsar para chamar atenção */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.pedido-btn {
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .pedido-btn {
    display: block;
    text-align: center;
    margin: 10px auto;
    width: 80%;          /* ocupa mais espaço */
    font-size: 1.1rem;   /* texto maior */
  }
}
