:root {
  --pink: #db2777;
  --pink-2: #ff4b6e;
  --green: #1e7f3e;
  --orange: #f97316;
  --ink: #111111;
  --muted: #555555;
  --soft: #fff7fb;
  --line: #f8c8dc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Quicksand", "DM Sans", Arial, sans-serif;
  background: #ffffff;
}

button {
  font: inherit;
  cursor: pointer;
}

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

.announcement {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 14px 16px;
  background: #10b981;
  color: #ffffff;
  text-align: center;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.24);
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
}

section {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding-top: 116px;
  background-color: #fff0f5;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.68) 38%, rgba(255, 255, 255, 0) 72%),
    url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 39 7.6 24.9C3.1 20.6 2.9 13.6 7.2 9.2c3.8-3.9 10-4 13.9-.2l.9.9.9-.9c3.9-3.8 10.1-3.7 13.9.2 4.3 4.4 4.1 11.4-.4 15.7L22 39Z' fill='%23ffccd5' fill-opacity='.38'/%3E%3C/svg%3E");
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-spark {
  position: absolute;
  z-index: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  opacity: 0.34;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}

.hero-heart {
  top: 150px;
  left: 9%;
  color: #f472b6;
}

.hero-star {
  top: 220px;
  right: 11%;
  color: #f59e0b;
  animation-delay: 1.6s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-8deg);
  }

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 1180px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.96;
  font-weight: 800;
  font-family: "Fredoka", "Quicksand", Arial, sans-serif;
  color: #15162a;
}

h1 .hero-title-pink,
.pink,
.product h2,
.bonus h2,
.pricing h2 {
  color: var(--pink);
}

.hero-title-dark,
.hero-title-pink {
  display: block;
}

.hero-title-dark {
  color: #15162a;
}

.hero-title-pink {
  margin-top: 24px;
}

mark {
  color: var(--ink);
  background: transparent;
  text-decoration: underline;
  text-decoration-color: #f472b6;
  text-decoration-thickness: 4px;
  text-underline-offset: 5px;
}

.bonus-pill,
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-pill {
  padding: 12px 28px;
  border: 1px solid #fbcfe8;
  color: #db2777;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.14);
}

.hero-media-card {
  position: relative;
  width: min(500px, 100%);
  padding: 14px;
  border: 4px solid #ffffff;
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(236, 72, 153, 0.22);
}

.hero-media-screen {
  overflow: hidden;
  border-radius: 28px;
  background: #111111;
}

.hero-image {
  width: min(500px, 100%);
  border-radius: 0;
}

.hero-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #ffffff;
}

.hero-bonus-sticker {
  position: absolute;
  right: -16px;
  bottom: -20px;
  padding: 16px 22px;
  border: 5px solid #ffffff;
  border-radius: 24px;
  background: #f97316;
  color: #ffffff;
  font-family: "Fredoka", "Quicksand", Arial, sans-serif;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.28);
}

.hero-copy,
.lead {
  max-width: 780px;
  color: #4b5563;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-copy {
  max-width: 1180px;
  font-size: clamp(1.35rem, 2.7vw, 2.3rem);
  line-height: 1.35;
  font-weight: 600;
}

.hero-copy strong,
.lead strong {
  color: var(--pink);
  font-weight: 800;
}

.hero-copy .hero-highlight {
  display: inline-block;
  padding: 0 12px 4px;
  border-radius: 8px;
  background: #fff8b7;
  color: #15162a;
  font-weight: 800;
  text-decoration: none;
}

.cta {
  min-height: 58px;
  padding: 18px 34px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(30, 127, 62, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta:hover {
  background: #1a6e35;
  transform: translateY(-1px);
}

.delivery {
  color: #666666;
  font-weight: 700;
}

.preview {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.preview h2,
.ideal h2,
.product h2,
.pricing h2,
.faq h2,
.how-it-works h2,
.testimonials h2 {
  margin-bottom: 42px;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 800;
  font-family: "Fredoka", "Quicksand", Arial, sans-serif;
  text-transform: uppercase;
}

.carousel {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f9fafb;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #333333;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.counter {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-weight: 800;
}

.dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(156, 163, 175, 0.85);
}

.dots button.active {
  width: 18px;
  background: #ec4899;
}

.urgency {
  background: linear-gradient(135deg, #f472b6 0%, #8b5cf6 100%);
  color: #ffffff;
  text-align: center;
}

.urgency h2 {
  margin-bottom: 34px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

.ideal {
  background: linear-gradient(180deg, #fdf2f8 0%, #ffffff 100%);
}

.ideal-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ideal article,
.bonus-card,
.feature-box,
.plan,
.faq details {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.ideal article {
  padding: 30px;
  border: 1px solid #fce7f3;
}

.ideal article span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 2.4rem;
}

.ideal h3 {
  margin-bottom: 12px;
  color: var(--pink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.ideal p,
.bonus-card p,
.feature-box li,
.feature-box p,
.faq p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.product {
  background: #ffffff;
  text-align: center;
}

.product-image {
  width: min(400px, 100%);
  aspect-ratio: 4 / 5;
  margin: 32px auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.14);
}

.feature-box {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fdf2f8;
  text-align: left;
}

.feature-box h3 {
  margin-bottom: 22px;
  color: var(--pink);
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.feature-box ul,
.plan ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-box p {
  margin-top: 22px;
  text-align: center;
  font-weight: 800;
}

.bonus {
  background: linear-gradient(180deg, #fff3c4 0%, #ffffff 100%);
  text-align: center;
}

.section-tag {
  margin-bottom: 16px;
  padding: 9px 22px;
  border: 2px solid #fb923c;
  background: #ffedd5;
  color: #c2410c;
}

.bonus h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.bonus > .container > p {
  margin-bottom: 38px;
  color: #ec4899;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 1px solid #f3f4f6;
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 1080 / 1350;
  border-radius: 16px;
  object-fit: cover;
  background: #f9fafb;
}

.bonus-label,
.best-seller {
  align-self: center;
  border-radius: 999px;
  background: #fff7ed;
  color: #f97316;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-label {
  padding: 7px 16px;
}

.bonus-card h3 {
  font-size: 1.25rem;
}

.how-it-works {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  color: #ffffff;
  text-align: center;
}

.how-it-works h2,
.how-it-works .section-copy {
  color: #ffffff;
}

.section-copy {
  max-width: 760px;
  margin: -24px auto 36px;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  font-weight: 700;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.steps-grid article {
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.steps-grid span {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #db2777;
  font-size: 1.45rem;
  font-weight: 800;
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-family: "Fredoka", "Quicksand", Arial, sans-serif;
  font-size: 1.35rem;
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-weight: 700;
}

.light-cta {
  background: #ffffff;
  color: #db2777;
}

.light-cta:hover {
  background: #fff7ed;
}

.testimonials {
  background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
}

.whatsapp-testimonials {
  padding: 54px 0 60px;
}

.testimonials h2 {
  margin-bottom: 22px;
  color: #166534;
}

.testimonial-kicker {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #dcfce7;
  color: #047857;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.whatsapp-carousel {
  position: relative;
  width: min(100vw, 1180px);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.whatsapp-track {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: max-content;
  animation: whatsapp-scroll 34s linear infinite;
}

.whatsapp-carousel:hover .whatsapp-track {
  animation-play-state: paused;
}

.whatsapp-slide {
  flex: 0 0 clamp(210px, 23vw, 295px);
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.whatsapp-slide:nth-child(even) {
  margin-top: 18px;
}

.whatsapp-slide img {
  width: 100%;
  height: auto;
}

@keyframes whatsapp-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

.pricing {
  background-color: #fff0f5;
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 39 7.6 24.9C3.1 20.6 2.9 13.6 7.2 9.2c3.8-3.9 10-4 13.9-.2l.9.9.9-.9c3.9-3.8 10.1-3.7 13.9.2 4.3 4.4 4.1 11.4-.4 15.7L22 39Z' fill='%23ffccd5' fill-opacity='.22'/%3E%3C/svg%3E");
}

.plans {
  display: grid;
  grid-template-columns: 1fr 120px 1.2fr;
  align-items: stretch;
  gap: 28px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.plan.basic {
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

.plan.complete {
  border: 4px solid #ec4899;
}

.plan h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.plan.complete h3 {
  color: var(--pink);
  margin-top: 12px;
}

.plan img {
  width: min(320px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  object-fit: cover;
}

.plan p,
.plan li {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 600;
}

.price {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1;
  font-weight: 800;
}

.green {
  color: var(--green);
}

.pink-price {
  color: var(--pink);
}

.old-price {
  color: #6b7280;
  font-size: 1.2rem;
  text-decoration: line-through;
}

.save {
  padding: 8px 18px;
  border: 1px solid #fde68a;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 800;
}

.limited {
  padding: 10px 14px;
  border-radius: 10px;
  background: #f3f4f6;
}

.best-seller {
  position: absolute;
  top: 0;
  padding: 10px 28px;
  background: #ec4899;
  color: #ffffff;
  transform: translateY(-50%);
}

.offer-note {
  align-self: center;
  padding: 18px 16px;
  border-radius: 18px;
  background: #ec4899;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.24);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  color: #0f5132;
  font-weight: 800;
}

.trust-row span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
}

.faq {
  background: #f9fafb;
}

.faq details {
  margin-bottom: 14px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  padding: 18px 24px 24px;
  border-top: 1px solid #f3f4f6;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 48px 20px;
  background: #111111;
  color: #888888;
  text-align: center;
}

footer strong {
  color: var(--line);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 1.6rem;
}

.modal-card h2 {
  margin-bottom: 16px;
  color: var(--pink-2);
  font-size: 2rem;
}

.modal-card p {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.modal-card strong {
  color: var(--pink-2);
}

.modal-primary,
.modal-link {
  width: 100%;
  border: 0;
  background: transparent;
}

.modal-primary {
  padding: 16px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff4b6e, #ff2e63);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(255, 46, 99, 0.28);
}

.modal-link {
  margin-top: 16px;
  color: #777777;
  text-decoration: underline;
}

.reveal {
  animation: reveal 0.7s ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .ideal-grid,
  .bonus-grid,
  .steps-grid,
  .testimonial-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .offer-note {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(100% - 24px, 1100px);
  }

  section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 44px;
  }

  .hero-inner {
    gap: 16px;
  }

  .hero-spark {
    display: none;
  }

  h1 {
    font-size: clamp(2.2rem, 11.5vw, 3rem);
    line-height: 1;
  }

  .hero-title-pink {
    margin-top: 8px;
  }

  .hero-copy {
    font-size: clamp(1.02rem, 4.6vw, 1.24rem);
    line-height: 1.32;
  }

  .hero-copy .hero-highlight {
    padding: 0 8px 3px;
  }

  .hero-media-card {
    width: min(315px, 84vw);
    border-radius: 30px;
    padding: 10px;
  }

  .hero-media-screen {
    border-radius: 22px;
  }

  .hero-bonus-sticker {
    right: -8px;
    bottom: -14px;
    padding: 10px 14px;
    border-width: 4px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .cta {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 1rem;
  }

  .delivery {
    font-size: 0.94rem;
  }

  .whatsapp-testimonials {
    padding: 42px 0 48px;
  }

  .whatsapp-slide {
    flex-basis: min(66vw, 245px);
    border-width: 4px;
    border-radius: 18px;
  }

  .whatsapp-slide:nth-child(even) {
    margin-top: 12px;
  }

  .feature-box,
  .ideal article,
  .plan,
  .modal-card {
    padding: 22px;
  }
}
