/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-lime: #ccfe00;
  --color-lime-soft: #d9ff33;
  --color-lime-deep: #b8e600;
  --color-dark: #242424;
  --color-dark-strong: #1f1f1f;
  --color-dark-card: #2c2c2c;
  --color-black: #111111;
  --color-off-white: #f2f2f0;
  --color-light-gray: #e9e9e9;
  --color-border-gray: #3a3a3a;
  --color-gray: #737373;
  --color-text-dark: #2b2b2b;
  --color-text-light: #b8b8b8;
  --color-white: #ffffff;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container: 1180px;
  --container-narrow: 880px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

html.smooth-scroll-active {
  scroll-behavior: auto;
}

body {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-dark);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow {
  max-width: var(--container-narrow);
}

.hero-grid > *,
.problem-grid > *,
.comparison-grid > *,
.product-grid > *,
.pricing-grid > *,
.about-grid > *,
.faq-grid > *,
.reminder-grid > * {
  min-width: 0;
}

/* ===========================
   TYPOGRAPHY UTILITIES
=========================== */
.section-title {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
  font-size: clamp(36px, 4vw, 52px);
}
.section-title.lime {
  color: var(--color-lime);
}
.section-title.center {
  text-align: center;
}

.section-sub {
  font-size: 18px;
  color: var(--color-gray);
  margin-top: 12px;
}

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

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 17px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s ease;
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}
.btn-primary {
  background: var(--color-lime);
  color: var(--color-text-dark);
}
.btn-primary:hover {
  background: var(--color-lime-soft);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px -8px rgba(199, 247, 0, 0.45);
}
.btn-block {
  width: 100%;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: var(--color-lime);
  font-size: 13px;
  font-weight: 900;
}
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid #555;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 16px;
}
.btn-ghost:hover {
  border-color: var(--color-lime);
  color: var(--color-lime);
  transform: translateY(-3px);
}

.center-btn {
  display: inline-flex;
  margin-inline: auto;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  background: var(--color-off-white);
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.018) 1px, transparent 1px);
  background-size:
    18px 18px,
    32px 32px;
  background-position:
    0 0,
    9px 9px;
  padding: 56px 0 80px;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(54px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title-line {
  position: relative;
  display: inline-block;
  width: max-content;
}

.hero-title-bubble {
  position: absolute;
  top: -40px;
  right: -118px;
  width: 88px;
  height: auto;
  z-index: 2;
  transform: rotate(8deg);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
  animation: bubble-hang 4.5s ease-in-out infinite alternate;
}

.title-dark {
  color: var(--color-text-dark);
}
.title-lime {
  color: var(--color-lime);
}

.hero-desc {
  font-size: 18px;
  color: #2b2b2b;
  font-weight: 700;
  max-width: 460px;
  line-height: 1.55;
  margin-bottom: 22px;
}

.hero-callout {
  background: transparent;
  border: 1px solid #262626;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 460px;
  margin-bottom: 26px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.6;
}
.hero-callout strong {
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}
.hero-phone {
  position: relative;
  z-index: 2;
  width: 435px;
  max-width: 435px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.28));
  animation: phone-hang 5.5s ease-in-out infinite alternate;
}

/* Elementos flutuantes 3D */
.float-icon {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  pointer-events: none;
}
.float-magnify {
  width: 82px;
  top: 1%;
  right: 4%;
  z-index: 0;
  transform: rotate(12deg);
  animation: magnify-hang 4.8s ease-in-out infinite alternate;
}
.float-heart {
  width: 115px;
  top: 19%;
  left: 18%;
  z-index: 0;
  transform: rotate(3deg);
  animation: heart-hang 5.2s ease-in-out infinite alternate;
}
.float-person {
  width: 100px;
  top: 54%;
  left: 13%;
  transform: rotate(-25deg);
  animation: person-hang 5.8s ease-in-out infinite alternate;
}
.float-camera {
  width: 110px;
  bottom: 13%;
  right: 15%;
  transform: rotate(-4deg);
  animation: camera-hang 5s ease-in-out infinite alternate;
}

/* ===========================
   PROBLEMA
=========================== */
.problem {
  background: var(--color-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 110px 0;
  position: relative;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.problem-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
.problem-visual::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: var(--color-lime);
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.problem-visual img {
  position: relative;
  z-index: 2;
  width: 260px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
}
.problem-text {
  color: var(--color-text-light);
}
.problem-text .section-title {
  margin-bottom: 24px;
  font-size: clamp(44px, 4.4vw, 62px);
}
.problem-text p {
  font-size: 17px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.65;
  max-width: 560px;
}
.problem-text .btn {
  position: relative;
  margin-top: 22px;
  margin-bottom: 22px;
  padding: 18px 36px;
  font-size: 17px;
  min-width: 380px;
  white-space: nowrap;
}
.problem-text .btn .btn-arrow {
  flex-shrink: 0;
}
.problem-footnote {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white) !important;
  font-style: normal;
}

/* ===========================
   COMPARAÇÃO
=========================== */
.comparison {
  background: var(--color-off-white);
  background-image: radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 96px 0;
}
.comparison-head {
  text-align: center;
  margin-bottom: 46px;
}
.comparison .section-title {
  font-size: clamp(36px, 3.4vw, 48px);
  font-weight: 800;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}
.compare-card {
  background: #dcdcdc;
  border-radius: var(--radius-lg);
  padding: 22px 22px 28px;
  text-align: center;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.compare-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -28px rgba(0, 0, 0, 0.35);
}
.compare-tag {
  display: inline-block;
  background: var(--color-text-dark);
  color: var(--color-white);
  font-weight: 700;
  font-size: 15px;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.compare-tag.tag-lime {
  background: var(--color-lime);
  color: var(--color-text-dark);
}
.compare-image {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 22px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.compare-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
}

.comparison-footnote {
  text-align: center;
  margin: 44px auto 0;
  padding: 28px 0;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  max-width: 820px;
  font-size: 18px;
  color: var(--color-text-dark);
  line-height: 1.7;
}
.comparison-footnote em {
  font-style: normal;
  color: var(--color-text-dark);
  font-weight: 700;
}
.comparison-footnote strong {
  display: block;
  font-weight: 800;
  font-size: 20px;
}

/* ===========================
   CONCEPT (transição)
=========================== */
.concept {
  background: var(--color-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 110px 0;
  text-align: center;
}
.concept-title {
  font-weight: 800;
  color: var(--color-lime);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto 26px;
}
.concept-strong {
  font-size: 19px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 22px;
}
.concept-strong strong {
  font-weight: 800;
  color: var(--color-lime);
}
.concept-text {
  font-size: 18px;
  color: white;
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.75;
}
.concept-text strong {
  color: var(--color-white);
  font-weight: 700;
}
.concept .btn {
  margin-top: 30px;
}

/* Botão outline */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-lime);
  padding: 14px 30px;
  font-weight: 600;
}
.btn-outline strong {
  color: var(--color-lime);
  font-weight: 700;
}
.btn-outline:hover {
  background: var(--color-lime);
  color: var(--color-text-dark);
  transform: translateY(-1px);
}
.btn-outline:hover strong {
  color: var(--color-text-dark);
}

/* ===========================
   PRODUCT
=========================== */
.product {
  background: var(--color-off-white);
  background-image: radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 110px 0;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}
.product-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-text p {
  font-size: 18px;
  color: var(--color-text-dark);
  margin-bottom: 18px;
  line-height: 1.65;
  max-width: 460px;
}
.product-text p strong {
  font-weight: 800;
}
.product-text .product-bold {
  font-weight: 800;
}
.product-text .btn {
  margin-top: 18px;
  padding: 16px 32px;
  font-size: 17px;
}
.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-visual img {
  max-width: 620px;
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.18));
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
}

/* ===========================
   AUDIENCE
=========================== */
.audience {
  background: var(--color-off-white);
  background-image: radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: 0;
}
.audience-title-band {
  background: var(--color-dark);
  padding: 34px 0 24px;
}
.audience-body {
  padding: 44px 0 76px;
}
.audience .section-title {
  margin-bottom: 0;
  font-size: clamp(34px, 4.3vw, 50px);
}
.audience-sub {
  text-align: center;
  color: var(--color-text-dark);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 26px;
}
.audience-sub strong {
  font-weight: 800;
}
.audience-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}
.audience-list li {
  background: transparent;
  border: 1px solid #777;
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--color-text-dark);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.25;
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s ease,
    background 0.3s ease;
}
.audience-list li:hover {
  background: rgba(204, 254, 0, 0.18);
  border-color: var(--color-lime-deep);
  transform: translateX(8px);
}
.audience-list li:last-child {
  margin-bottom: 0;
}
.audience-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-lime);
  color: var(--color-text-dark);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}
.audience-foot {
  text-align: center;
  color: var(--color-text-dark);
  font-size: 20px;
  font-weight: 800;
  margin-top: 32px;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.3;
}

/* ===========================
   PRICING
=========================== */
.pricing {
  background: var(--color-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 40px 0 96px;
  text-align: center;
}
.pricing-eyebrow {
  color: white;
  font-size: 15px;
  margin-bottom: 14px;
}
.pricing .section-title {
  color: var(--color-lime);
  margin-bottom: 14px;
}
.pricing-sub {
  color: white;
  font-size: 17px;
  margin-bottom: 46px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.86fr);
  gap: 28px;
  background: #f6f6f6;
  border-radius: var(--radius-lg);
  padding: 26px 28px 26px 40px;
  text-align: left;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.pricing-includes {
  list-style: none;
}
.pricing-includes li {
  color: var(--color-dark-strong);
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.pricing-includes .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-text-dark);
  color: var(--color-lime);
  font-weight: 900;
  font-size: 11px;
  flex-shrink: 0;
}

.price-card {
  min-height: 470px;
  display: flex;
  background: var(--color-dark-strong);
  border: 1px solid var(--color-border-gray);
  border-radius: 30px;
  padding: 44px 36px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
}
.price-old {
  color: #888;
  font-size: 14px;
  margin-bottom: 8px;
}
.price-old s {
  color: #777;
}
.price-installments {
  color: var(--color-white);
  font-size: 17px;
  margin-bottom: 10px;
}
.price-main {
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 800;
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.price-cash {
  color: #888;
  font-size: 15px;
  margin-bottom: 36px;
}
.price-cash strong {
  color: var(--color-text-light);
}
.price-card .btn {
  position: relative;
  width: 100%;
  min-height: 68px;
  margin-bottom: 24px;
  font-size: 16px;
  padding: 18px 56px 18px 28px;
  white-space: normal;
  text-wrap: balance;
}
.price-card .btn .btn-arrow {
  position: absolute;
  right: 24px;
  flex-shrink: 0;
}
.price-note {
  color: #777;
  font-size: 13px;
  line-height: 1.45;
  max-width: 340px;
  margin: 0 auto;
}

/* ===========================
   ABOUT
=========================== */
.about {
  background: var(--color-off-white);
  background-image: radial-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  padding-left: clamp(32px, 6vw, 96px);
}
.about-text {
  padding: 50px 0;
  align-self: center;
}
.about-text .section-title {
  margin-bottom: 18px;
  font-size: clamp(40px, 3.8vw, 48px);
}
.about-divider {
  border: none;
  height: 1px;
  background: #2b2b2b;
  width: 220px;
  margin: 0 0 22px;
}
.about-text p {
  font-size: 17px;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 500px;
}
.about-text p strong {
  font-weight: 800;
}
.about-text .about-bold {
  font-weight: 800;
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  height: 100%;
  min-height: 720px;
  overflow: hidden;
}
.about-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.2s linear;
}

/* ===========================
   FAQ
=========================== */
.faq {
  background: var(--color-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 96px 0 80px;
}
.faq-eyebrow {
  background: var(--color-lime);
  color: var(--color-text-dark);
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
  max-width: 100%;
}
.faq .section-title {
  color: var(--color-white);
  margin-bottom: 0;
  font-size: clamp(44px, 4.2vw, 60px);
  line-height: 1.05;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px 60px;
  align-items: start;
}
.faq-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border: none;
  padding: 14px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: var(--color-lime);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s ease;
}
.faq-item summary:hover {
  opacity: 0.85;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  padding-top: 12px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.65;
  animation: faq-open 0.35s var(--ease-out);
}

/* ===========================
   REMINDER
=========================== */
.reminder {
  position: relative;
  background: var(--color-off-white);
  padding: 64px 0;
  border-top: 8px solid var(--color-lime);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}
.reminder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.reminder-text h3 {
  color: var(--color-text-dark);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.reminder-text p {
  color: var(--color-text-dark);
  font-size: 17px;
  line-height: 1.6;
  max-width: 380px;
}
.reminder-text p strong {
  font-weight: 800;
}
.reminder-chips {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.chip {
  width: 314px;
  background: transparent;
  color: var(--color-text-dark);
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  max-width: 320px;
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s ease,
    border-color 0.3s ease;
}
.chip:hover {
  background: var(--color-lime);
  border-color: var(--color-lime);
  transform: translateX(-8px);
}

/* ===========================
   MOTION
=========================== */
.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 58px, 0);
  transition:
    opacity 1s ease,
    transform 1s var(--ease-out);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-left {
  transform: translate3d(-58px, 0, 0);
}

.motion-right {
  transform: translate3d(58px, 0, 0);
}

.motion-fade {
  transform: none;
  transition-duration: 1.2s;
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.compare-card.motion-reveal.is-visible:hover {
  transform: translateY(-8px);
}

.audience-list li.motion-reveal.is-visible:hover {
  transform: translateX(8px);
}

.chip.motion-reveal.is-visible:hover {
  transform: translateX(-8px);
}

@keyframes phone-hang {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 14px, 0);
  }
}

@keyframes bubble-hang {
  from {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  to {
    transform: translate3d(0, 10px, 0) rotate(11deg);
  }
}

@keyframes magnify-hang {
  from {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }
  to {
    transform: translate3d(0, 12px, 0) rotate(17deg);
  }
}

@keyframes heart-hang {
  from {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
  to {
    transform: translate3d(0, 16px, 0) rotate(-2deg);
  }
}

@keyframes person-hang {
  from {
    transform: translate3d(0, 0, 0) rotate(-25deg);
  }
  to {
    transform: translate3d(0, 14px, 0) rotate(-19deg);
  }
}

@keyframes camera-hang {
  from {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  to {
    transform: translate3d(0, 12px, 0) rotate(-10deg);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-reveal,
  .motion-left,
  .motion-right,
  .motion-fade {
    opacity: 1;
    transform: none;
  }

  .problem-visual img,
  .compare-image img,
  .product-visual img,
  .about-visual img {
    transform: none !important;
  }
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta {
  background: var(--color-dark);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  padding: 64px 0 96px;
  text-align: center;
}
.final-title {
  color: var(--color-lime);
  font-weight: 800;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.final-cta .final-ghost {
  margin-bottom: 28px;
  padding: 12px 32px;
  font-size: 16px;
  border-color: var(--color-lime);
}
.final-card {
  background: #f6f6f610;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  max-width: 580px;
  margin: 0 auto;
}
.final-text {
  color: var(--color-text-light);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

/* ===========================
   RESPONSIVE
=========================== */
/* ===========================
   ≤ 1024px (tablet horizontal)
=========================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .hero-grid,
  .problem-grid,
  .product-grid,
  .about-grid,
  .reminder-grid {
    gap: 40px;
  }
  .hero-title-bubble {
    width: 72px;
    top: -28px;
    right: -90px;
  }
  .float-magnify {
    width: 72px;
  }
  .float-heart {
    width: 95px;
  }
  .float-person {
    width: 84px;
  }
  .float-camera {
    width: 90px;
  }
  .hero-phone {
    width: 360px;
    max-width: 360px;
  }
}

/* ===========================
   ≤ 768px (tablet vertical / mobile)
=========================== */
@media (max-width: 768px) {
  .container {
    padding: 0 22px;
  }
  /* Collapse 2-col grids to single column */
  .hero-grid,
  .problem-grid,
  .product-grid,
  .about-grid,
  .reminder-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .problem-grid {
    display: block;
  }
  /* Pricing card adjustments */
  .pricing-grid {
    padding: 24px;
    max-width: 100%;
  }
  .price-card {
    height: auto;
    min-height: auto;
    padding: 36px 24px;
  }
  .price-main {
    font-size: clamp(52px, 11vw, 72px);
  }
  /* Section paddings */
  .hero {
    padding: 40px 0 56px;
  }
  .problem,
  .comparison,
  .concept,
  .product,
  .audience,
  .pricing,
  .faq {
    padding: 64px 0;
  }
  .audience {
    padding: 0;
  }
  .about {
    padding-top: 64px;
  }
  .reminder {
    padding: 48px 0;
  }
  .final-cta {
    padding: 56px 0 72px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(44px, 9vw, 62px);
  }
  .hero-title-bubble {
    width: 64px;
    top: -22px;
    right: -72px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .hero-phone {
    width: 320px;
    max-width: 320px;
  }
  .hero-desc,
  .hero-callout {
    max-width: 100%;
  }
  /* Floating icons reposition for smaller container */
  .float-magnify {
    width: 56px;
    top: 4%;
    right: 17%;
  }
  .float-heart {
    width: 84px;
    top: 17%;
    left: 26%;
  }
  .float-person {
    width: 70px;
    top: 56%;
    left: 22%;
  }
  .float-camera {
    width: 78px;
    bottom: 16%;
    right: 23%;
  }

  /* Problem */
  .problem-visual {
    min-height: 380px;
  }
  .problem-visual::before {
    width: 280px;
    height: 280px;
  }
  .problem-visual img {
    width: 200px;
  }
  .problem-text p,
  .problem-text {
    text-align: left;
  }
  .problem-text p {
    max-width: 100%;
  }
  .problem-text .btn {
    min-width: auto;
    width: 100%;
    max-width: 380px;
    min-height: 48px;
    padding: 14px 50px 14px 22px;
    font-size: clamp(15px, 3.7vw, 17px);
  }

  /* Comparison — keep 2 columns but smaller */
  .comparison-grid {
    max-width: 560px;
    gap: 16px;
  }
  .compare-card {
    padding: 16px 14px 20px;
  }
  .compare-image {
    min-height: 220px;
    padding: 16px;
  }

  /* Concept */
  .concept-title {
    font-size: clamp(32px, 5.5vw, 44px);
  }

  /* Product */
  .product-text p,
  .about-text p {
    max-width: 100%;
  }
  .product-visual img {
    max-width: 100%;
  }
  .product-grid,
  .reminder-grid {
    width: 100%;
  }
  .concept .btn,
  .product-text .btn,
  .final-card .btn {
    width: 100%;
  }
  .concept .btn {
    display: block;
    max-width: 420px;
    margin-inline: auto;
    white-space: normal;
  }
  .problem-text .btn,
  .price-card .btn {
    padding-right: 50px;
  }
  .problem-text .btn .btn-arrow,
  .price-card .btn .btn-arrow {
    position: absolute;
    right: 18px;
  }

  /* Audience */
  .audience-title-band {
    padding: 20px 0 14px;
  }
  .audience-body {
    padding: 26px 0 35px;
  }
  .audience-sub {
    font-size: 17px;
    margin-bottom: 18px;
  }
  .audience-list {
    max-width: 462px;
  }
  .audience-list li {
    font-size: 15px;
    padding: 8px 14px;
    margin-bottom: 18px;
    gap: 8px;
  }
  .audience-list .check {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .audience-foot {
    font-size: 16px;
    margin-top: 22px;
    max-width: 500px;
    line-height: 1.25;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .about-text {
    padding: 0 22px;
  }
  .about-text .section-title {
    font-size: clamp(34px, 6vw, 44px);
  }
  .about-visual img {
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
  }
  .about-visual {
    min-height: auto;
    overflow: visible;
  }
  .about-visual::before {
    content: "";
    position: absolute;
    inset: -1px 0 auto;
    height: 140px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      var(--color-off-white) 0%,
      rgba(242, 242, 240, 0.96) 22%,
      rgba(242, 242, 240, 0.62) 58%,
      rgba(242, 242, 240, 0) 100%
    );
  }
  .faq-eyebrow {
    font-size: 14px;
    padding: 8px 18px;
  }

  /* FAQ */
  .faq-head {
    align-items: flex-start;
  }
  .faq .section-title {
    font-size: clamp(34px, 6vw, 48px);
  }

  /* Reminder */
  .reminder-grid {
    gap: 24px;
    text-align: center;
  }
  .reminder-text p {
    width: 100%;
    max-width: 100%;
  }
  .reminder-chips {
    align-items: center;
  }
  .chip {
    max-width: 100%;
  }

  /* Final CTA */
  .final-card {
    padding: 24px 20px;
  }
}

/* ===========================
   ≤ 425px (mobile padrão)
=========================== */
@media (max-width: 425px) {
  .container {
    padding: 0 18px;
  }
  .about-grid {
    padding: 0;
  }
  .about-text {
    padding: 0 18px;
  }
  .btn {
    font-size: 15px;
    padding: 12px 22px;
  }

  /* Hero */
  .hero {
    padding: 32px 0 48px;
  }
  .hero-title {
    font-size: clamp(38px, 11vw, 54px);
  }
  .hero-title-bubble {
    width: 50px;
    top: -16px;
    right: -54px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .hero-phone {
    width: 260px;
    max-width: 260px;
  }
  .float-magnify {
    width: 52px;
  }
  .float-heart {
    width: 68px;
  }
  .float-person {
    width: 58px;
  }
  .float-camera {
    width: 64px;
  }
  .hero-callout {
    padding: 14px 16px;
    font-size: 15px;
  }

  /* Sections */
  .problem,
  .comparison,
  .concept,
  .product,
  .audience,
  .pricing,
  .about,
  .faq {
    padding: 48px 0;
  }
  .audience {
    padding: 0;
  }
  .audience-title-band {
    padding: 24px 0 18px;
  }
  .audience-body {
    padding: 24px 0 34px;
  }
  .audience .section-title {
    font-size: 28px;
  }
  .audience-sub {
    font-size: 16px;
    margin-bottom: 16px;
  }

  /* Problem */
  .problem-visual {
    min-height: 320px;
  }
  .problem-visual::before {
    width: 220px;
    height: 220px;
  }
  .problem-visual img {
    width: 170px;
  }
  .problem-text .section-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  /* Comparison — stack at 425px */
  .comparison-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .compare-image {
    min-height: 240px;
  }

  /* Pricing */
  .pricing-grid {
    padding: 18px;
    gap: 24px;
  }
  .pricing-includes li {
    font-size: 14.5px;
  }
  .price-card {
    padding: 30px 18px;
  }
  .price-main {
    font-size: clamp(44px, 15vw, 58px);
  }
  .price-card .btn {
    font-size: 14px;
    min-height: 58px;
    padding: 13px 46px 13px 16px;
    width: 100%;
    white-space: normal;
  }

  /* Concept */
  .concept-title {
    font-size: clamp(28px, 6.4vw, 36px);
  }
  .concept-text {
    font-size: 16px;
  }

  /* Audience */
  .audience-list li {
    font-size: 14px;
    padding: 8px 12px;
    gap: 7px;
    margin-bottom: 14px;
  }
  .audience-list .check {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .audience-foot {
    font-size: 15px;
    margin-top: 18px;
  }

  /* About */
  .about-divider {
    width: 160px;
  }
  .about-text p {
    font-size: 16px;
  }

  /* FAQ */
  .faq-item summary {
    font-size: 16px;
  }

  /* Reminder */
  .reminder-text h3 {
    font-size: clamp(26px, 6vw, 34px);
  }
  .chip {
    font-size: 14px;
    padding: 9px 18px;
  }

  /* Final CTA */
  .final-title {
    font-size: clamp(30px, 7vw, 40px);
  }
  .final-card {
    padding: 22px 18px;
  }
  .final-text {
    font-size: 16px;
  }
}

/* ===========================
   ≤ 375px (iPhone Mini / SE)
=========================== */
@media (max-width: 375px) {
  .container {
    padding: 0 16px;
  }
  .about-grid {
    padding: 0;
  }
  .about-text {
    padding: 0 16px;
  }
  .btn {
    font-size: 14.5px;
    padding: 11px 18px;
  }
  .btn-arrow {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(36px, 11vw, 48px);
  }
  .hero-title-bubble {
    width: 44px;
    top: -14px;
    right: -46px;
  }
  .hero-phone {
    width: 230px;
    max-width: 230px;
  }
  .float-magnify {
    width: 46px;
  }
  .float-heart {
    width: 60px;
  }
  .float-person {
    width: 50px;
  }
  .float-camera {
    width: 56px;
  }
  .hero-callout {
    font-size: 14.5px;
    padding: 12px 14px;
  }

  /* Compare */
  .compare-image {
    min-height: 200px;
    padding: 14px;
  }

  /* Pricing — 375px */
  .pricing-grid {
    padding: 14px;
  }
  .price-card {
    padding: 26px 14px;
  }
  .price-main {
    font-size: clamp(40px, 15vw, 52px);
  }
  .price-card .btn {
    font-size: 13.5px;
    padding: 12px 42px 12px 14px;
    white-space: normal;
  }

  /* Problem */
  .problem-visual::before {
    width: 200px;
    height: 200px;
  }
  .problem-visual img {
    width: 150px;
  }
  .problem-text .btn {
    width: 100%;
    max-width: 100%;
  }
}

/* ===========================
   ≤ 320px (smallest mobile)
=========================== */
@media (max-width: 320px) {
  .container {
    padding: 0 14px;
  }
  .about-grid {
    padding: 0;
  }
  .about-text {
    padding: 0 14px;
  }
  .btn {
    font-size: 13.5px;
    padding: 10px 16px;
    gap: 8px;
  }

  /* Hero */
  .hero-title {
    font-size: 34px;
  }
  .hero-title-bubble {
    width: 36px;
    top: -10px;
    right: -38px;
  }
  .hero-visual {
    min-height: 320px;
  }
  .hero-phone {
    width: 200px;
    max-width: 200px;
  }
  .float-magnify {
    width: 38px;
  }
  .float-heart {
    width: 50px;
  }
  .float-person {
    width: 42px;
  }
  .float-camera {
    width: 46px;
  }

  /* Sections */
  .problem,
  .comparison,
  .concept,
  .product,
  .audience,
  .pricing,
  .about,
  .faq {
    padding: 40px 0;
  }
  .audience {
    padding: 0;
  }

  /* Problem */
  .problem-visual::before {
    width: 170px;
    height: 170px;
  }
  .problem-visual img {
    width: 130px;
  }

  /* Compare */
  .compare-image {
    min-height: 180px;
  }

  /* Pricing — 320px */
  .pricing-grid {
    padding: 12px;
    gap: 18px;
  }
  .pricing-includes li {
    font-size: 13px;
  }
  .price-card {
    padding: 24px 12px;
  }
  .price-main {
    font-size: 38px;
  }
  .price-card .btn {
    font-size: 13px;
    padding: 10px 38px 10px 10px;
    white-space: normal;
    line-height: 1.2;
  }
  .problem-text .btn .btn-arrow,
  .price-card .btn .btn-arrow {
    right: 12px;
  }

  /* Concept */
  .concept-title {
    font-size: 28px;
  }

  /* About */
  .about-text .section-title {
    font-size: 30px;
  }

  /* FAQ */
  .faq .section-title {
    font-size: 30px;
  }
  .faq-item summary {
    font-size: 15px;
    gap: 10px;
  }

  /* Reminder */
  .reminder-text h3 {
    font-size: 24px;
  }
  .chip {
    font-size: 13.5px;
    padding: 8px 14px;
  }

  /* Final */
  .final-title {
    font-size: 28px;
  }
}
