/* ============================================
   Ansiedade Sob Controle — Landing elegante
   ============================================ */

:root {
  --cream: #faf6f1;
  --cream-dark: #f0e8de;
  --cream-deep: #e8dccf;
  --white: #ffffff;
  --ink: #2c221f;
  --ink-soft: #5a4a44;
  --ink-muted: #8a7870;
  --rose: #b84a5e;
  --rose-deep: #9a3a4c;
  --rose-soft: #d4788a;
  --rose-blush: #f3d4d8;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --gold-deep: #9a7b3c;
  --shadow: 0 20px 60px rgba(44, 34, 31, 0.08);
  --shadow-lg: 0 30px 80px rgba(44, 34, 31, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Ambient */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(243, 212, 216, 0.7), transparent 70%);
  top: -160px;
  right: -100px;
  opacity: 0.55;
}

.bg-glow--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 213, 163, 0.45), transparent 70%);
  bottom: 10%;
  left: -140px;
  opacity: 0.35;
  animation: glowDrift 16s ease-in-out infinite reverse;
}

.bg-glow--1 {
  animation: glowDrift 14s ease-in-out infinite;
}

.bg-glow--3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184, 74, 94, 0.18), transparent 70%);
  top: 45%;
  right: -80px;
  opacity: 0.4;
  animation: glowDrift 18s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes glowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -20px) scale(1.08); }
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* Typography */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.eyebrow--light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 500;
}

.section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-sub {
  margin-inline: auto;
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 50%, var(--rose-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(184, 74, 94, 0.28);
  overflow: hidden;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(184, 74, 94, 0.38);
}

.btn--shine {
  isolation: isolate;
}

.btn--shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-22deg);
  animation: btnShine 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes btnShine {
  0%, 35% { left: -60%; }
  65%, 100% { left: 130%; }
}

.btn--pulse {
  animation: btnPulse 2.4s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(196, 163, 90, 0.28);
  }
  50% {
    box-shadow: 0 16px 40px rgba(196, 163, 90, 0.48), 0 0 28px rgba(232, 213, 163, 0.25);
  }
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(44, 34, 31, 0.16);
}

.btn--ghost:hover {
  border-color: rgba(184, 74, 94, 0.45);
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.55);
}

.btn--gold {
  background: linear-gradient(135deg, #e6d4a2 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(196, 163, 90, 0.28);
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(196, 163, 90, 0.38);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  padding: 1.1rem 1.9rem;
  font-size: 1.02rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(250, 246, 241, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(250, 246, 241, 0.96);
  border-bottom-color: rgba(44, 34, 31, 0.06);
  box-shadow: 0 8px 24px rgba(44, 34, 31, 0.04);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  z-index: 110;
}

.logo__main {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.logo__script {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--rose);
  margin-top: -2px;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.6rem);
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--rose);
}

.nav__cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--rose);
  color: var(--white) !important;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(184, 74, 94, 0.25);
}

.nav__cta:hover {
  background: var(--rose-deep);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem 3rem;
}

.hero__copy {
  flex: 1 1 300px;
  min-width: 0;
  max-width: 540px;
}

.hero__media {
  flex: 1 1 280px;
  min-width: 0;
  max-width: 460px;
  margin-inline: auto;
  position: relative;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(184, 74, 94, 0.2);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero__title {
  margin: 0 0 1.15rem;
}

.hero__kicker {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.08;
  color: var(--ink);
}

.hero__script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5.5vw, 3.35rem);
  line-height: 1.2;
  color: var(--rose);
  margin-top: 0.1rem;
}

.hero__text {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(44, 34, 31, 0.08);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.hero__chip strong {
  color: var(--ink);
  font-weight: 600;
}

.hero__photo {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #efe6dc;
  box-shadow:
    0 22px 50px rgba(44, 34, 31, 0.12),
    0 0 0 1px rgba(184, 74, 94, 0.08);
  line-height: 0;
  position: relative;
}

.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.hero__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.hero__photo:hover img {
  transform: scale(1.04);
}

.hero__float {
  position: absolute;
  left: -0.75rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(92%, 250px);
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(44, 34, 31, 0.06);
  box-shadow: 0 10px 28px rgba(44, 34, 31, 0.1);
  z-index: 2;
  animation: floatCard 4.5s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.hero__float img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #f6efe7;
  flex-shrink: 0;
}

.hero__float span {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

/* Pain */
.pain {
  background: linear-gradient(180deg, transparent, var(--cream-dark) 30%, var(--cream-dark) 70%, transparent);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 34, 31, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pain-card__icon {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--rose-soft);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Solution */
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution__img-wrap {
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, #fff 0%, var(--cream-dark) 100%);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}

.solution__img-wrap img {
  width: 100%;
  border-radius: 20px;
}

.solution__media {
  position: relative;
}

.solution__float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.solution__float strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.solution__float span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.solution__text {
  color: var(--ink-soft);
  margin: 1.25rem 0 1.5rem;
  font-size: 1.05rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--rose-blush);
  box-shadow: inset 0 0 0 1px rgba(184, 74, 94, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b84a5e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.88);
}

.check-list--light li::before {
  background: rgba(232, 213, 163, 0.25);
  box-shadow: inset 0 0 0 1px rgba(232, 213, 163, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8d5a3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* For whom */
.for-whom {
  background: var(--white);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
}

.for-whom__yes,
.for-whom__no {
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
}

.for-whom__yes {
  background: linear-gradient(145deg, #fff 0%, var(--cream) 100%);
  border: 1px solid rgba(184, 74, 94, 0.12);
  box-shadow: var(--shadow);
}

.for-whom__no {
  background: var(--cream-dark);
  border: 1px solid rgba(44, 34, 31, 0.06);
}

.for-whom h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot--yes {
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(184, 74, 94, 0.15);
}

.dot--no {
  background: var(--ink-muted);
  box-shadow: 0 0 0 4px rgba(90, 74, 68, 0.1);
}

.for-whom ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.for-whom li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.for-whom__yes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.85rem;
}

.for-whom__no li::before {
  content: "·";
  position: absolute;
  left: 0.25rem;
  color: var(--ink-muted);
}

.for-whom__note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(44, 34, 31, 0.08);
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* Modules */
.modules {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid rgba(44, 34, 31, 0.05);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.module-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 74, 94, 0.15);
}

.module-card:hover::after {
  opacity: 1;
}

.module-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.module-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.module-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Benefits */
.benefits {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(4rem, 8vw, 5.5rem);
  margin-top: -1rem;
}

.benefits__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: linear-gradient(135deg, var(--ink) 0%, #3d2a28 100%);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.benefit {
  text-align: center;
  padding: 1rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.benefit__icon {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.benefit h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.benefit p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* About */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__photo {
  position: relative;
}

.about__photo-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about__photo-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.about__ornament {
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1.5px solid var(--gold);
  border-radius: 28px;
  z-index: 1;
  opacity: 0.5;
}

.about__content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__quote {
  margin-top: 1.75rem;
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-left: 3px solid var(--rose);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

.about__quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, #f7ebe6 50%, var(--cream) 100%);
}

.testimonials__featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 34, 31, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: transform 0.4s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
}

.testimonial__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--rose-blush);
  box-shadow: 0 8px 20px rgba(184, 74, 94, 0.15);
  flex-shrink: 0;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.testimonial__body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.testimonial__body footer {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial__body footer strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial__body footer span {
  font-size: 0.8rem;
  color: var(--rose-soft);
}

.testimonials__chat {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.chat-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1.35rem 1.4rem;
  border: 1px solid rgba(44, 34, 31, 0.05);
  box-shadow: 0 8px 28px rgba(44, 34, 31, 0.05);
}

.chat-card__head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.chat-card__head strong {
  font-size: 0.95rem;
  color: var(--rose);
  font-weight: 600;
}

.chat-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-blush), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.chat-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Proof screenshots (depoimentos ChatGPT) */
.proof-section {
  margin: 0 0 2.5rem;
}

.proof-section__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.35rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
  perspective: 1000px;
}

.proof-shot {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 24px 50px rgba(44, 34, 31, 0.12),
    0 0 0 1px rgba(184, 74, 94, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.5s var(--ease);
  transform-style: preserve-3d;
}

.proof-shot:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 36px 70px rgba(44, 34, 31, 0.16),
    0 0 0 1px rgba(184, 74, 94, 0.14);
}

.proof-shot__glow {
  position: absolute;
  inset: -30% -20%;
  background: radial-gradient(circle at 50% 30%, rgba(243, 212, 216, 0.55), transparent 60%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.proof-shot:hover .proof-shot__glow {
  opacity: 1;
}

.proof-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

/* Investment */
.invest {
  padding-top: clamp(3rem, 6vw, 4rem);
}

.invest__card {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  background: linear-gradient(145deg, #2c221f 0%, #4a3030 50%, #3d2428 100%);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.invest__card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 163, 90, 0.18), transparent 70%);
  pointer-events: none;
}

.invest__title {
  margin-bottom: 1rem;
}

.invest__title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.invest__title-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--gold-light);
  margin-top: -0.1em;
}

.invest__lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  max-width: 420px;
}

.price-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  text-align: center;
}

.price-box--glow {
  box-shadow:
    0 0 0 1px rgba(232, 213, 163, 0.18),
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.price-box__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.price-box__from {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.price-box__from s {
  color: rgba(255, 255, 255, 0.4);
}

.price-box__installments {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.price-box__times {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.price-box__currency {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-light);
  align-self: flex-start;
  margin-top: 0.45rem;
}

.price-box__amount {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 4.4rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(232, 213, 163, 0.25);
}

.price-box__note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.price-box__total {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.price-box__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 34, 31, 0.08);
  padding: 0.25rem 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--rose);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  color: var(--rose);
}

.faq-item p {
  padding: 0 2rem 1.35rem 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 212, 216, 0.5), transparent 60%),
    var(--cream);
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--rose);
}

.final-cta p {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.footer__brand .logo__main {
  color: var(--white);
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.footer__brand .logo__script {
  display: block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  max-width: 360px;
  margin-inline: auto;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* Float CTA */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 12px 32px rgba(184, 74, 94, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease), visibility 0.35s ease;
}

.float-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-cta:hover {
  transform: translateY(-2px);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease),
    filter 0.85s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal--delay {
  transition-delay: 0.12s;
}

/* Stagger children when parent is visible */
.reveal.visible .pain-card,
.reveal.visible .module-card,
.reveal.visible .testimonial,
.reveal.visible .chat-card {
  animation: riseIn 0.7s var(--ease) both;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pain-card:nth-child(1),
.module-card:nth-child(1),
.testimonial:nth-child(1),
.chat-card:nth-child(1) { animation-delay: 0.05s; }
.pain-card:nth-child(2),
.module-card:nth-child(2),
.testimonial:nth-child(2),
.chat-card:nth-child(2) { animation-delay: 0.12s; }
.pain-card:nth-child(3),
.module-card:nth-child(3),
.testimonial:nth-child(3),
.chat-card:nth-child(3) { animation-delay: 0.19s; }
.pain-card:nth-child(4),
.module-card:nth-child(4),
.testimonial:nth-child(4),
.chat-card:nth-child(4) { animation-delay: 0.26s; }
.module-card:nth-child(5) { animation-delay: 0.33s; }
.module-card:nth-child(6) { animation-delay: 0.4s; }

/* Soft gradient text accent on script titles */
.hero__script,
.invest__title-script {
  text-shadow: 0 8px 30px rgba(184, 74, 94, 0.18);
}

.section-title em {
  position: relative;
}

/* Magnetic feel on primary cards */
.pain-card,
.module-card,
.testimonial,
.chat-card {
  will-change: transform;
}

.float-cta {
  animation: none;
}

.float-cta.visible {
  animation: floatCtaIn 0.45s var(--ease) both, ctaGlow 2.6s ease-in-out 0.5s infinite;
}

@keyframes floatCtaIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 12px 32px rgba(184, 74, 94, 0.4); }
  50% { box-shadow: 0 16px 40px rgba(184, 74, 94, 0.55), 0 0 24px rgba(184, 74, 94, 0.3); }
}

/* Responsive */
@media (max-width: 1024px) {
  .solution__grid,
  .about__grid,
  .faq__grid,
  .invest__card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .for-whom__grid {
    grid-template-columns: 1fr;
  }

  .about__photo {
    max-width: 400px;
    margin-inline: auto;
  }

  .solution__media {
    max-width: 480px;
    margin-inline: auto;
  }

  .hero__row {
    flex-direction: column;
    align-items: stretch;
    gap: 2.25rem;
  }

  .hero__copy {
    max-width: none;
    text-align: center;
  }

  .hero__cta,
  .hero__chips {
    justify-content: center;
  }

  .hero__media {
    max-width: 380px;
    width: 100%;
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 105;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.2rem;
    font-family: var(--font-display);
  }

  .nav__cta {
    margin-top: 0.35rem;
    padding: 0.85rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__media {
    max-width: 320px;
  }

  .hero__float {
    left: 50%;
    right: auto;
    bottom: 0.85rem;
    max-width: calc(100% - 1.5rem);
    width: max-content;
    animation-name: floatCardCenter;
  }

  @keyframes floatCardCenter {
    0%, 100% { transform: translate3d(-50%, 0, 0); }
    50% { transform: translate3d(-50%, -8px, 0); }
  }

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

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .float-cta {
    left: 1rem;
    right: 1rem;
    text-align: center;
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero__kicker {
    letter-spacing: 0.04em;
  }

  .invest__card {
    padding: 1.75rem 1.25rem;
    border-radius: 24px;
  }

  .price-box__amount {
    font-size: 3rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .bg-glow--1,
  .bg-glow--2,
  .bg-glow--3,
  .hero__float,
  .btn--shine::before,
  .btn--pulse,
  .float-cta.visible {
    animation: none !important;
  }

  .reveal.visible .pain-card,
  .reveal.visible .module-card,
  .reveal.visible .testimonial,
  .reveal.visible .chat-card {
    animation: none !important;
  }
}
