:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ef5350;
  --yellow: #fdd835;
  --yellow-dark: #f9a825;
  --white: #ffffff;
  --off-white: #fff8f8;
  --text-dark: #1a1a1a;
  --text-gray: #555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.nav-logo {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.nav-cta {
  background: var(--yellow);
  color: var(--red-dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* HERO */
.hero {
  margin-top: 64px;
  background: var(--red);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-tag {
  background: var(--yellow);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  animation: fadeDown 0.6s ease both;
}
.hero h1 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeDown 0.6s 0.1s ease both;
  margin-bottom: 18px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeDown 0.6s 0.3s ease both;
}
.btn-primary {
  background: var(--yellow);
  color: var(--red-dark);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
  animation: fadeDown 0.6s 0.4s ease both;
}
.badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 14px 22px;
  color: white;
  text-align: center;
}
.badge-num {
  font-family: "Baloo 2", cursive;
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.badge-label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 2px;
  display: block;
}

/* LEVELS */

/* scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.section {
  padding: 80px 5%;
}
.section-title {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  color: var(--red-dark);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-bottom: 50px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.level-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(211, 47, 47, 0.1);
  border-top: 5px solid var(--red);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.level-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(211, 47, 47, 0.2);
}
.level-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.level-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.4rem;
  color: var(--red-dark);
  margin-bottom: 10px;
}
.level-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}
.level-card .age-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

/* MVV */
.mvv-section {
  background: var(--red-dark);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.mvv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mvv-section .section-title {
  color: var(--white);
}
.mvv-section .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.mvv-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(10px);
}
.mvv-card-title {
  background: var(--yellow);
  color: var(--red-dark);
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 1.1rem;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.mvv-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.7;
}
.mvv-values-list {
  list-style: none;
}
.mvv-values-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.mvv-values-list li::before {
  content: "★";
  color: var(--yellow);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* EXTRAS */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.extra-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-bottom: 4px solid var(--yellow-dark);
  transition: transform 0.3s;
}
.extra-card:hover {
  transform: translateY(-6px);
}
.extra-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
  display: block;
}
.extra-card h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  color: var(--red-dark);
  margin-bottom: 8px;
}
.extra-card p {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: "❤️";
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  bottom: -4rem;
  right: -3rem;
  pointer-events: none;
}
.cta-section h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25d366;
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.cta-whatsapp svg {
  width: 28px;
  height: 28px;
}
.cta-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

/* FOOTER */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 30px 5%;
  font-size: 0.88rem;
}
footer span {
  color: var(--yellow);
  font-weight: 700;
}

/* FORM SECTION */
.form-section {
  background: var(--off-white);
  padding: 90px 5%;
  position: relative;
}
.form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 12px 60px rgba(211, 47, 47, 0.13);
  overflow: hidden;
}
.form-header {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 40px 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.form-header-tag {
  background: var(--yellow);
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
}
.form-header h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.form-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  position: relative;
}
.form-body {
  padding: 44px 48px 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row.single {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-group label .licon {
  font-size: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid #eeeeee;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: white;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.08);
}
.form-group select {
  cursor: pointer;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-submit {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px;
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  margin-top: 10px;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
  background: #22c55e;
}
.form-submit:active {
  transform: translateY(0);
}
.form-submit svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.form-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.82rem;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-note::before {
  content: "🔒";
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 600;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #eee;
}

.trust-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff5f5;
  border: 1px solid rgba(211, 47, 47, 0.12);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red-dark);
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-body {
    padding: 28px 22px 32px;
  }
  .form-header {
    padding: 30px 22px 26px;
  }
}

/* FLOATING WA BUTTON */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: white;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  z-index: 99;
  animation: pulse 2.5s infinite;
  transition: transform 0.2s;
}
.float-wa:hover {
  transform: scale(1.1);
}
.float-wa svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DIVIDER */
.divider {
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--yellow));
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-badges {
    gap: 12px;
  }
}
