:root {
  --cream: #0f1416;
  --paper: #161d20;
  --ink: #f7f3ea;
  --muted: #b8c1bd;
  --green: #1aa686;
  --green-dark: #dff7ef;
  --teal: #37c8c2;
  --aqua: #173438;
  --yellow: #f2c65a;
  --orange: #e7894f;
  --coral: #ee6759;
  --purple: #c7b6ff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 154px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 200, 194, 0.12), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(238, 103, 89, 0.1), transparent 26%),
    #0b1012;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 136px;
  padding: 14px max(20px, calc((100vw - var(--wrap)) / 2));
  background: #071113;
  border-bottom: 1px solid rgba(55, 200, 194, 0.22);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 19, 0.08), rgba(7, 17, 19, 0.34) 42%, rgba(7, 17, 19, 0.12)),
    linear-gradient(180deg, rgba(7, 17, 19, 0.08), rgba(7, 17, 19, 0.5));
}

.header-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #071113;
}

.header-bg div {
  display: grid;
  place-items: center;
  min-width: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 62%),
    #071113;
  overflow: hidden;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.topbar nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: rgba(7, 17, 19, 0.38);
  backdrop-filter: blur(8px);
}

.topbar nav a:hover {
  color: #fff;
}

.top-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.top-cta,
.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(240, 82, 69, 0.24);
}

.top-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.top-cta:hover,
.button.primary:hover {
  box-shadow: 0 18px 38px rgba(240, 82, 69, 0.3);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: rgba(11, 70, 84, 0.32);
  box-shadow: 0 14px 30px rgba(11, 70, 84, 0.1);
}

.button.full {
  width: 100%;
}

.section,
.hero,
.proof-strip {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
  min-height: 670px;
  padding: 54px 0 68px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(26, 166, 134, 0.18), rgba(11, 16, 18, 0.78) 42%, rgba(238, 103, 89, 0.1)),
    #0b1012;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.1;
}

h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 20px;
  line-height: 1.18;
}

.lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  padding: 9px 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: rgba(247, 243, 234, 0.9);
  font-size: 14px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(247, 243, 234, 0.72);
  font-weight: 800;
}

.hero-note strong {
  color: var(--coral);
}

.hero-product {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.mockup {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f5ee;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.main-mockup {
  position: absolute;
  inset: 70px 20px auto 36px;
  transform: rotate(-2deg);
  animation: floatMain 7s ease-in-out infinite;
}

.side-mockup {
  position: absolute;
  width: 38%;
  animation: floatSmall 6s ease-in-out infinite;
}

.side-a {
  left: 0;
  top: 6px;
  transform: rotate(4deg);
}

.side-b {
  right: 0;
  bottom: 8px;
  transform: rotate(3deg);
  animation-delay: -1.8s;
}

.price-sticker {
  position: absolute;
  right: 28px;
  top: 36px;
  z-index: 4;
  padding: 12px 15px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: #123039;
  box-shadow: 0 16px 30px rgba(8, 99, 79, 0.18);
  text-align: center;
}

.price-sticker span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-sticker strong {
  display: block;
  font-size: 27px;
  line-height: 1;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
}

.proof-strip div {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 118px;
  border-radius: var(--radius);
  background: #141d20;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  padding: 20px 18px;
  text-align: center;
}

.proof-strip strong {
  display: block;
  color: var(--coral);
  font-size: 40px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 243, 234, 0.9);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
}

.section {
  padding: 82px 0;
}

.faith-moment {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 6vw, 76px);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 17, 19, 0.22), rgba(7, 17, 19, 0.68) 52%, rgba(7, 17, 19, 0.92)),
    url("assets/logo-jesus-criancas.png") left center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faith-copy {
  width: min(520px, 100%);
  margin-left: auto;
}

.faith-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: 17px;
}

.faith-copy .button {
  margin-top: 24px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading p,
.inside-copy p,
.offer-copy p {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.resources {
  background: #101719;
  box-shadow: 0 0 0 100vmax #101719;
  clip-path: inset(0 -100vmax);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resource-grid article {
  position: relative;
  min-height: 190px;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.resource-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--coral));
  opacity: 0.86;
}

.resource-grid article:hover,
.bonus-layout article:hover,
.module-grid div:hover,
.faq details:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 70, 84, 0.28);
  box-shadow: 0 20px 42px rgba(11, 70, 84, 0.12);
}

.resource-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--green-dark);
  font-weight: 900;
}

.resource-grid p {
  margin: 0;
  color: rgba(247, 243, 234, 0.68);
}

.how {
  background: #071113;
  color: #fff;
  box-shadow: 0 0 0 100vmax #071113;
  clip-path: inset(0 -100vmax);
}

.how h2,
.how .eyebrow {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps div {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.steps strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
}

.steps h3 {
  color: #fff;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.inside {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.inside-copy .button {
  margin-top: 24px;
}

.inside-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.inside-gallery figure {
  margin: 0;
  display: grid;
  grid-template-rows: 1fr 56px;
  min-height: 304px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.inside-gallery figure:hover {
  border-color: rgba(11, 70, 84, 0.28);
  box-shadow: 0 22px 44px rgba(11, 70, 84, 0.12);
}

.inside-gallery .is-featured {
  transform: none;
}

.inside-gallery img {
  width: 100%;
  height: 248px;
  object-fit: contain;
  object-position: center top;
  background: #f8f5ee;
}

figcaption {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 10px 14px;
  color: rgba(247, 243, 234, 0.92);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.bonuses {
  background: #101719;
  box-shadow: 0 0 0 100vmax #101719;
  clip-path: inset(0 -100vmax);
}

.bonus-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bonus-layout article {
  display: grid;
  grid-template-rows: 210px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.bonus-layout img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center top;
  background: #f8f5ee;
}

.bonus-layout div {
  padding: 16px;
}

.bonus-layout h3 {
  min-height: 48px;
}

.bonus-layout p {
  margin: 0;
  color: rgba(247, 243, 234, 0.68);
}

.modules {
  background: var(--cream);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.module-grid div {
  display: grid;
  align-content: start;
  min-height: 126px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--purple);
}

.module-grid span {
  color: rgba(247, 243, 234, 0.92);
  font-size: 18px;
  font-weight: 900;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 500px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: #071113;
  color: #fff;
  box-shadow: 0 0 0 100vmax #071113;
  clip-path: inset(0 -100vmax);
}

.offer h2,
.offer .eyebrow {
  color: #fff;
}

.offer-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 800;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

.price-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: #f8f5ee;
  color: #17232a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.label {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: #e1f3f2;
  color: #0b4654;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(11, 70, 84, 0.18);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(18, 103, 119, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffaf0, #eef8f5);
}

.guarantee-badge img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.guarantee-badge span {
  color: #173f4b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.price {
  margin: 22px 0;
  padding: 18px;
  border-radius: var(--radius);
  background: #fff6d7;
  border: 1px solid rgba(255, 216, 77, 0.8);
}

.price span {
  display: block;
  color: #66737a;
  font-weight: 900;
}

.price strong {
  display: block;
  color: var(--coral);
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1;
}

.price-card p {
  color: #66737a;
  font-size: 13px;
}

.faq {
  max-width: 920px;
}

.faq details {
  padding: 18px 20px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.faq summary {
  cursor: pointer;
  color: rgba(247, 243, 234, 0.94);
  font-weight: 900;
}

.faq p {
  margin: 12px 0 0;
  color: rgba(247, 243, 234, 0.68);
}

.floating-buy {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--coral);
  color: #fff;
  box-shadow: 0 20px 44px rgba(8, 99, 79, 0.22);
  transform: translateY(90px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.floating-buy.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.floating-buy span {
  font-size: 12px;
  font-weight: 800;
}

.floating-buy strong {
  font-size: 18px;
}

.footer {
  padding: 54px max(20px, calc((100vw - var(--wrap)) / 2)) 106px;
  background: #060b0d;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.8fr;
  gap: 24px;
}

.footer strong {
  display: block;
  margin-bottom: 10px;
}

.footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatMain {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-10px);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

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

@media (max-width: 1040px) {
  .topbar nav {
    display: none;
  }

  .hero,
  .inside,
  .faith-moment,
  .offer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-product {
    min-height: 500px;
  }

  .proof-strip,
  .resource-grid,
  .steps,
  .bonus-layout,
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inside-gallery {
    grid-template-columns: 1fr;
  }

  .inside-gallery .is-featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .topbar {
    justify-content: center;
    padding: 10px 14px;
    min-height: 78px;
  }

  section[id] {
    scroll-margin-top: 96px;
  }

  .header-bg {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-bg div:nth-child(n + 3) {
    display: none;
  }

  .top-cta {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .section,
  .hero,
  .proof-strip {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .hero {
    padding: 34px 0 52px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-product {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .main-mockup,
  .side-mockup,
  .price-sticker {
    position: static;
    width: 100%;
    transform: none;
  }

  .side-mockup {
    display: none;
  }

  .proof-strip,
  .resource-grid,
  .steps,
  .bonus-layout,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .inside-gallery img,
  .bonus-layout img {
    height: 250px;
  }

  .faith-moment {
    min-height: 520px;
    padding: 28px;
    background:
      linear-gradient(180deg, rgba(7, 17, 19, 0.28), rgba(7, 17, 19, 0.86)),
      url("assets/logo-jesus-criancas.png") center top / cover no-repeat;
  }

  .faith-copy {
    margin-left: 0;
    align-self: end;
  }

  .inside-gallery figure {
    min-height: 306px;
  }

  .floating-buy {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
