/* =========================
   RESET & GLOBAL
========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;

  overflow-x: hidden;

  font-family: Arial, sans-serif;

  background: linear-gradient(180deg, #1b1725 0%, #241d33 45%, #2a2340 100%);

  color: #f3f1f8;

  line-height: 1.6;
}

/* =========================
   SECTIONS
========================= */

section {
  padding: 70px 20px;

  max-width: 1200px;

  margin: auto;

  position: relative;
}

section:not(:last-child)::after {
  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 75%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
}

/* =========================
   TYPOGRAPHY
========================= */

section h2 {
  color: #ffffff;

  font-size: 2.4rem;

  font-weight: 700;

  margin-bottom: 50px;

  text-align: center;

  letter-spacing: -0.5px;
}

section h2::after {
  content: "";

  display: block;

  width: 90px;

  height: 5px;

  margin: 18px auto 0;

  border-radius: 999px;

  background: linear-gradient(90deg, #7b5cff, #b69cff);
}

/* =========================
   HEADER
========================= */

header {
  background: #4b2e83;

  color: white;

  padding: 80px 20px;

  text-align: center;
}

header h1 {
  margin: 0;

  font-size: 38px;

  font-weight: 600;
}

header p {
  font-size: 18px;

  margin-top: 12px;

  opacity: 0.9;
}

header p strong {
  font-weight: 600;
}

.cta-highlight {
  font-size: 24px;

  font-weight: 700;

  color: #ffffff;
}

.cta-highlight::after {
  content: "";

  display: block;

  width: 60%;

  height: 2px;

  background: #ffffff;

  margin: 8px auto 0;

  opacity: 0.3;
}

/* =========================
   BUTTONS
========================= */

.btn,
.btn-small {
  display: inline-block;

  margin-top: 15px;

  background: linear-gradient(135deg, #7b5cff, #9d7dff);

  color: white;

  padding: 14px 30px;

  border-radius: 999px;

  text-decoration: none;

  font-weight: 600;

  border: none;

  transition: 0.3s ease;
}

.btn:hover,
.btn-small:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 28px rgba(123, 92, 255, 0.35);
}

.featured-btn {
  background: rgba(255, 255, 255, 0.14);

  border: 1px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(10px);
}

/* =========================
   FOOTER
========================= */

footer {
  margin-top: 80px;

  padding: 40px 20px;

  text-align: center;

  background: rgba(255, 255, 255, 0.04);

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

/* Footer Title */

.footer-title {
  color: white;

  font-size: 1.15rem;

  font-weight: 600;

  margin-bottom: 12px;
}

/* Footer Text */

.footer-text {
  color: rgba(255, 255, 255, 0.68);

  font-size: 0.95rem;

  line-height: 1.8;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp {
  position: fixed;

  bottom: 20px;

  left: 20px;

  width: 58px;

  height: 58px;

  border-radius: 50%;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

  z-index: 9999;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}
