/* estilo.css atualizado com destaques animados */
:root {
  --verde: #00c853;
  --cinza: #212121;
  --branco: #fff;
  --fonte: 'Inter', sans-serif;
}

body {
  background: linear-gradient(135deg, #140e0e,  #251c1c);
  color: var(--branco);
  font-family: var(--fonte);
  padding: 1rem;
  text-align: center;
}
.fixed-bottom-btn {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #00c853;
      color: white;
      font-weight: bold;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 0 10px rgba(0, 200, 83, 0.6);
    }

    .topo {
      margin-top: 1rem;
      margin-bottom: 2rem;
    }
    .logo {
      height: 220px;
      max-width: 90vw;
    }
    .topo h1 {
      font-size: 3.2rem;
      color: rgb(255, 255, 255);
      margin-top: 1rem;
    }
    .subtitulo {
      font-size: 1.rem;
      color: #00c853;
      margin-top: 2rem;
      font-weight: bold ;
    }

    @media (max-width: 480px) {
      .fixed-bottom-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.4rem;
      }
    }

.botao,
.action-button {
  display: inline-block;
  background-color: var(--verde);
  color: var(--branco);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  margin: 1rem auto;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.botao:hover,
.action-button:hover {
  background-color: #00fddb;
  transform: scale(1.05);
}

.video-container iframe {
  width: 100%;
  max-width: 380px;
  height: 675px;
  border-radius: 16px;
  margin: 0 auto 2rem;
  display: block;
}

.item {
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 16px;
  max-width: 600px;
  background: #1a1a1a;
  border: 2px solid #00ffb366;
  box-shadow: 0 0 15px #00ffb322;
  animation: glowborder 4s infinite ease-in-out;
}

@keyframes glowborder {
  0% { box-shadow: 0 0 10px #00ffb333; }
  50% { box-shadow: 0 0 25px #00ffb399; }
  100% { box-shadow: 0 0 10px #00ffb333; }
}

.container-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.description {
  text-align: left;
}

.destaque11 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00e5ff;
}

.destaque4 {
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
}

.destaque2 {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--verde);
  margin-bottom: 1rem;
  text-align: center;
}

.faq-item {
  background: #2a2a2a;
  padding: 1rem;
  margin: 0.5rem 0;
  border-radius: 12px;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.toggle-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  display: none;
  color: #ccc;
}

.foto2 {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.preco {
  font-size: 2.8rem;
  color: #00ffcc;
  font-weight: bold;
  animation: pulse-preco 2s infinite;
}

@keyframes pulse-preco {
  0%, 100% { transform: scale(1); color: #00ffcc; }
  50% { transform: scale(1.1); color: #ffffff; }
}

.fixed-bottom-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00c853;
  color: white;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.6);
  animation: bounce-fix 2s infinite;
}

@keyframes bounce-fix {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 480px) {
  .fixed-bottom-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.4rem;
  }
}
