* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(to right, #f1f5f9, #e2e8f0);
  color: #1e1e1e;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
ul {
  padding-left: 1.2rem;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}
header {
  background: linear-gradient(135deg, #007cf0, #00dfd8);
  color: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.hero-text {
  max-width: 600px;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero-img {
  max-width: 400px;
  width: 100%;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .hero-img {
    margin-top: 0;
  }
}
.cta {
  background: linear-gradient(to right, #00dfd8, #007cf0);
  color: white;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: bold;
  transition: transform 0.3s;
  display: inline-block;
}
.cta:hover {
  transform: scale(1.05);
}
h2 {
  text-align: center;
  font-size: 2rem;
  margin: 4rem 0 2rem;
}
.highlight-text {
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  background: #fff;
  padding: 1.5rem 2rem;
  border-left: 5px solid #007cf0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;

  /* NOVOS ESTILOS */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(0, 124, 240, 0.05);
  border-radius: 50%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}
.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}
.card svg {
  color: #007cf0;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}
.card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  list-style: none;
}

.card ul li::before {
  content: "✔️";
  margin-right: 0.5rem;
  color: #00c851;
}
.price {
  font-size: 1.3rem;
  color: #007cf0;
  margin: 0.8rem 0;
}

.price del {
  color: #999;
  margin-right: 0.5rem;
}
.btn-offer {
  display: inline-block;
  background: linear-gradient(to right, #00c851, #007cf0);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
}

.btn-offer:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.testimonial {
  text-align: center;
  border: none;
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f8ff, #ffffff);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.testimonial strong {
  font-size: 1.1rem;
  color: #007cf0;
}

.testimonial em {
  font-style: normal;
  color: #666;
  font-size: 0.95rem;
}

.testimonial p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.faq {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #007cf0;
  transition: box-shadow 0.3s ease;
}

.faq:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.faq h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #007cf0;
}

.faq p {
  color: #444;
  font-size: 0.95rem;
}

footer {
  padding: 3rem 1rem;
  font-size: 0.9rem;
  color: #8c8c8c;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  text-align: center;
        padding: 2rem 1rem;
        background: #f5f5f5;
        font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: linear-gradient(to right, #00dfd8, #007cf0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float svg {
  color: white;
  width: 28px;
  height: 28px;
}
h1,
h2,
h3,
h4 {
  letter-spacing: -0.5px;
}

p {
  color: #4a4a4a;
}

strong {
  color: #007cf0;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.badge-green {
  background: linear-gradient(to right, #00c851, #007f5f);
}

.badge-yellow {
  background: linear-gradient(to right, #ffcc00, #f59e0b);
}

.badge-blue {
  background: linear-gradient(to right, #007cf0, #4f46e5);
}

.tag-popular {
  background: #f59e0b;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-popular-pulse {
  margin-top: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(90deg, #f59e0b, #facc15);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlow 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  display: inline-block;

  /* NOVO */
  align-self: center;
}


@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}

.email {
  padding: 0.75rem; border-radius: 8px; border: 1px solid #ccc
}

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 150px;
}
.faixa-selos img {
  object-fit: contain;
}

.form-contato {
  max-width: 600px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-contato label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1rem;
  color: #1e1e1e;
}

.form-contato input,
.form-contato select,
.form-contato textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
  background: #fff;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.form-contato input:focus,
.form-contato select:focus,
.form-contato textarea:focus {
  border-color: #007cf0;
  box-shadow: 0 0 0 3px rgba(0, 124, 240, 0.1);
  outline: none;
}

.form-contato button[type="submit"] {
  background: linear-gradient(to right, #00dfd8, #007cf0);
  color: #fff;
  padding: 1rem;
  border-radius: 999px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.form-contato button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .form-contato {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.modal button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #00dfd8, #007cf0);
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 999px;
  cursor: pointer;
}
