@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue: #2d7dd2;
  --red: #ff5a4f;
  --orange: #ff7a30;
  --yellow: #ffb703;
  --light-yellow: #fff1b8;
  --green: #64b53b;
  --cyan: #20b7d8;
  --purple: #9b5de5;
  --pink: #ff8fab;
  --mint: #9be7c0;
  --text: #253047;
  --muted: #4c5870;
  --cream: #fffdf5;
  --sky: #eaf9ff;
  --paper: #ffffff;
  --shadow: 0 16px 34px rgba(37,48,71,.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Baloo 2", Arial, sans-serif;
  background: linear-gradient(180deg, var(--cream) 0%, #f5fff2 100%);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px 0 0;
  background: linear-gradient(180deg, #dff7ff 0%, #fff8d9 56%, #d6f5ac 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  bottom: -42px;
  height: 126px;
  background:
    radial-gradient(ellipse at 12% 100%, #79c945 0 70px, transparent 72px),
    radial-gradient(ellipse at 34% 100%, #a4dc5a 0 86px, transparent 88px),
    radial-gradient(ellipse at 58% 100%, #79c945 0 74px, transparent 76px),
    radial-gradient(ellipse at 82% 100%, #a4dc5a 0 94px, transparent 96px);
}

.navbar {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 20;
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 3px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.logo { line-height: .9; font-weight: 900; }
.logo img { width: 124px; height: auto; }
.logo span { display: block; color: var(--blue); font-size: 28px; }
.logo strong { display: block; color: var(--red); font-size: 28px; }
.logo small { color: var(--cyan); font-weight: 900; }
.nav-links { display: flex; gap: 24px; font-size: 15px; font-weight: 900; }
.nav-links a {
  position: relative;
  padding: 8px 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width .2s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.menu-button { display: none; border: 0; background: var(--light-yellow); color: var(--text); border-radius: 16px; font-size: 24px; padding: 8px 14px; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-4px) rotate(-1deg); filter: saturate(1.08); }
.btn-orange { background: linear-gradient(135deg, #ff7a30, #ff5a4f); color: white; box-shadow: 0 12px 24px rgba(255,107,53,.25); }
.btn-red { background: linear-gradient(135deg, #ff5a4f, #ff8fab); color: white; box-shadow: 0 14px 28px rgba(255,90,79,.25); }
.btn-proof { background: #fff; border: 3px solid var(--red); color: var(--red); box-shadow: 0 10px 20px rgba(255,90,79,.12); }
.btn-submit { background: var(--blue); color: white; box-shadow: 0 14px 28px rgba(45,125,210,.22); }
.btn-light { background: rgba(255,255,255,.55); border: 2px solid #fff; color: var(--text); }
.btn-yellow { background: var(--yellow); border: 3px solid #ffe66d; color: var(--text); box-shadow: 0 10px 20px rgba(255,183,3,.18); }
.btn.big { margin-top: 34px; padding: 17px 36px; text-transform: uppercase; }
.navbar .btn {
  padding: 12px 18px;
  font-size: 14px;
}

.hero-content { position: relative; z-index: 10; display: grid; grid-template-columns: .95fr 1.05fr; align-items: end; gap: 48px; padding-top: 70px; }
.hero-text { padding-bottom: 70px; }
.hero-text > img {
  width: min(100%, 520px);
  height: auto;
}
.tag { display: inline-flex; background: white; color: var(--blue); border-radius: 999px; padding: 10px 16px; font-weight: 900; box-shadow: 0 10px 26px rgba(37,48,71,.08); animation: softBounce 3s ease-in-out infinite; }
.hero h1 { margin: 22px 0 0; font-size: clamp(64px, 8vw, 112px); line-height: .88; letter-spacing: 0; }
.hero h1 span { display: block; color: var(--blue); transform: rotate(-2deg); }
.hero h1 strong { display: block; color: var(--orange); transform: rotate(1deg); }
.verse-card {
  max-width: 560px;
  margin-top: 22px;
  padding: 26px 30px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  border: 3px dashed rgba(255,183,3,.5);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-1deg);
}
.verse-card p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}
.verse-card strong {
  display: block;
  margin-top: 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin-top: 24px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.info-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px 16px;
  border-radius: 20px;
}
.info-grid article + article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 999px;
  background: rgba(37,48,71,.08);
}
.info-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #e8f3ff;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  box-shadow: inset 0 -4px 0 rgba(45,125,210,.12);
  animation: wiggle 4s ease-in-out infinite;
}
.info-grid article:nth-child(2) span {
  background: #fff1b8;
  color: var(--orange);
  box-shadow: inset 0 -4px 0 rgba(255,122,48,.14);
}
.info-grid article:nth-child(3) span {
  background: #efffe9;
  color: var(--green);
  box-shadow: inset 0 -4px 0 rgba(100,181,59,.14);
}
.info-grid strong, .info-grid small { display: block; line-height: 1.12; }
.info-grid strong { font-size: 16px; font-weight: 900; text-transform: uppercase; }
.info-grid small { margin-top: 5px; color: var(--muted); font-weight: 800; font-size: 13px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-image { position: relative; min-height: 560px; }
.hero-image img { width: 100%; height: 560px; object-fit: cover; object-position: top; border-radius: 48px; box-shadow: 0 18px 45px rgba(37,48,71,.12); }
.hero-illustration {
  position: relative;
  isolation: isolate;
  align-self: end;
  width: 112%;
  margin-left: -6%;
  margin-bottom: -8px;
  animation: floatHero 5s ease-in-out infinite;
}
.hero-illustration.fade-in {
  animation: fadeUp .7s ease both, floatHero 5s ease-in-out .8s infinite;
}
.hero-illustration::before {
  content: "";
  position: absolute;
  inset: 8% 3% 7% 6%;
  z-index: -1;
  border-radius: 44% 56% 52% 48% / 47% 44% 56% 53%;
  background: rgba(255,255,255,.56);
  border: 4px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}
.hero-illustration img {
  width: 100%;
  max-width: none;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 22px 20px rgba(37,48,71,.12));
}
.sparkle {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  font-size: 28px;
  animation: floatBits 4.5s ease-in-out infinite;
}
.sparkle-one { left: 4%; top: 16%; color: var(--yellow); }
.sparkle-two { right: 5%; top: 28%; color: var(--red); animation-delay: .8s; }
.sparkle-three { left: 22%; bottom: 6%; color: var(--purple); animation-delay: 1.4s; }
.badge { position: absolute; z-index: 5; width: 116px; height: 116px; display: grid; place-items: center; border-radius: 30px; color: #fff; font-size: 18px; font-weight: 900; text-transform: uppercase; text-align: center; box-shadow: 0 16px 30px rgba(37,48,71,.18); transform: rotate(-8deg); }
.badge.purple { left: 28px; top: 38px; background: var(--purple); }
.badge.red { left: 40px; bottom: 80px; background: var(--red); }
.badge.blue { right: 0; bottom: 42px; background: #28b7c8; }

.decor, .leaf, .shape, .floating { position: absolute; pointer-events: none; }
.decor-left {
  left: -78px;
  top: 104px;
  width: 190px;
  height: 150px;
  background: rgba(139,214,80,.5);
  border-radius: 54% 46% 62% 38% / 44% 58% 42% 56%;
  animation: pulseBlob 7s ease-in-out infinite;
}
.decor-right {
  right: -92px;
  top: -34px;
  width: 230px;
  height: 170px;
  background: rgba(139,214,80,.45);
  border-radius: 42% 58% 35% 65% / 58% 44% 56% 42%;
  animation: pulseBlob 8s ease-in-out infinite reverse;
}
.leaf-one { left: 0; bottom: 0; width: 130px; height: 130px; background: #24a35a; border-radius: 0 90px 0 0; }
.leaf-two { right: 0; bottom: 0; width: 160px; height: 160px; background: #24a35a; border-radius: 90px 0 0 0; }
.floating {
  z-index: 3;
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  opacity: .72;
  text-shadow: 0 8px 18px rgba(37,48,71,.14);
  animation: floatBits 5.8s ease-in-out infinite;
}
.floating-heart { left: 7%; top: 42%; color: var(--red); }
.floating-star { right: 13%; top: 20%; color: var(--yellow); animation-delay: .7s; }
.floating-cloud { left: 43%; top: 15%; color: var(--cyan); animation-delay: 1.3s; }
.floating-smile { right: 5%; top: 58%; color: var(--green); animation-delay: 2s; }
.floating-cross { left: 3%; top: 72%; color: var(--purple); animation-delay: 2.7s; }
.shape-a { left: 8%; top: 25%; color: var(--cyan); font-size: 24px; }
.shape-b { right: 20%; top: 18%; color: var(--red); font-size: 34px; }
.shape-c { left: 35%; top: 42%; color: var(--blue); font-size: 26px; }

.section {
  position: relative;
  padding: 80px 0;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section.compact { padding-top: 30px; }
h2 { margin: 0; color: var(--blue); font-size: clamp(34px, 4vw, 46px); line-height: 1; text-transform: uppercase; font-weight: 900; letter-spacing: 0; }
h2 span { color: var(--yellow); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 45px; align-items: center; }
.about-grid p, .white-box > p, .center > p { color: var(--muted); font-size: 18px; font-weight: 700; line-height: 1.7; }
.cards-grid { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 18px; }
.feature-card { padding: 24px; border-radius: 28px; background: #fff; text-align: center; box-shadow: 0 10px 28px rgba(37,48,71,.07); border: 3px solid rgba(255,255,255,.9); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:nth-child(1) { background: #fff4f2; }
.feature-card:nth-child(2) { background: #fff8d9; }
.feature-card:nth-child(3) { background: #eaf9ff; }
.feature-card:nth-child(4) { background: #efffe9; }
.feature-card:hover { transform: translateY(-7px) rotate(1deg); box-shadow: 0 16px 36px rgba(37,48,71,.1); }
.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-family: "SamsungColorEmoji", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}
.red-bg { background: var(--red); }
.yellow-bg { background: var(--yellow); }
.blue-bg { background: var(--cyan); }
.green-bg { background: var(--green); }
.feature-card h3 { margin: 18px 0 10px; font-size: 16px; line-height: 1.2; text-transform: uppercase; }
.feature-card h3::after { content: ""; display: block; width: 42px; height: 4px; margin: 14px auto 0; border-radius: 999px; background: var(--yellow); }
.feature-card p { color: var(--muted); font-weight: 700; line-height: 1.55; font-size: 14px; }
.white-box { padding: 40px; border-radius: 32px; background: #fff; box-shadow: var(--shadow); border: 4px solid rgba(255,255,255,.9); }
.program-box {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(234,249,255,.92));
  box-shadow: var(--shadow);
  border: 4px solid rgba(255,255,255,.9);
}
.program-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.program-heading p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.program-badge {
  flex: 0 0 auto;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(255,183,3,.24);
}
.program-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.program-day {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(37,48,71,.07);
  border: 3px solid rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease;
}
.program-day:nth-child(1) { background: #eaf9ff; }
.program-day:nth-child(2) { background: #fff8d9; }
.program-day:nth-child(3) { background: #fff4f2; }
.program-day:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(37,48,71,.1);
}
.program-day.featured {
  transform: translateY(-10px);
  border-color: rgba(255,183,3,.55);
}
.program-day.featured:hover { transform: translateY(-14px); }
.day-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 18px 11px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(45,125,210,.2);
}
.day-tag small {
  margin-bottom: 4px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.program-day:nth-child(2) .day-tag { background: var(--green); box-shadow: 0 10px 18px rgba(100,181,59,.2); }
.program-day:nth-child(3) .day-tag { background: var(--red); box-shadow: 0 10px 18px rgba(255,90,79,.2); }
.program-day h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
  text-transform: uppercase;
  font-weight: 900;
}
.program-day p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}
.day-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.day-activities span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.center { text-align: center; }
.subscriptions {
  position: relative;
  background:
    linear-gradient(180deg, rgba(234,249,255,.75), rgba(255,253,245,.2));
}
.lots-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 48px; }
.lot { position: relative; display: flex; flex-direction: column; align-items: center; padding: 54px 30px 32px; border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.lot::after {
  content: "✦";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--yellow);
  font-size: 28px;
  animation: softBounce 3.5s ease-in-out infinite;
}
.green-border { border: 3px solid #a9d76f; }
.blue-border { border: 3px solid #9ddcf4; }
.lot-tag { position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); border-radius: 16px; color: #fff; padding: 12px 34px; font-size: 20px; font-weight: 900; text-transform: uppercase; box-shadow: 0 12px 20px rgba(37,48,71,.14); }
.lot h3 { max-width: 390px; margin: 0 auto; font-size: 24px; line-height: 1.15; text-transform: uppercase; }
.date-pill { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; padding: 15px 20px; border-radius: 18px; background: #f4faff; font-size: 18px; font-weight: 900; }
.lot-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 270px);
  margin-top: 18px;
  padding: 13px 20px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff7a30, #ff5a4f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,107,53,.25);
  font-family: "Nunito", Arial, sans-serif;
  text-transform: uppercase;
}
.lot-price-badge small {
  font-size: 13px;
  font-weight: 900;
}
.lot-price-badge strong {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.lot p { color: var(--muted); font-weight: 800; }
.lot-button {
  width: min(100%, 320px);
  margin-top: auto;
}
.lot p + .lot-button {
  margin-top: 18px;
}
.btn-disabled,
.btn-disabled:hover {
  background: #dbe3ed;
  color: #718096;
  box-shadow: none;
  cursor: not-allowed;
  filter: none;
  transform: none;
}
.lot-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}
.registration-panel {
  margin-top: 34px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.96);
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(37,48,71,.16);
  text-align: left;
}
.registration-intro {
  max-width: 650px;
  margin: 0 auto 26px;
  text-align: center;
}
.form-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--light-yellow);
  color: var(--text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.registration-intro h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}
.registration-intro p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.registration-intro .required-note {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff8d9;
  border: 2px solid #ffe66d;
  color: var(--text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}
.registration-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field {
  display: grid;
  gap: 7px;
}
.form-field label,
.form-check {
  color: var(--text);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 2px solid #f0d77a;
  border-radius: 18px;
  background: #fffdf5;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 14px 16px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 98px;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #ffb703;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,183,3,.18);
}
.full-field {
  grid-column: 1 / -1;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: 20px;
  background: #fff8d9;
  border: 2px solid #ffe66d;
  line-height: 1.4;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 24px;
  background: #fff8d9;
  border: 3px solid rgba(255,183,3,.45);
}
.form-actions .btn-submit {
  width: min(100%, 360px);
  min-height: 58px;
  font-size: 18px;
  text-transform: uppercase;
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}
.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }
.payment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 3px solid rgba(255,183,3,.5);
  border-radius: 22px;
  background: #fff8d9;
  box-shadow: 0 12px 26px rgba(37,48,71,.1);
}
.payment-box__label {
  display: block;
  color: #253047;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.payment-box strong {
  display: block;
  margin-top: 4px;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.payment-steps {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: left;
}
.payment-steps li + li {
  margin-top: 4px;
}
.payment-box__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}
.payment-box__actions .btn {
  flex: 0 0 auto;
  min-width: 230px;
  border-radius: 18px;
}
.payment-warning {
  padding: 14px 18px;
  border: 3px solid rgba(100,181,59,.35);
  border-radius: 22px;
  background: #f5fff2;
  color: #3f8d25;
  box-shadow: 0 10px 22px rgba(100,181,59,.08);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}
.registration-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 32px 20px 54px;
  background: linear-gradient(180deg, #dff7ff 0%, #fff8d9 58%, #d6f5ac 100%);
}
.registration-page-panel {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  margin: 28px auto 0;
}
.registration-intro h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1;
  text-transform: uppercase;
}
.back-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fffdf5;
  border: 2px solid #ffe66d;
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255,183,3,.12);
}
.back-link i {
  color: var(--red);
}
.registration-floating {
  z-index: 1;
  opacity: .58;
}
.registration-floating-heart {
  left: 7%;
  top: 24%;
  color: var(--red);
}
.registration-floating-star {
  right: 10%;
  top: 14%;
  color: var(--yellow);
  animation-delay: .7s;
}
.registration-floating-smile {
  right: 7%;
  bottom: 18%;
  color: var(--green);
  animation-delay: 1.5s;
}
.registration-floating-cross {
  left: 5%;
  bottom: 14%;
  color: var(--purple);
  animation-delay: 2.2s;
}
.registration-floating-heart-two {
  right: 17%;
  top: 38%;
  color: var(--red);
  animation-delay: 1.1s;
}
.registration-floating-star-two {
  left: 15%;
  top: 9%;
  color: var(--yellow);
  animation-delay: 2.8s;
}
.registration-floating-spark {
  left: 12%;
  bottom: 32%;
  color: var(--cyan);
  animation-delay: 3.3s;
}
.registration-floating-cross-two {
  right: 15%;
  bottom: 6%;
  color: var(--purple);
  animation-delay: 4s;
}
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 22px;
}
.success-modal.is-open {
  display: grid;
}
.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37,48,71,.68);
  backdrop-filter: blur(6px);
}
.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  max-height: 90vh; /* NOVO */

  overflow-y: auto; /* NOVO */

  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 4px solid rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(37,48,71,.28);
  text-align: center;
}
.success-modal__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #efffe9;
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
}
.success-modal h2 {
  margin: 0;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}
.success-modal p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
.success-modal .success-modal__protocol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff8d9;
  border: 2px solid #ffe66d;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.success-modal__protocol strong {
  color: var(--red);
  font-size: 16px;
  line-height: 1;
}
.success-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.success-modal__primary-action {
  grid-column: 1 / -1;
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.success-modal__actions .btn-close {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #efffe9;
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
}

.pix-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.pix-info {
    list-style: none;
    margin: 0;
    padding: 0;

    text-align: left;
}

.pix-info li {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 600px) {
    .pix-section {
        flex-direction: column;
    }

    .pix-info {
        text-align: center;
    }
}


.is-hidden {
  display: none !important;
}
.note { margin-top: 18px; }
.info-box {
  position: relative;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,248,217,.95), rgba(234,249,255,.95));
  box-shadow: var(--shadow);
  border: 4px solid rgba(255,255,255,.9);
  overflow: hidden;
}
.info-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}
.info-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.info-float {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  opacity: .24;
  animation: floatBits 5.8s ease-in-out infinite;
}
.info-float-one { left: 28px; top: 26px; color: var(--yellow); }
.info-float-two { right: 42px; top: 58px; color: var(--red); animation-delay: 1s; }
.info-float-three { right: 12%; bottom: 34px; color: var(--purple); animation-delay: 1.8s; }
.info-cards { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: left; }
.info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 245px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(37,48,71,.07);
  border-bottom: 6px solid rgba(255,183,3,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.info-card:hover {
  transform: translateY(-6px) rotate(.5deg);
  box-shadow: 0 16px 34px rgba(37,48,71,.1);
}
.info-card.primary-info {
  background: #fff;
  border-bottom-color: rgba(45,125,210,.45);
}
.info-card span {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--light-yellow);
  font-size: 30px;
  line-height: 1;
  font-family: "SamsungColorEmoji", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  animation: wiggle 4.4s ease-in-out infinite;
}
.info-card:nth-child(2) span { background: #eaf9ff; }
.info-card:nth-child(3) span { background: #efffe9; }
.info-card:nth-child(4) span { background: #fff4f2; }
.info-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.info-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}
.info-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}


footer { background: #fff; }
.footer-cta {
  background:
    radial-gradient(circle at 12% 22%, rgba(255,230,109,.24) 0 58px, transparent 60px),
    radial-gradient(circle at 88% 28%, rgba(155,93,229,.2) 0 68px, transparent 70px),
    linear-gradient(135deg, rgba(45,125,210,.98), rgba(32,183,216,.95));
  color: #fff;
  padding: 34px 0;
}
.footer-adventure {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.footer-copy,
.footer-actions {
  position: relative;
  z-index: 1;
}
.footer-copy {
  grid-column: 1;
}
.footer-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-copy h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1;
}
.footer-copy p {
  margin: 8px 0 0;
  color: #ffe66d;
  font-size: 18px;
  font-weight: 900;
}
.footer-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-actions .btn {
  padding: 13px 20px;
}
.footer-actions .btn-light {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.footer-float {
  position: absolute;
  pointer-events: none;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  opacity: .2;
  animation: floatBits 6s ease-in-out infinite;
}
.footer-float-one { left: 24px; bottom: 22px; color: #ffe66d; }
.footer-float-two { right: 34%; top: 24px; color: #fff; animation-delay: .9s; }
.footer-float-three { right: 28px; bottom: 26px; color: #ffe66d; animation-delay: 1.6s; }
.footer-main {
  background: #fff;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.15fr .7fr 1fr;
  gap: 34px;
  padding: 34px 0 26px;
}
.footer-brand strong,
.footer-brand span {
  display: block;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-brand strong {
  color: var(--blue);
  font-size: 28px;
}
.footer-brand span {
  margin-top: 4px;
  color: var(--red);
  font-size: 22px;
}
.footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}
.footer-links,
.footer-info {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links strong,
.footer-info strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-links a,
.footer-info span {
  color: var(--muted);
  font-weight: 800;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-info span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.35;
}
.footer-info i {
  width: 18px;
  margin-top: 2px;
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 24px;
  border-top: 2px solid #eef3f7;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}
.footer-bottom p:last-child { color: var(--red); }
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: auto;
  padding: 16px 22px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(37,48,71,.28);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
  box-shadow: 0 22px 42px rgba(37,48,71,.32);
}
.whatsapp-float i {
  font-size: 30px;
}
.fade-in { animation: fadeUp .7s ease both; }
.delay { animation-delay: .15s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatHero { 0%, 100% { transform: translateY(0) rotate(.25deg); } 50% { transform: translateY(-5px) rotate(-.3deg); } }
@keyframes floatBits { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-18px) rotate(6deg); } }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-5deg); } 50% { transform: rotate(4deg); } 75% { transform: rotate(-2deg); } }
@keyframes softBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes pulseBlob { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: .72; } }
@keyframes driftClouds { from { transform: translateX(0); } to { transform: translateX(132px); } }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 18px 38px rgba(37,48,71,.28), 0 0 0 0 rgba(37,211,102,.28); } 50% { box-shadow: 0 22px 42px rgba(37,48,71,.3), 0 0 0 12px rgba(37,211,102,0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }
  .desktop-only { display: none; }
  .menu-button { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: calc(100% + 12px); display: none; flex-direction: column; gap: 0; padding: 14px; border-radius: 24px; background: white; box-shadow: 0 14px 30px rgba(37,48,71,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; border-radius: 16px; }
  .nav-links a:hover { background: #fff1b8; }
  .hero-content, .about-grid { grid-template-columns: 1fr; }
  .hero-content {
    gap: 34px;
    padding-top: 46px;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-text { padding-bottom: 0; }
  .hero-text > img {
    width: min(100%, 430px);
    margin: 0 auto;
  }
  .tag,
  .hero-actions {
    justify-content: center;
  }
  .verse-card,
  .info-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .info-grid article {
    text-align: left;
  }
  .hero-illustration {
    width: min(100%, 560px);
    justify-self: center;
    margin-left: 0;
    margin-bottom: 0;
  }
  .hero-illustration img {
    max-height: 430px;
  }
  .floating { opacity: .45; font-size: 30px; }
  .hero-image { min-height: auto; }
  .hero-image img { height: auto; min-height: 420px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .program-days { grid-template-columns: 1fr; }
  .program-day,
  .program-day.featured { min-height: auto; transform: none; }
  .program-day.featured:hover { transform: translateY(-6px); }
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .info-card { min-height: 220px; }
  .footer-adventure { grid-template-columns: 1fr; }
  .footer-copy,
  .footer-actions { grid-column: auto; }
  .footer-actions { justify-content: flex-start; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container, .navbar { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 14px; padding-bottom: 34px; }
  .hero::after { height: 86px; bottom: -34px; opacity: .7; }
  .hero-content { padding-top: 28px; gap: 24px; }
  .floating, .sparkle { display: none; }
  .logo img { width: 112px; }
  .logo span, .logo strong { font-size: 22px; }
  .hero h1 { font-size: 60px; }
  .hero-text > img {
    width: min(100%, 300px);
    margin: 0 auto;
  }
  .tag {
    font-size: 14px;
    padding: 8px 13px;
  }
  .verse-card {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    transform: none;
  }
  .verse-card p {
    font-size: 16px;
    line-height: 1.4;
  }
  .info-grid {
    margin-top: 18px;
    padding: 8px;
    border-radius: 22px;
  }
  .info-grid article {
    min-height: auto;
    padding: 10px 12px;
    text-align: left;
  }
  .hero-illustration {
    width: min(100%, 340px);
  }
  .hero-illustration::before {
    inset: 10% 2% 8%;
  }
  .hero-illustration img {
    max-height: 310px;
  }
  .info-grid, .lots-grid, .cards-grid, .program-days, .info-cards { grid-template-columns: 1fr; }
  .info-grid article + article::before { display: none; }
  .registration-panel { padding: 24px; }
  .registration-form { grid-template-columns: 1fr; }
  .payment-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .form-actions .btn { width: 100%; }
  .success-modal__dialog { padding: 28px 22px; }
  .success-modal__actions .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-image img { min-height: 360px; border-radius: 34px; }
  .badge { width: 88px; height: 88px; font-size: 13px; border-radius: 24px; }
  .badge.purple { left: 14px; top: 22px; }
  .badge.red { left: 20px; bottom: 64px; }
  .badge.blue { right: 4px; bottom: 30px; }
  .section { padding: 58px 0; }
  .white-box { padding: 26px; }
  .info-box { padding: 28px; }
  .info-float { display: none; }
  .info-card { min-height: auto; }
  .program-box { padding: 26px; }
  .program-heading { display: block; margin-bottom: 24px; }
  .program-badge { display: inline-flex; margin-top: 16px; }
  .program-day { padding: 24px; }
  .footer-cta { padding: 30px 0; }
  .footer-adventure { text-align: center; }
  .footer-actions { justify-content: center; }
  .footer-actions .btn { width: 100%; }
  .footer-float { display: none; }
  .footer-content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-info span { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 66px;
    height: 66px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .whatsapp-float span { display: none; }
}
