﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}


body {
  background: #000;
  color: #fff;
  padding: 20px;
}


header {
  text-align: center;
  margin-bottom: 40px;
}


header h1 {
  font-size: 32px;
  color: #00ff3c;
  text-shadow: 0 0 10px #00ff3c;
}


.agency-info {
  margin-top: 10px;
  font-size: 16px;
}


.stars {
  color: gold;
  font-size: 22px;
  margin-top: 10px;
}


.plans {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}


.plan {
  border: 2px solid #00ff3c;
  box-shadow: 0 0 20px #00ff3c;
  border-radius: 15px;
  padding: 25px;
  width: 320px;
  background: #000;
}


.plan h2 {
  color: #00ff3c;
  text-align: center;
  margin-bottom: 10px;
}


.price {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
}


.plan ul {
  list-style: none;
}


.plan ul li {
  margin-bottom: 12px;
  font-size: 14px;
}


.whatsapp-button {
  display: block;
  margin-top: 25px;
  text-align: center;
  padding: 15px;
  border-radius: 30px;
  background: #00ff3c;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 15px #00ff3c;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* Hover suave, sem piscar */
.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ff3c;
}


/* Garantia total: nenhuma animação */
.whatsapp-button {
  animation: none !important;
}