* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #1f3c88, #274bb5);
  color: white;
  padding: 80px 20px;
}

.hero-content {
  max-width: 500px;
}

.highlight {
  color: #2ecc71;
}

.hero-img {
  max-width: 300px;
  margin-top: 20px;
}

.btn-primary {
  background: #2ecc71;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.light {
  background: #f4f6f8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.icon {
  font-size: 30px;
  color: #1f3c88;
  margin-bottom: 10px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.price-box {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
}

.form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form input, .form select {
  padding: 12px;
}

.form button {
  background: #1f3c88;
  color: white;
  padding: 14px;
  border: none;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 20px;
  color: #777;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
}

.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.exit-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.socials {
  text-align: center;
  margin-bottom: 20px;
}

.socials a {
  color: #1f3c88;
  font-size: 24px;
  margin: 0 10px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
}

.close-popup:hover {
  color: #000;
}

.exit-box {
  position: relative;
}
