@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

header {
  background: #000;
  padding: 20px;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 2px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #111;
  padding: 12px;
  flex-wrap: wrap;
}

nav a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #fff;
}

.container {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: #151515;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}

h1, h2, h3 {
  color: #00ffcc;
  margin-bottom: 15px;
}

ul {
  padding-left: 20px;
}

button {
  background: #00ffcc;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 10px;
}

button:hover {
  background: white;
  color: black;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #000;
  padding: 15px;
  text-align: center;
  color: gray;
  margin-top: 40px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #222;
  border: 1px solid #444;
  color: white;
  border-radius: 6px;
}
/* === CTA ANIMATION === */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 255, 204, 0);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
    transform: scale(1);
  }
}

.cta-animate {
  animation: pulseGlow 2s infinite;
  background: linear-gradient(135deg, #00ffcc, #00ccff);
  color: #000;
  font-weight: bold;
}
