:root {
  --verde: #a4ff00;
  --preto: #000;
  --branco: #fff;
  --destaque: #1a8800;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--preto);
  color: var(--verde);
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.section {
  padding: 50px 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

h1, h2, h3 {
  margin-bottom: 20px;
}

p, ul {
  font-size: 1.1rem;
  margin: 10px auto;
  max-width: 800px;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: '✔️';
  margin-right: 10px;
  color: #00ff00;
}

.btn {
  background-color: var(--destaque);
  color: white;
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #24c000;
}

h1 {
  font-size: 3.4rem;
  color: var(--verde);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 10px 0 20px;
}

.highlight {
  background: var(--branco);
  color: var(--preto);
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #333;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.strike {
  text-decoration: line-through;
  font-size: 1.2rem;
  color: red;
}

footer {
  background-color: #111;
  padding: 30px;
  color: #aaa;
  font-size: 0.9rem;
}

footer a {
  color: var(--verde);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  } to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel.slide {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 20px auto;
  border-radius: 10px;
}

.carousel-track.slide {
  display: flex;
  animation: scroll-carousel 25s linear infinite;
  gap: 20px;
}

.carousel-track.slide img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
  box-shadow: 0 0 10px #000;
}

@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.garantia-bloco {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 20px;
}

.selo-grande {
  width: 100px;
  height: auto;
  animation: pulse 2s infinite ease-in-out;
}

.garantia-texto h2 {
  color: #a4ff00;
  font-size: 1.6rem;
}

.garantia-texto p {
  color: #e0ffe0;
  max-width: 700px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.garantia-bloco .btn {
  margin-top: 20px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}

.subtitulo-destaque {
  font-size: 1.8rem;
  color: #a4ff00;
  margin-bottom: 20px;
  text-align: center;
}

.lista-completa {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.lista-completa ul {
  flex: 1 1 350px;
  font-size: 1.1rem;
  color: #fff;
  list-style: none;
  text-align: left;
}

.lista-completa ul li::before {
  content: '✔️ ';
  color: #00ff00;
  margin-right: 5px;
}

.lista-completa .imagem-lista {
  flex: 1 1 300px;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
  object-fit: cover;
}

.imagem-com-botao {
  text-align: center;
  margin-bottom: 20px;
}

.texto-final {
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #ccff33;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rodape-custom {
  background-color: #000;
  color: #a4ff00;
  text-align: center;
  padding: 50px 20px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
}

.cta-final h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contato-instagram,
.contato-whatsapp {
  margin-top: 30px;
}

.botao-instagram,
.botao-whatsapp {
  display: block;
  max-width: 400px;
  margin: 10px auto;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.botao-instagram.amarelo {
  background: linear-gradient(90deg, #f9d423, #ff4e00);
  color: white;
}

.botao-instagram.roxo {
  background: linear-gradient(90deg, #7b4397, #dc2430);
  color: white;
}

.botao-whatsapp {
  background-color: #1a8800;
  color: white;
}

.rodape-legal {
  background-color: #111;
  color: #ccc;
  font-size: 0.8rem;
  padding: 30px 20px;
  margin-top: 30px;
  border-top: 1px solid #222;
}

.ampulheta-box {
  margin-top: 20px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.ampulheta-box img {
  width: 100px;
  max-width: 100%;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    display: block;
    width: 90%;
    max-width: 350px;
    margin: 20px auto;
    font-size: 1.2rem;
    padding: 16px;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
  }

  h1 {
    font-size: 2.2rem;
  }

  .lista-completa {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lista-completa ul {
    text-align: center;
    color: #fff !important;
  }

  .lista-completa ul li::before {
    color: #00ff00 !important;
  }

  .lista-completa .imagem-lista {
    width: 90%;
    max-width: 350px;
    margin-top: 20px;
  }
}
.mais-destaque {
  background-color: white;
  color: black;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  display: inline-block;
  margin: 20px auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-align: center;
}
.mais-destaque {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 5px rgba(255,255,255,0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 15px rgba(255,255,255,0.4); }
  100% { transform: scale(1); box-shadow: 0 0 5px rgba(255,255,255,0.2); }
}
.lista-completa .imagem-lista {
  width: 90%;
  max-width: 350px;
  max-height: 300px; /* <--- adicione isso */
  object-fit: cover; /* importante para manter o crop bonito */
  margin-top: 20px;
}

.depoimentos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.depoimento img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
  .depoimentos-container {
    gap: 15px;
    padding: 0 10px;
  }

  .depoimento img {
    max-width: 100%;
  }
}

.imagem-destaque {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  margin-top: 20px;
}

.frase-destaque {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 25px;
  color: #ccff33;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
