:root {
  --bg-dark: #060606;
  --bg-dark-soft: #111111;
  --text-light: #f8f6f2;
  --gold: #d8b36a;
  --gold-soft: #8f6d37;
  --green: #14a84b;
  --green-dark: #0d8138;
  --rose-bg: #f3ebe5;
  --rose-soft: #eadbd2;
  --card-light: rgba(255, 255, 255, 0.96);
  --text-dark: #171412;
  --rose-accent: #965a62;
  --shadow-dark: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 14px 35px rgba(86, 49, 26, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(216, 179, 106, 0.13), transparent 20%),
    linear-gradient(180deg, #030303 0%, #0b0b0b 42%, #f2e7df 42%, #f6eee8 100%);
  color: var(--text-light);
  font-family: "Manrope", sans-serif;
}

.page-shell {
  min-height: 100vh;
}

.hero,
.content {
  width: min(100%, 440px);
  margin: 0 auto;
  position: relative;
}

.hero {
  padding: 26px 18px 38px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow-top {
  top: -60px;
  right: -40px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.28), transparent 72%);
}

.hero-glow-side {
  top: 260px;
  left: -100px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 74%);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: 0.95;
}

.hero-title span {
  display: block;
  font-size: clamp(2.2rem, 10vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero-title strong {
  display: block;
  margin-top: 6px;
  font-family: "Alex Brush", cursive;
  font-size: clamp(3rem, 13vw, 4.45rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 0.85;
}

.hero-subtitle {
  margin: 20px 0 0;
  color: rgba(248, 246, 242, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.urgency-bar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(216, 179, 106, 0.35);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(216, 179, 106, 0.12), rgba(255, 255, 255, 0.04));
  color: #f8ebd0;
  font-size: 0.83rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.fire-icon {
  font-size: 1rem;
}

.benefits-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.benefit-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.93rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-media {
  margin-top: 24px;
}

.video-player {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(34, 34, 34, 0.92), rgba(10, 10, 10, 0.96));
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.player-topbar,
.player-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
}

.player-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.player-topbar p {
  margin: 0 0 0 6px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.player-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #1b1b1b, #0e0e0e);
}

.player-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-frame {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.thumb-frame::before,
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, rgba(244, 218, 197, 0.92) 0 12%, transparent 12.5%),
    radial-gradient(circle at 50% 34%, rgba(109, 68, 44, 0.35), transparent 27%),
    linear-gradient(180deg, transparent 0 17%, rgba(36, 25, 18, 0.08) 17% 100%);
}

.thumb-before,
.photo-curly {
  background:
    radial-gradient(circle at 50% 75%, rgba(48, 31, 20, 0.25), transparent 55%),
    repeating-radial-gradient(circle at 50% 48%, #3a2418 0 8px, #4b2d1f 8px 14px, #2d1c13 14px 19px),
    linear-gradient(180deg, #a46f4e 0%, #6f472f 48%, #251711 100%);
}

.thumb-after,
.photo-straight {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 14%),
    linear-gradient(90deg, #4d2d1e 0%, #7b513b 25%, #9f7357 50%, #6e4530 75%, #41251a 100%);
}

.thumb-pro {
  background:
    radial-gradient(circle at 60% 28%, rgba(255, 236, 213, 0.95) 0 11%, transparent 11.5%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 24%),
    linear-gradient(180deg, #584137 0%, #1a1718 100%);
}

.thumb-pro::before {
  background:
    radial-gradient(circle at 58% 23%, rgba(246, 226, 208, 0.95) 0 10%, transparent 10.5%),
    radial-gradient(circle at 58% 39%, rgba(73, 45, 34, 0.45), transparent 24%),
    radial-gradient(circle at 58% 54%, rgba(36, 27, 23, 0.92), transparent 40%);
}

.tag,
.pro-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tag {
  background: rgba(0, 0, 0, 0.45);
  color: #fff8ec;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pro-badge {
  background: rgba(216, 179, 106, 0.16);
  color: #f7deb2;
  border: 1px solid rgba(216, 179, 106, 0.4);
}

.player-footer {
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-cta,
.bottom-cta {
  margin-top: 22px;
  text-align: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 16px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #19bd53, var(--green));
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 30px rgba(20, 168, 75, 0.28);
}

.cta-button:hover {
  background: linear-gradient(180deg, #21c95c, var(--green-dark));
}

.cta-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
}

.social-proof {
  margin-top: 12px;
}

.social-proof-stars,
.social-proof-text {
  margin: 0;
}

.social-proof-stars {
  font-size: 1rem;
  line-height: 1;
}

.social-proof-text {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.content {
  padding: 22px 18px 40px;
  color: var(--text-dark);
}

.content-card,
.offer-card {
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.content-card {
  padding: 22px 16px;
  background: var(--card-light);
}

.content-card + .content-card,
.content-card + .offer-card,
.offer-card + .bottom-cta {
  margin-top: 16px;
}

.content h2 {
  margin: 0 0 18px;
  color: #111111;
  text-align: center;
  font-size: clamp(1.6rem, 7vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.transformation-grid {
  display: grid;
  gap: 14px;
}

.comparison-card {
  border: 1px solid rgba(150, 90, 98, 0.18);
  border-radius: 20px;
  padding: 10px;
  background: linear-gradient(180deg, #fffdfc, #fff8f4);
}

.comparison-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.comparison-labels span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.comparison-labels span:first-child {
  background: #8c525a;
  color: white;
}

.comparison-labels span:last-child {
  background: #d9bb7a;
  color: #2c2115;
}

.comparison-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.photo {
  position: relative;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(208, 171, 100, 0.6);
}

.photo-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  background: #f1e5dc;
}

.soft {
  filter: saturate(0.9) brightness(1.04);
}

.warm {
  filter: sepia(0.08) saturate(1.1);
}

.volume {
  filter: contrast(1.05) brightness(0.95);
}

.shine {
  filter: brightness(1.08) saturate(1.08);
}

.learn-card h2 {
  text-align: left;
  margin-bottom: 16px;
}

.learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.learn-list li {
  position: relative;
  padding-left: 34px;
  color: #241c1b;
  font-size: 1rem;
  line-height: 1.35;
}

.learn-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #20c65b;
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
}

.offer-card {
  padding: 24px 18px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 245, 0.98));
  border: 1px solid rgba(217, 187, 122, 0.38);
}

.offer-kicker,
.offer-guarantee {
  margin: 0;
  color: var(--rose-accent);
}

.offer-kicker {
  font-size: 1.4rem;
  font-weight: 700;
}

.offer-old {
  margin: 8px 0 0;
  color: #2c2018;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: line-through;
}

.offer-card h3 {
  margin: 8px 0;
  color: #904950;
  font-size: clamp(2rem, 9vw, 2.6rem);
  
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-guarantee {
  font-size: 1.3rem;
}

.dark-note {
  color: rgba(23, 20, 18, 0.72);
}

@media (min-width: 760px) {
  .hero,
  .content {
    width: min(100%, 1080px);
  }

  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    padding: 48px 32px 54px;
  }

  .hero-copy {
    align-self: center;
  }

  .hero-cta {
    grid-column: 1 / -1;
    max-width: 520px;
    text-align: left;
  }

  .content {
    padding: 34px 32px 60px;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }

  .photo-image {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .learn-card h2 {
    text-align: center;
  }

  .learn-list {
    max-width: fit-content;
    margin: 0 auto;
  }
}

.rodape{
  display: flex;
  justify-content: space-between;
align-items: center;
}

.rodape > p{
  color: #030303b8;
  font-size: 0.9rem;
}
.rodape > p > a{
  color: #030303b8;
}



@media (max-width: 500px) {
.cta-note {
  margin: 10px 0 0;
  color: #904950;
  font-size: 1rem;
  font-weight: 700;
}

.rodape{
flex-direction: column;
gap: 0;
padding: 10px;
}

.rodape p{
    font-weight: 300;
  }
}