@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/poppins-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --pink: #fe0197;
  --pink-soft: #ff77c8;
  --pink-pale: #fff0f9;
  --page-pink: #ffd6e8;
  --page-pink-deep: #ffcce0;
  --purple: #7a3fd1;
  --purple-dark: #36124d;
  --purple-deep: #210b31;
  --green: #2ecc71;
  --green-dark: #169c51;
  --white: #fff;
  --ink: #17121c;
  --muted: #6e6374;
  --surface: var(--page-pink);
  --line: rgba(54, 18, 77, 0.12);
  --shadow-sm: 0 12px 30px rgba(54, 18, 77, 0.1);
  --shadow-md: 0 24px 60px rgba(54, 18, 77, 0.18);
  --shadow-pink: 0 20px 48px rgba(254, 1, 151, 0.28);
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: 1180px;
  --header-height: 116px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(106, 13, 173, 0.1), transparent 28%),
    radial-gradient(circle at 88% 32%, rgba(255, 0, 146, 0.09), transparent 30%),
    var(--surface);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page-particle-canvas {
  position: fixed;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  pointer-events: none;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.08;
}

ul {
  padding-left: 0;
  list-style: none;
}

::selection {
  color: var(--white);
  background: var(--pink);
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--purple-dark);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 116px 0;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 148px;
  height: auto;
  filter: brightness(0) invert(1);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

.button span {
  font-size: 21px;
  line-height: 1;
}

.button .header-cta-label,
.button .header-cta-short {
  font-size: inherit;
}

.header-cta-short {
  display: none;
}

.button-small {
  min-height: 46px;
  padding-inline: 21px;
  font-size: 12px;
}

.button-large {
  min-height: 62px;
  padding: 17px 31px;
}

.button-light {
  color: var(--purple-dark);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(20, 4, 32, 0.2);
}

.button-light:hover {
  box-shadow: 0 16px 35px rgba(20, 4, 32, 0.3);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(46, 204, 113, 0.32);
}

.button-primary:hover {
  box-shadow: 0 21px 42px rgba(46, 204, 113, 0.42);
}

.button-ghost {
  color: var(--purple-dark);
  background: var(--white);
  border-color: rgba(54, 18, 77, 0.18);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.7;
  filter: grayscale(0.35);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--pink);
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ffd9ef;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.section-copy h2,
.section-heading h2,
.faq-intro h2 {
  margin-bottom: 25px;
  color: var(--purple-dark);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-copy h2 span,
.section-heading h2 span,
.faq-intro h2 span {
  color: var(--pink);
}

.section-copy .lead,
.section-heading p,
.faq-intro > p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 58px;
}

.section-heading.centered {
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  min-height: 950px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(30, 4, 45, 0.92) 0%, rgba(56, 9, 75, 0.68) 44%, rgba(86, 10, 80, 0.05) 100%),
    url("../assets/images/hero-hair-bg-v2.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -24%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-top: 90px;
  grid-template-columns: 1.02fr 0.98fr;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(47px, 5.3vw, 78px);
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--pink-soft);
  font-family: "Archivo", sans-serif;
  font-style: italic;
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-benefits {
  display: grid;
  margin: 0 0 32px;
  gap: 9px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.hero-benefits li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.hero-photo-shell {
  position: absolute;
  z-index: 2;
  right: -7%;
  bottom: 7%;
  width: 108%;
  aspect-ratio: 1.39;
  overflow: hidden;
  background: var(--purple-dark);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 56px 150px 58px 142px;
  box-shadow:
    0 35px 80px rgba(20, 2, 30, 0.4),
    0 0 0 9px rgba(255, 255, 255, 0.045);
  transform: rotate(-1.5deg);
}

.hero-models {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 44%;
}

.hero-photo-shell::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(40, 6, 55, 0.38), transparent 35%),
    linear-gradient(100deg, rgba(254, 1, 151, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-photo-glint {
  position: absolute;
  z-index: 3;
  top: 12%;
  left: 8%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 35px;
  text-shadow: 0 0 22px rgba(255, 119, 200, 0.8);
  animation: decorationFloat 4.6s ease-in-out infinite;
}

.hero-hair-strand {
  position: absolute;
  z-index: 5;
  height: 42px;
  border-top: 3px solid rgba(255, 210, 239, 0.68);
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(254, 1, 151, 0.5));
  transform-origin: left center;
  animation: hairSway 5.8s ease-in-out infinite alternate;
}

.hero-hair-strand-one {
  top: 13%;
  right: 3%;
  width: 230px;
  transform: rotate(17deg);
}

.hero-hair-strand-two {
  right: -2%;
  bottom: 17%;
  width: 280px;
  border-top-width: 2px;
  transform: rotate(-12deg);
  animation-delay: -2s;
}

.hero-hair-strand-three {
  right: 30%;
  bottom: 2%;
  width: 190px;
  border-top-color: rgba(203, 166, 255, 0.62);
  transform: rotate(8deg);
  animation-delay: -3.5s;
}

.hero-seal {
  position: absolute;
  z-index: 6;
  top: 19%;
  right: -2%;
  display: grid;
  width: 120px;
  height: 120px;
  align-content: center;
  color: var(--white);
  background: var(--pink);
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: var(--shadow-pink);
  line-height: 1;
  text-align: center;
  transform: rotate(9deg);
}

.hero-seal strong {
  font-size: 29px;
}

.hero-seal span {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 700;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: orbitPulse 4s ease-in-out infinite alternate;
}

.orbit-one {
  top: 12%;
  right: -8%;
  width: 540px;
  height: 540px;
}

.orbit-two {
  top: 23%;
  right: 3%;
  width: 410px;
  height: 410px;
  animation-delay: -1.2s;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  top: -15%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: rgba(254, 1, 151, 0.25);
}

.hero-glow-two {
  right: 8%;
  bottom: -10%;
  width: 500px;
  height: 500px;
  background: rgba(122, 63, 209, 0.42);
}

.floating-icon {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
  font-size: 44px;
  animation: decorationFloat 5s ease-in-out infinite;
}

.floating-icon-brush {
  top: 19%;
  left: 51%;
}

.floating-icon-drop {
  right: 5%;
  bottom: 15%;
  font-size: 32px;
  animation-delay: -2s;
}

.floating-icon-drop svg {
  width: 30px;
  height: 38px;
  fill: rgba(255, 119, 200, 0.16);
  filter: drop-shadow(0 10px 14px rgba(254, 1, 151, 0.25));
  stroke: rgba(255, 255, 255, 0.86);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* MARQUEE */
.benefit-marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--pink));
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-1deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  padding: 18px 0;
}

.marquee-content span {
  position: relative;
  padding: 0 30px;
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* DORES */
.pain-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 119, 200, 0.2), transparent 30%),
    linear-gradient(180deg, var(--page-pink), var(--page-pink-deep));
}

.split-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.88fr 1.12fr;
}

.pain-editorial {
  position: relative;
  min-height: 650px;
}

.pain-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 91%;
  height: 540px;
  overflow: hidden;
  background: var(--white);
  border: 9px solid var(--white);
  border-radius: 155px 34px 155px 34px;
  box-shadow:
    0 32px 75px rgba(54, 18, 77, 0.2),
    0 0 0 1px rgba(254, 1, 151, 0.08);
  transform: rotate(-1.5deg);
}

.pain-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(54, 18, 77, 0.28), transparent 45%),
    linear-gradient(100deg, transparent 55%, rgba(254, 1, 151, 0.1));
  content: "";
}

.pain-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
}

.pain-photo-label {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  padding: 8px 15px;
  color: var(--white);
  background: rgba(54, 18, 77, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.root-card {
  position: absolute;
  z-index: 5;
  right: -4%;
  bottom: 0;
  display: grid;
  width: 78%;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(122, 63, 209, 0.14);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(54, 18, 77, 0.2);
  grid-template-columns: 105px 1fr;
  backdrop-filter: blur(16px);
}

.root-card svg {
  width: 105px;
  filter: drop-shadow(0 10px 14px rgba(122, 63, 209, 0.16));
}

.root-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.root-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.pain-signal {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(254, 1, 151, 0.16);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  backdrop-filter: blur(10px);
  animation: decorationFloat 5s ease-in-out infinite;
}

.pain-signal span {
  color: var(--pink);
  font-size: 18px;
}

.pain-signal-one {
  top: 20%;
  right: -5%;
}

.pain-signal-two {
  top: 48%;
  left: -5%;
  animation-delay: -2.3s;
}

.pain-hair-line {
  position: absolute;
  z-index: 4;
  width: 165px;
  height: 56px;
  border-top: 3px solid rgba(122, 63, 209, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: hairSway 5s ease-in-out infinite alternate;
}

.pain-hair-line-one {
  top: 8%;
  right: -7%;
  transform: rotate(24deg);
}

.pain-hair-line-two {
  bottom: 17%;
  left: -8%;
  border-top-color: rgba(254, 1, 151, 0.42);
  transform: rotate(-18deg);
  animation-delay: -2s;
}

.pain-list {
  display: grid;
  margin: 32px 0;
  gap: 12px;
}

.pain-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(254, 1, 151, 0.1);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

.pain-list li span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 50%;
}

.callout {
  display: grid;
  padding: 22px 25px;
  color: var(--white);
  background: var(--purple-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.callout strong {
  margin-bottom: 4px;
  color: var(--pink-soft);
  font-size: 18px;
}

.callout span {
  font-size: 14px;
}

.hair-divider {
  position: relative;
  z-index: 4;
  --divider-segment: max(100vw, 980px);
  height: 130px;
  margin: -64px 0;
  overflow: hidden;
  pointer-events: none;
}

.hair-divider-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: snakeTravel 20s linear infinite;
  will-change: transform;
}

.hair-divider-track img {
  width: var(--divider-segment);
  height: 100%;
  flex: 0 0 var(--divider-segment);
  max-width: none;
  object-fit: cover;
}

.hair-divider-track img:nth-child(even) {
  transform: scaleX(-1);
}

.hair-divider-reverse .hair-divider-track {
  animation-direction: reverse;
}

/* PRODUTO */
.product-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 30%, rgba(254, 1, 151, 0.28), transparent 32%),
    linear-gradient(145deg, var(--purple-deep), var(--purple-dark));
}

.product-grid {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: 1.05fr 0.95fr;
}

.product-section .section-copy h2,
.transformation-section .section-copy h2 {
  color: var(--white);
}

.product-section .section-copy h2 span,
.transformation-section .section-copy h2 span {
  color: var(--pink-soft);
}

.product-section .section-copy .lead,
.transformation-section .section-copy .lead {
  color: rgba(255, 255, 255, 0.75);
}

.product-points {
  display: grid;
  margin-top: 36px;
  gap: 15px;
}

.product-points article {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.product-points article > strong {
  color: var(--pink-soft);
  font-family: "Archivo", sans-serif;
  font-size: 28px;
}

.product-points h3 {
  margin: 0 0 3px;
  font-size: 18px;
}

.product-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.product-stage {
  position: relative;
  min-height: 700px;
}

.product-stage > img {
  position: absolute;
  z-index: 3;
  right: -2%;
  bottom: 0;
  width: 93%;
  filter: drop-shadow(0 35px 38px rgba(0, 0, 0, 0.28));
}

.product-stage-circle {
  position: absolute;
  top: 11%;
  right: 1%;
  width: 520px;
  height: 520px;
  background: linear-gradient(145deg, rgba(255, 119, 200, 0.3), rgba(122, 63, 209, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.08);
  animation: orbitPulse 4s ease-in-out infinite alternate;
}

.stage-note {
  position: absolute;
  z-index: 5;
  padding: 10px 15px;
  color: var(--purple-dark);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 700;
  animation: decorationFloat 4.5s ease-in-out infinite;
}

.stage-note-one {
  top: 20%;
  left: 5%;
}

.stage-note-two {
  top: 47%;
  right: -4%;
  animation-delay: -1.5s;
}

.stage-note-three {
  bottom: 17%;
  left: 1%;
  animation-delay: -2.5s;
}

/* MOSTRUÁRIO FLUTUANTE DOS PRODUTOS */
.product-stage {
  isolation: isolate;
}

.product-stage::before {
  display: none;
  position: absolute;
  z-index: 0;
  inset: 4% -3% 3% -4%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.72), transparent 23%),
    radial-gradient(circle at 82% 78%, rgba(173, 81, 235, 0.28), transparent 32%),
    linear-gradient(145deg, #ffd6ed 0%, #ffabd9 48%, #f589ca 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 48% 42% 45% 38% / 34% 48% 39% 52%;
  box-shadow:
    0 35px 80px rgba(13, 2, 20, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -35px 70px rgba(122, 63, 209, 0.1);
  content: "";
  pointer-events: none;
}

.product-stage::after {
  display: none;
  position: absolute;
  z-index: 1;
  inset: 5% -2% 4% -3%;
  background:
    radial-gradient(circle at 9% 17%, rgba(122, 63, 209, 0.72) 0 3px, transparent 4px),
    radial-gradient(circle at 18% 77%, rgba(254, 1, 151, 0.58) 0 2px, transparent 3px),
    radial-gradient(circle at 33% 9%, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 49% 71%, rgba(122, 63, 209, 0.56) 0 4px, transparent 5px),
    radial-gradient(circle at 63% 18%, rgba(254, 1, 151, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 8%, rgba(122, 63, 209, 0.66) 0 3px, transparent 4px),
    radial-gradient(circle at 91% 38%, rgba(254, 1, 151, 0.68) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 86%, rgba(255, 255, 255, 0.88) 0 3px, transparent 4px);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.product-float-orbit {
  position: absolute;
  z-index: 1;
  top: 12%;
  right: 4%;
  width: 86%;
  height: 72%;
  border: 1px solid rgba(122, 63, 209, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.05),
    0 0 0 36px rgba(122, 63, 209, 0.035);
  transform: rotate(-18deg);
}

.product-float-card {
  --float-rotation: 0deg;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 7px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 217, 239, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 36px;
  box-shadow:
    0 42px 75px rgba(10, 0, 18, 0.34),
    0 18px 34px rgba(122, 63, 209, 0.2),
    0 0 0 1px rgba(254, 1, 151, 0.12),
    inset 0 1px 0 #fff,
    inset 0 -2px 0 rgba(122, 63, 209, 0.14);
  animation: productCardFloat 5.8s ease-in-out infinite alternate;
  backdrop-filter: blur(20px);
}

.product-float-card::before {
  position: absolute;
  z-index: 4;
  top: 7px;
  right: 7px;
  left: 7px;
  height: 42%;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.62), transparent 42%),
    linear-gradient(90deg, transparent 8%, rgba(255, 255, 255, 0.7) 50%, transparent 92%);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-bottom: 0;
  border-radius: 28px 28px 50% 50% / 28px 28px 22% 22%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.product-float-card::after {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 17px;
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254, 1, 151, 0.9), #fff);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(254, 1, 151, 0.58);
  content: "";
  pointer-events: none;
}

.product-float-card-spray {
  --float-rotation: -4deg;
  top: 9%;
  left: 0;
  width: 48%;
  height: 385px;
}

.product-float-card-care {
  --float-rotation: 4deg;
  top: 38%;
  right: -1%;
  width: 53%;
  height: 405px;
  animation-delay: -2.9s;
}

.product-card-number {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #ff179f 5%, #9b32db 58%, #5c1ba0 100%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 15px;
  box-shadow:
    0 12px 25px rgba(54, 18, 77, 0.32),
    0 0 0 4px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.product-float-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fdd8eb;
  border-radius: 29px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    inset 0 -28px 45px rgba(122, 63, 209, 0.09);
}

.product-float-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.018);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-float-card:hover .product-float-image img {
  transform: scale(1.055);
}

.product-float-card figcaption {
  position: absolute;
  z-index: 6;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: block;
  margin: 0;
  padding: 13px 15px 12px;
  color: var(--purple-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 239, 248, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow:
    0 14px 28px rgba(54, 18, 77, 0.2),
    inset 0 1px 0 #fff;
  text-align: left;
  backdrop-filter: blur(18px);
}

.product-float-card figcaption strong,
.product-float-card figcaption span {
  display: block;
}

.product-float-card figcaption strong {
  font-size: 15px;
  line-height: 1.2;
}

.product-float-card figcaption span {
  margin-top: 4px;
  color: #76617f;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.product-float-glint {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  font-size: 28px;
  line-height: 1;
  animation: glintPulse 2.8s ease-in-out infinite alternate;
}

.product-float-glint-one {
  top: 20%;
  right: 4%;
}

.product-float-glint-two {
  bottom: 12%;
  left: 4%;
  font-size: 20px;
  animation-delay: -1.4s;
}

@keyframes productCardFloat {
  from {
    transform: translate3d(0, -8px, 0) rotate(var(--float-rotation));
  }
  to {
    transform: translate3d(0, 10px, 0) rotate(var(--float-rotation));
  }
}

@keyframes productInnerFloat {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(6px);
  }
}

@keyframes glintPulse {
  from {
    opacity: 0.45;
    transform: scale(0.8) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1.12) rotate(8deg);
  }
}

/* BENEFÍCIOS */
.benefits-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 1, 151, 0.09), transparent 35%),
    var(--page-pink);
}

.benefit-cards {
  display: grid;
  align-items: stretch;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.benefit-card {
  position: relative;
  overflow: hidden;
  background: var(--pink-pale);
  border: 1px solid rgba(122, 63, 209, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.benefit-card:nth-child(odd) {
  transform: translateY(18px);
}

.benefit-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}

.benefit-image {
  position: relative;
  aspect-ratio: 1;
  margin: 18px 16px 0;
  padding: 6px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--pink), #d7a9ff 48%, var(--purple));
  border-radius: 50%;
  box-shadow:
    0 20px 38px rgba(54, 18, 77, 0.16),
    inset 0 0 0 4px rgba(255, 255, 255, 0.72);
}

.benefit-image::after {
  position: absolute;
  top: 9%;
  right: 18%;
  width: 22%;
  height: 9%;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
  filter: blur(6px);
  transform: rotate(24deg);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  image-rendering: auto;
  transform: scale(1.3);
}

.benefit-image-shine img {
  transform: scale(1.02);
}

.benefit-card-body {
  min-height: 236px;
  padding: 22px 19px 26px;
}

.benefit-card-body > span {
  color: var(--pink);
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.benefit-card h3 {
  margin: 8px 0 10px;
  color: var(--purple-dark);
  font-size: 20px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* PASSOS */
.steps-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(254, 1, 151, 0.22), transparent 30%),
    linear-gradient(145deg, #210b31, #4b1762);
}

.steps-section .section-heading h2,
.testimonials-section .section-heading h2 {
  color: var(--white);
}

.steps-section .section-heading h2 span,
.testimonials-section .section-heading h2 span {
  color: var(--pink-soft);
}

.steps-section .section-heading p,
.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

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

.step-card {
  position: relative;
  min-height: 330px;
  padding: 34px 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.step-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  background: rgba(254, 1, 151, 0.14);
  border-radius: 50%;
  content: "";
}

.step-number {
  color: var(--pink-soft);
  font-family: "Archivo", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.step-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 40px 0 25px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 24px;
  box-shadow: var(--shadow-pink);
  font-size: 29px;
  transform: rotate(-5deg);
}

.step-card:nth-child(even) .step-icon {
  transform: rotate(5deg);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.safety-note {
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  text-align: center;
}

/* TRANSFORMAÇÃO */
.transformation-section {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(54, 18, 77, 0.99), rgba(122, 63, 209, 0.9)),
    url("../assets/images/hero-hair-bg.jpg") center / cover no-repeat;
}

.transformation-grid {
  display: grid;
  align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.transformation-image {
  position: relative;
  align-self: end;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 120px 36px 0 0;
  box-shadow: 0 28px 60px rgba(20, 2, 30, 0.25);
}

.transformation-image img {
  width: 112%;
  height: 100%;
  max-width: none;
  margin-left: -6%;
  object-fit: cover;
  object-position: 85% center;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.23));
}

.transformation-section .section-copy {
  padding-bottom: 80px;
}

/* COMPARAÇÃO DE ROTINAS */
.choice-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(254, 1, 151, 0.1), transparent 28%),
    linear-gradient(180deg, var(--page-pink), var(--page-pink-deep));
}

.choice-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.choice-card {
  position: relative;
  padding: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.choice-card::after {
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.choice-card-old::after {
  background: #b5a9ba;
}

.choice-card-new {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 119, 200, 0.3), transparent 35%),
    linear-gradient(145deg, var(--purple-dark), var(--purple));
  border-color: rgba(255, 255, 255, 0.15);
}

.choice-card-new::after {
  background: var(--pink-soft);
}

.choice-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 9px 16px;
  color: var(--purple-dark);
  background: rgba(54, 18, 77, 0.07);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice-label span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: #a89cab;
  border-radius: 50%;
  font-size: 16px;
}

.choice-card-new .choice-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.choice-card-new .choice-label span {
  background: var(--green);
}

.choice-card ul {
  display: grid;
  margin: 0;
  gap: 4px;
}

.choice-card li {
  position: relative;
  padding: 15px 0 15px 31px;
  border-bottom: 1px solid rgba(54, 18, 77, 0.1);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.choice-card li:last-child {
  border-bottom: 0;
}

.choice-card li::before {
  position: absolute;
  top: 17px;
  left: 3px;
  color: #a89cab;
  content: "×";
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.choice-card-new li {
  color: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.choice-card-new li::before {
  color: var(--green);
  content: "✓";
}

.choice-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 42px;
  text-align: center;
}

.choice-cta p {
  max-width: 500px;
  margin: 0;
  color: var(--purple-dark);
  font-weight: 600;
}

/* GALERIA DE RESULTADOS */
.results-gallery-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(254, 1, 151, 0.2), transparent 30%),
    linear-gradient(150deg, #16051f, var(--purple-deep) 55%, #4b175b);
}

.results-gallery-section .section-heading {
  position: relative;
  z-index: 2;
}

.results-gallery-section .section-heading h2 {
  color: var(--white);
}

.results-gallery-section .section-heading h2 span {
  color: var(--pink-soft);
}

.results-gallery-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.results-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.results-glow-one {
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(254, 1, 151, 0.2), transparent 70%);
}

.results-glow-two {
  bottom: -260px;
  left: -160px;
  background: radial-gradient(circle, rgba(122, 63, 209, 0.35), transparent 70%);
}

.result-board {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 42px 34px;
  padding: 24px 14px 34px;
  grid-template-columns: repeat(3, 1fr);
}

.result-polaroid {
  position: relative;
  margin: 0;
  padding: 13px 13px 24px;
  color: var(--purple-dark);
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.result-polaroid:nth-child(odd) {
  transform: rotate(-2deg);
}

.result-polaroid:nth-child(even) {
  transform: translateY(18px) rotate(2deg);
}

.result-polaroid:hover {
  z-index: 4;
  transform: translateY(-10px) rotate(0);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
}

.result-polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a0b22;
  border-radius: 9px;
}

.result-polaroid figcaption {
  padding: 18px 8px 0;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.result-pin {
  position: absolute;
  z-index: 3;
  top: -10px;
  left: 50%;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink));
  border: 4px solid #ffc8e9;
  border-radius: 50%;
  box-shadow: 0 7px 12px rgba(54, 18, 77, 0.35);
  transform: translateX(-50%);
}

.result-tape {
  position: absolute;
  z-index: 3;
  top: -11px;
  left: 50%;
  width: 86px;
  height: 25px;
  background: rgba(255, 220, 241, 0.85);
  box-shadow: 0 3px 9px rgba(54, 18, 77, 0.12);
  transform: translateX(-50%) rotate(-3deg);
}

.results-action {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* PARA QUEM É */
.audience-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 115%, rgba(122, 63, 209, 0.17), transparent 42%),
    var(--page-pink);
}

.audience-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

.audience-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.audience-card-yes {
  border-top: 7px solid var(--green);
}

.audience-card-care {
  border-top: 7px solid var(--pink);
}

.audience-card-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
}

.audience-card-heading > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(46, 204, 113, 0.22);
  font-size: 22px;
  font-weight: 800;
}

.audience-card-care .audience-card-heading > span {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: var(--shadow-pink);
}

.audience-card h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 24px;
}

.audience-card ul {
  display: grid;
  margin: 0;
  gap: 12px;
}

.audience-card li {
  position: relative;
  padding: 14px 16px 14px 46px;
  color: var(--muted);
  background: var(--surface);
  border-radius: 14px;
  font-size: 14px;
}

.audience-card li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--green-dark);
  content: "✓";
  font-size: 17px;
  font-weight: 800;
}

.audience-card-care li::before {
  color: var(--pink);
  content: "!";
}

/* BÔNUS */
.bonus-section {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 11, 49, 0.98), rgba(83, 24, 99, 0.97)),
    url("../assets/images/hero-hair-bg-v2.jpg") center / cover no-repeat;
}

.bonus-section .section-heading,
.bonus-grid,
.bonus-footer {
  position: relative;
  z-index: 2;
}

.bonus-section .section-heading h2 {
  color: var(--white);
}

.bonus-section .section-heading h2 span {
  color: var(--pink-soft);
}

.bonus-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.bonus-orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.bonus-orb-one {
  top: -170px;
  right: -100px;
  width: 460px;
  height: 460px;
}

.bonus-orb-two {
  bottom: -230px;
  left: -80px;
  width: 520px;
  height: 520px;
}

.bonus-grid {
  display: grid;
  align-items: stretch;
  gap: 25px;
  grid-template-columns: repeat(3, 1fr);
}

.bonus-card {
  overflow: hidden;
  color: var(--purple-dark);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 25px 65px rgba(8, 2, 13, 0.32);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.bonus-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 78px rgba(8, 2, 13, 0.42);
}

.bonus-card-featured {
  transform: translateY(-15px);
  box-shadow: 0 28px 75px rgba(254, 1, 151, 0.22);
}

.bonus-card-featured:hover {
  transform: translateY(-24px);
}

.bonus-image {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: end center;
  padding: 64px 20px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 55%, rgba(254, 1, 151, 0.16), transparent 45%),
    linear-gradient(180deg, #fff9fd, #f6eaff);
}

.bonus-image::after {
  position: absolute;
  right: 8%;
  bottom: -50px;
  left: 8%;
  height: 90px;
  background: rgba(122, 63, 209, 0.25);
  border-radius: 50%;
  content: "";
  filter: blur(18px);
}

.bonus-image img {
  position: relative;
  z-index: 2;
  width: min(100%, 270px);
  max-height: 315px;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(54, 18, 77, 0.24));
  transition: transform 0.4s ease;
}

.bonus-card:hover .bonus-image img {
  transform: translateY(-7px) rotate(2deg) scale(1.03);
}

.bonus-number {
  position: absolute;
  z-index: 4;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bonus-card-body {
  padding: 27px 28px 32px;
}

.bonus-card-body h3 {
  margin-bottom: 12px;
  color: var(--purple-dark);
  font-size: 21px;
}

.bonus-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.bonus-footer {
  display: grid;
  justify-items: center;
  margin-top: 48px;
  text-align: center;
}

.bonus-footer p {
  max-width: 670px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

/* JORNADA */
.journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 70%, rgba(255, 119, 200, 0.16), transparent 30%),
    linear-gradient(180deg, var(--page-pink), var(--page-pink-deep));
}

.journey-timeline {
  position: relative;
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  gap: 24px;
}

.journey-line {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 50%;
  width: 3px;
  background: linear-gradient(var(--pink), var(--purple), var(--green));
  border-radius: 999px;
  transform: translateX(-50%);
}

.journey-item {
  position: relative;
  display: grid;
  align-items: center;
  gap: 35px;
  grid-template-columns: 1fr 64px 1fr;
}

.journey-item::after {
  content: "";
}

.journey-item-right .journey-content {
  order: 3;
}

.journey-item-right .journey-dot {
  order: 2;
}

.journey-item-right::after {
  order: 1;
}

.journey-dot {
  position: relative;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-pink);
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.journey-content {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-sm);
}

.journey-content > span {
  display: block;
  margin-bottom: 5px;
  color: var(--pink);
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-content h3 {
  margin-bottom: 8px;
  color: var(--purple-dark);
  font-size: 20px;
}

.journey-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* OFERTAS */
.offers-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 119, 200, 0.2), transparent 30%),
    linear-gradient(180deg, var(--page-pink-deep), var(--page-pink));
}

.offer-grid {
  display: grid;
  align-items: center;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  position: relative;
  display: flex;
  min-height: 660px;
  flex-direction: column;
  align-items: center;
  padding: 35px 28px 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 119, 200, 0.2), transparent 38%),
    var(--white);
  border: 1px solid rgba(122, 63, 209, 0.13);
  border-radius: 35px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.offer-card:first-child {
  transform: rotate(-1.5deg);
}

.offer-card:last-child {
  transform: rotate(1.5deg);
}

.offer-card:hover {
  z-index: 3;
  transform: translateY(-12px) rotate(0);
  box-shadow: 0 30px 75px rgba(54, 18, 77, 0.25);
}

.offer-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 119, 200, 0.35), transparent 40%),
    linear-gradient(150deg, var(--purple-dark), var(--purple));
  border: 4px solid var(--pink-soft);
  transform: scale(1.05);
}

.offer-badge {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 15px;
  color: var(--white);
  background: var(--pink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-card:not(.offer-card-featured) .offer-badge-secondary {
  color: var(--purple);
  background: var(--pink-pale);
}

.offer-card h3 {
  margin: 5px 0 8px;
  color: var(--purple-dark);
  font-size: 29px;
}

.offer-card-featured h3 {
  color: var(--white);
}

.offer-description {
  min-height: 52px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.offer-card-featured .offer-description {
  color: rgba(255, 255, 255, 0.7);
}

.offer-image-wrap {
  display: grid;
  width: 100%;
  height: 245px;
  place-items: center;
}

.offer-image-wrap img {
  max-width: 88%;
  max-height: 235px;
  filter: drop-shadow(0 18px 18px rgba(54, 18, 77, 0.2));
}

.offer-installments {
  margin: 10px 0 2px;
  color: var(--purple-dark);
  font-size: 22px;
  font-weight: 800;
}

.offer-card-featured .offer-installments {
  color: var(--pink-soft);
}

.offer-cash {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.offer-card-featured .offer-cash {
  color: rgba(255, 255, 255, 0.75);
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-fineprint {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.offer-card-featured .offer-fineprint {
  color: rgba(255, 255, 255, 0.58);
}

.purchase-trust {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 50px;
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 600;
}

.purchase-trust span {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.noscript-message {
  text-align: center;
}

/* CUIDADOS */
.care-section {
  overflow: hidden;
  background: var(--page-pink);
}

.care-grid {
  display: grid;
  align-items: center;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}

.ingredients {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
}

.ingredient-card {
  position: absolute;
  width: 54%;
  overflow: hidden;
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.ingredient-card:first-child {
  top: 1%;
  left: 0;
  transform: rotate(-7deg);
}

.ingredient-card:nth-child(2) {
  z-index: 3;
  top: 24%;
  right: 2%;
  transform: rotate(7deg);
}

.ingredient-card:nth-child(3) {
  z-index: 4;
  bottom: 0;
  left: 14%;
  transform: rotate(-2deg);
}

.ingredient-card img {
  width: 100%;
}

.ingredient-card span {
  display: block;
  padding: 10px;
  color: var(--purple-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.check-list {
  display: grid;
  margin-top: 30px;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  color: var(--purple-dark);
  font-weight: 500;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}

/* DEPOIMENTOS */
.testimonials-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(254, 1, 151, 0.22), transparent 30%),
    linear-gradient(145deg, var(--purple-deep), #48135f);
}

.video-carousel {
  position: relative;
}

.video-track {
  display: grid;
  max-width: 930px;
  margin-inline: auto;
  padding: 12px 4px 32px;
  overflow: visible;
  gap: 24px;
  grid-auto-flow: row;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  position: relative;
  min-width: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 119, 200, 0.28), transparent 55%),
    #180822;
  border: 2px solid transparent;
  border-radius: 28px;
  box-shadow:
    0 26px 58px rgba(7, 1, 12, 0.34),
    0 0 0 1px rgba(255, 119, 200, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.video-shell::before {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 13%;
  left: 13%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink-soft), #fff, transparent);
  border-radius: 0 0 999px 999px;
  content: "";
  pointer-events: none;
}

.video-shell::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(26, 4, 39, 0.28) 100%),
    linear-gradient(110deg, rgba(254, 1, 151, 0.07), transparent 45%);
  content: "";
  pointer-events: none;
}

.video-poster {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.03);
  transition:
    opacity 0.35s ease,
    transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.video-card:hover .video-poster {
  transform: scale(1.04);
}

.video-shell iframe {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-load {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  padding: 0 0 0 4px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, rgba(254, 1, 151, 0.96), rgba(122, 63, 209, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  box-shadow:
    0 16px 35px rgba(25, 3, 37, 0.36),
    0 0 0 9px rgba(255, 255, 255, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
  backdrop-filter: blur(10px);
}

.video-load:hover {
  box-shadow:
    0 20px 42px rgba(25, 3, 37, 0.42),
    0 0 0 11px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -50%) scale(1.07);
}

.video-shell.loaded .video-load {
  display: none;
}

.video-shell.loaded .video-poster {
  opacity: 0;
  pointer-events: none;
}

.carousel-button {
  display: none;
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.proof-wall {
  display: grid;
  height: 690px;
  margin-top: 80px;
  overflow: hidden;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 14%, black 86%, transparent);
}

.proof-column {
  height: 690px;
  overflow: hidden;
}

.proof-scroll {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-scroll img {
  width: 100%;
  min-height: 520px;
  padding: 0;
  object-fit: cover;
  border-radius: 24px;
}

.proof-column.up .proof-scroll {
  animation: proofScrollUp 15s linear infinite alternate;
  animation-delay: -0.1s;
}

.proof-column.down .proof-scroll {
  animation: proofScrollDown 15s linear infinite alternate;
}

/* GARANTIA */
.guarantee-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(254, 1, 151, 0.18), transparent 30%),
    var(--page-pink);
}

.guarantee-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.9fr 1.1fr;
}

.guarantee-image {
  position: relative;
  min-height: 590px;
}

.guarantee-image img {
  position: relative;
  z-index: 2;
  height: 590px;
  margin-inline: auto;
  filter: drop-shadow(0 35px 35px rgba(54, 18, 77, 0.18));
}

.guarantee-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  height: 480px;
  background: linear-gradient(145deg, var(--pink), var(--purple));
  border-radius: 50%;
  opacity: 0.16;
  transform: translate(-50%, -50%);
  animation: orbitPulse 4s ease-in-out infinite alternate;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--purple);
  font-weight: 700;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--pink);
}

/* FAQ */
.faq-section {
  color: var(--white);
  background: linear-gradient(145deg, var(--purple-deep), var(--purple-dark));
}

.faq-grid {
  display: grid;
  gap: 85px;
  grid-template-columns: 0.72fr 1.28fr;
}

.faq-intro h2 {
  color: var(--white);
}

.faq-intro h2 span {
  color: var(--pink-soft);
}

.faq-intro > p {
  color: rgba(255, 255, 255, 0.67);
}

.faq-intro img {
  width: 180px;
  max-height: 320px;
  margin: 35px auto 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.35));
  transform: rotate(7deg);
}

.accordion {
  display: grid;
  align-content: start;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: background 0.25s ease;
}

.accordion details[open] {
  background: rgba(254, 1, 151, 0.12);
}

.accordion summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 23px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--white);
  background: var(--pink);
  border-radius: 50%;
  font-size: 22px;
  transition: transform 0.25s ease;
}

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

.accordion details p {
  margin: 0;
  padding: 0 23px 24px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

/* RODAPÉ */
/* REFINO VISUAL PREMIUM */
.eyebrow {
  min-height: 31px;
  padding: 6px 14px;
  background: rgba(122, 63, 209, 0.07);
  border: 1px solid rgba(122, 63, 209, 0.17);
  border-radius: 999px;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(254, 1, 151, 0.08);
  content: "";
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero .eyebrow::before {
  display: none;
}

.section-heading h2 span,
.section-copy h2 span {
  color: var(--pink);
  background: linear-gradient(100deg, var(--pink), var(--purple));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-section .section-copy h2 span,
.transformation-section .section-copy h2 span,
.steps-section .section-heading h2 span,
.testimonials-section .section-heading h2 span,
.results-gallery-section .section-heading h2 span,
.bonus-section .section-heading h2 span,
.faq-intro h2 span {
  background: linear-gradient(100deg, #ffb2df, var(--pink-soft), #cba6ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-3px);
}

/* CARDS EDITORIAIS PREMIUM */
.choice-card {
  position: relative;
  isolation: isolate;
  padding: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(254, 1, 151, 0.09), transparent 34%) padding-box,
    linear-gradient(145deg, #fff 0%, #fdfafd 55%, #f4edf7 100%) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(122, 63, 209, 0.3)) border-box;
  border: 1px solid transparent;
  border-radius: 32px;
  box-shadow:
    0 30px 70px rgba(54, 18, 77, 0.14),
    0 8px 20px rgba(54, 18, 77, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -1px 0 rgba(122, 63, 209, 0.08);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1);
  backdrop-filter: blur(18px);
}

.choice-card > * {
  position: relative;
  z-index: 2;
}

.choice-card::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254, 1, 151, 0.62), transparent);
  content: "";
  pointer-events: none;
}

.choice-card::after,
.choice-card-old::after {
  position: absolute;
  z-index: 0;
  right: -95px;
  bottom: -75px;
  width: 290px;
  height: 170px;
  background: transparent;
  border: 1px solid rgba(122, 63, 209, 0.1);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow:
    0 -13px 0 -12px rgba(122, 63, 209, 0.14),
    0 -25px 0 -24px rgba(254, 1, 151, 0.1),
    0 -37px 0 -36px rgba(122, 63, 209, 0.09);
  content: "";
  opacity: 1;
  pointer-events: none;
  transform: rotate(-8deg);
}

.choice-card:hover {
  box-shadow:
    0 36px 82px rgba(54, 18, 77, 0.18),
    0 10px 24px rgba(54, 18, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-7px);
}

.choice-card-new {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 3%, rgba(255, 119, 200, 0.4), transparent 34%) padding-box,
    radial-gradient(circle at 5% 95%, rgba(122, 63, 209, 0.48), transparent 36%) padding-box,
    linear-gradient(145deg, #2d0d42 0%, #4b176c 48%, #7b3fce 100%) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 119, 200, 0.5)) border-box;
  border-color: transparent;
  box-shadow:
    0 34px 78px rgba(54, 18, 77, 0.3),
    0 9px 28px rgba(122, 63, 209, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 119, 200, 0.15);
}

.choice-card-new::after {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  border-right-color: transparent;
  border-bottom-color: transparent;
  box-shadow:
    0 -13px 0 -12px rgba(255, 255, 255, 0.14),
    0 -25px 0 -24px rgba(255, 119, 200, 0.16),
    0 -37px 0 -36px rgba(255, 255, 255, 0.09);
}

.choice-card-new:hover {
  box-shadow:
    0 40px 90px rgba(54, 18, 77, 0.37),
    0 12px 30px rgba(122, 63, 209, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.choice-label {
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 15px 7px 8px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 63, 209, 0.11);
  box-shadow:
    0 10px 24px rgba(54, 18, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.choice-label > span {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  background: none;
  border-radius: 0;
  font-size: inherit;
}

.choice-label > .choice-label-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: #75687c;
  background: linear-gradient(145deg, #f1ebf3, #ded5e3);
  border: 1px solid rgba(54, 18, 77, 0.08);
  border-radius: 50%;
  box-shadow:
    0 7px 15px rgba(54, 18, 77, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.choice-label-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.choice-card-new .choice-label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow:
    0 12px 26px rgba(21, 3, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.choice-card-new .choice-label > span:not(.choice-label-icon) {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
}

.choice-card-new .choice-label > .choice-label-icon {
  color: #effff5;
  background: linear-gradient(145deg, #39db81, #139e50);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 8px 18px rgba(18, 147, 74, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.choice-card ul {
  gap: 10px;
}

.choice-card li {
  position: relative;
  min-width: 0;
  min-height: 56px;
  padding: 14px 16px 14px 53px;
  color: #62566a;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(54, 18, 77, 0.07);
  border-radius: 16px;
  box-shadow:
    0 7px 18px rgba(54, 18, 77, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.choice-card li:last-child {
  border-bottom: 1px solid rgba(54, 18, 77, 0.07);
}

.choice-card li:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(122, 63, 209, 0.14);
  transform: translateX(4px);
}

.choice-card li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 25px;
  height: 25px;
  color: transparent;
  background: linear-gradient(145deg, #eee8f0, #ded5e2);
  border: 1px solid rgba(54, 18, 77, 0.08);
  border-radius: 9px;
  box-shadow:
    0 5px 12px rgba(54, 18, 77, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  content: "";
  font-size: 0;
  transform: translateY(-50%);
}

.choice-card li::after {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 9px;
  height: 2px;
  background: #807285;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.choice-card-new li {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 8px 20px rgba(20, 3, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.choice-card-new li:last-child {
  border-bottom-color: rgba(255, 255, 255, 0.11);
}

.choice-card-new li::before {
  color: transparent;
  background: linear-gradient(145deg, #36dc7e, #129d50);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 7px 16px rgba(11, 109, 54, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  content: "";
}

.choice-card-new li::after {
  left: 23px;
  width: 7px;
  height: 12px;
  background: transparent;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  border-radius: 1px;
  transform: translateY(-65%) rotate(45deg);
}

.choice-card-new li:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.audience-card {
  position: relative;
  isolation: isolate;
  padding: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(46, 204, 113, 0.11), transparent 34%) padding-box,
    linear-gradient(150deg, #fff, #fbfffc 62%, #f1faf5) padding-box,
    linear-gradient(145deg, rgba(46, 204, 113, 0.42), rgba(122, 63, 209, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: 30px;
  box-shadow:
    0 26px 65px rgba(54, 18, 77, 0.12),
    0 8px 20px rgba(22, 156, 81, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.audience-card-care {
  background:
    radial-gradient(circle at 100% 0%, rgba(254, 1, 151, 0.12), transparent 34%) padding-box,
    linear-gradient(150deg, #fff, #fffafd 62%, #fbf0f7) padding-box,
    linear-gradient(145deg, rgba(254, 1, 151, 0.38), rgba(122, 63, 209, 0.16)) border-box;
}

.audience-card > * {
  position: relative;
  z-index: 2;
}

.audience-card::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 11%;
  left: 11%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 999px;
  content: "";
}

.audience-card-care::before {
  background: linear-gradient(90deg, transparent, var(--pink), var(--purple), transparent);
}

.audience-card::after {
  position: absolute;
  z-index: 0;
  right: -100px;
  bottom: -105px;
  width: 270px;
  height: 230px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.1), transparent 67%);
  border: 1px solid rgba(46, 204, 113, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 15px rgba(46, 204, 113, 0.025),
    0 0 0 30px rgba(46, 204, 113, 0.018);
  content: "";
  pointer-events: none;
}

.audience-card-care::after {
  background: radial-gradient(circle, rgba(254, 1, 151, 0.1), transparent 67%);
  border-color: rgba(254, 1, 151, 0.12);
  box-shadow:
    0 0 0 15px rgba(254, 1, 151, 0.025),
    0 0 0 30px rgba(122, 63, 209, 0.018);
}

.audience-card:hover {
  box-shadow:
    0 34px 78px rgba(54, 18, 77, 0.16),
    0 10px 24px rgba(22, 156, 81, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-7px);
}

.audience-card-heading > span {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--white);
  background: linear-gradient(145deg, #40df87, #139d50);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow:
    0 14px 28px rgba(22, 156, 81, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: rotate(-3deg);
}

.audience-card-care .audience-card-heading > span {
  background: linear-gradient(145deg, var(--pink), var(--purple));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 30px rgba(254, 1, 151, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: rotate(3deg);
}

.audience-card-heading svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.audience-card h3 {
  font-size: 25px;
  letter-spacing: -0.025em;
}

.audience-card ul {
  gap: 10px;
}

.audience-card li {
  min-height: 54px;
  padding: 13px 15px 13px 52px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 156, 81, 0.09);
  border-radius: 15px;
  box-shadow:
    0 7px 18px rgba(54, 18, 77, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.audience-card-care li {
  border-color: rgba(254, 1, 151, 0.09);
}

.audience-card li:hover {
  border-color: rgba(22, 156, 81, 0.2);
  transform: translateX(4px);
}

.audience-card-care li:hover {
  border-color: rgba(254, 1, 151, 0.2);
}

.audience-card li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 25px;
  height: 25px;
  color: transparent;
  background: linear-gradient(145deg, #38d97e, #139d50);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 9px;
  box-shadow:
    0 6px 14px rgba(22, 156, 81, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  content: "";
  font-size: 0;
  transform: translateY(-50%);
}

.audience-card li::after {
  position: absolute;
  top: 50%;
  left: 23px;
  width: 7px;
  height: 12px;
  background: transparent;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  border-radius: 1px;
  content: "";
  transform: translateY(-65%) rotate(45deg);
}

.audience-card-care li::before {
  color: transparent;
  background: linear-gradient(145deg, var(--pink), var(--purple));
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 6px 14px rgba(254, 1, 151, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  content: "";
}

.audience-card-care li::after {
  left: 25px;
  width: 2px;
  height: 8px;
  background: var(--white);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 11px 0 -0.25px var(--white);
  transform: translateY(-72%);
}

.step-icon svg {
  width: 41px;
  height: 41px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit-card {
  background:
    linear-gradient(var(--white), var(--pink-pale)) padding-box,
    linear-gradient(145deg, rgba(254, 1, 151, 0.38), rgba(122, 63, 209, 0.12)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 18px 46px rgba(54, 18, 77, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.benefit-card::before {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 18%;
  left: 18%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  border-radius: 0 0 999px 999px;
  content: "";
  opacity: 0.65;
}

.benefit-image img {
  transition:
    transform 0.6s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.6s ease;
}

.benefit-card:hover .benefit-image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.36);
}

.benefit-card:hover .benefit-image-shine img {
  transform: scale(1.08);
}

.benefit-card-body > span {
  display: inline-grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(122, 63, 209, 0.18);
}

.steps-grid {
  position: relative;
}

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 72px;
  right: 8%;
  left: 8%;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  content: "";
}

.step-card {
  z-index: 1;
  box-shadow:
    0 18px 45px rgba(8, 2, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.step-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink-soft), transparent);
  content: "";
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 119, 200, 0.42);
  transform: translateY(-8px);
}

.step-icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    var(--shadow-pink),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* PASSOS COM FOTOGRAFIA EDITORIAL */
.steps-grid {
  align-items: stretch;
  gap: 22px;
}

.steps-grid::before {
  top: 108px;
  border-top: 1px solid rgba(255, 119, 200, 0.2);
  box-shadow: 0 0 18px rgba(254, 1, 151, 0.14);
}

.step-card {
  display: flex;
  min-height: 590px;
  padding: 0;
  flex-direction: column;
  isolation: isolate;
  background:
    radial-gradient(circle at 100% 100%, rgba(254, 1, 151, 0.17), transparent 34%) padding-box,
    linear-gradient(155deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)) padding-box,
    linear-gradient(145deg, rgba(255, 119, 200, 0.48), rgba(255, 255, 255, 0.08)) border-box;
  border: 1px solid transparent;
  border-radius: 30px;
  box-shadow:
    0 24px 58px rgba(8, 2, 13, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.step-card::before {
  z-index: 5;
  right: 16%;
  left: 16%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink-soft), #fff, transparent);
  border-radius: 0 0 999px 999px;
}

.step-card::after {
  z-index: 0;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(254, 1, 151, 0.2), rgba(122, 63, 209, 0.06) 48%, transparent 70%);
  border: 1px solid rgba(255, 119, 200, 0.12);
  box-shadow:
    0 0 0 14px rgba(255, 119, 200, 0.025),
    0 0 0 28px rgba(122, 63, 209, 0.018);
}

.step-card:hover {
  background:
    radial-gradient(circle at 100% 100%, rgba(254, 1, 151, 0.22), transparent 34%) padding-box,
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)) padding-box,
    linear-gradient(145deg, rgba(255, 119, 200, 0.72), rgba(255, 255, 255, 0.14)) border-box;
  border-color: transparent;
  box-shadow:
    0 32px 72px rgba(8, 2, 13, 0.34),
    0 0 0 1px rgba(255, 119, 200, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-media {
  position: relative;
  z-index: 2;
  height: 222px;
  flex: 0 0 222px;
  overflow: hidden;
  background: var(--purple-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 29px 29px 22px 22px;
}

.step-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 3, 23, 0.02) 35%, rgba(25, 4, 37, 0.74) 100%),
    linear-gradient(105deg, rgba(254, 1, 151, 0.08), transparent 48%);
  content: "";
  pointer-events: none;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
  transition:
    filter 0.55s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.step-card:nth-child(2) .step-media img {
  object-position: 48% center;
}

.step-card:nth-child(3) .step-media img {
  object-position: 52% center;
}

.step-card:nth-child(4) .step-media img {
  object-position: 45% center;
}

.step-card:hover .step-media img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.055);
}

.step-number {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink), var(--purple));
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(20, 3, 31, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 13px;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.step-stage {
  position: absolute;
  z-index: 3;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 30px);
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(28, 6, 41, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.step-stage::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  background: var(--pink-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 119, 200, 0.13);
  content: "";
}

.step-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 23px 21px 22px;
  flex: 1;
  flex-direction: column;
}

.step-card-heading {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.step-card .step-icon,
.step-card:nth-child(even) .step-icon {
  width: 53px;
  height: 53px;
  margin: 0;
  flex: 0 0 53px;
  border-radius: 18px;
  box-shadow:
    0 13px 30px rgba(254, 1, 151, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.33);
  transform: rotate(-4deg);
}

.step-card:nth-child(even) .step-icon {
  transform: rotate(4deg);
}

.step-card .step-icon svg {
  width: 31px;
  height: 31px;
}

.step-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.step-card-content > p {
  min-height: 68px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.step-detail {
  display: flex;
  min-height: 77px;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding: 13px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  font-size: 11px;
  line-height: 1.5;
}

.step-detail > span {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: rgba(255, 119, 200, 0.13);
  border: 1px solid rgba(255, 119, 200, 0.24);
  border-radius: 7px;
}

.step-detail > span::before {
  position: absolute;
  top: 5px;
  left: 8px;
  width: 3px;
  height: 7px;
  border-right: 1.5px solid var(--pink-soft);
  border-bottom: 1.5px solid var(--pink-soft);
  content: "";
  transform: rotate(45deg);
}

.offer-card {
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 119, 200, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.88);
  box-shadow:
    0 24px 65px rgba(54, 18, 77, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.offer-card::before {
  position: absolute;
  top: -110px;
  left: 50%;
  width: 290px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(254, 1, 151, 0.23), transparent 68%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.offer-card-featured {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 119, 200, 0.38), transparent 40%),
    linear-gradient(150deg, var(--purple-dark), var(--purple));
  border: 4px solid var(--pink-soft);
  box-shadow:
    0 30px 78px rgba(122, 63, 209, 0.3),
    0 0 0 7px rgba(254, 1, 151, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.offer-card-featured::after {
  position: absolute;
  top: 0;
  right: 14%;
  left: 14%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  border-radius: 999px;
  content: "";
  opacity: 0.8;
}

.offer-badge {
  position: relative;
  z-index: 2;
  box-shadow: 0 9px 22px rgba(254, 1, 151, 0.23);
}

.offer-card:not(.offer-card-featured) .offer-badge-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 63, 209, 0.16);
  box-shadow: 0 8px 20px rgba(54, 18, 77, 0.08);
}

.offer-image-wrap {
  position: relative;
}

.offer-image-wrap::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 205px;
  height: 205px;
  background: radial-gradient(circle, rgba(122, 63, 209, 0.13), transparent 67%);
  border: 1px solid rgba(122, 63, 209, 0.08);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.offer-card-featured .offer-image-wrap::before {
  background: radial-gradient(circle, rgba(255, 119, 200, 0.24), transparent 67%);
  border-color: rgba(255, 255, 255, 0.12);
}

.offer-image-wrap img {
  position: relative;
  z-index: 2;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.5s ease;
}

.offer-card:hover .offer-image-wrap img {
  filter: drop-shadow(0 24px 25px rgba(54, 18, 77, 0.3));
  transform: translateY(-7px) scale(1.045) rotate(1deg);
}

.purchase-trust span {
  box-shadow:
    0 10px 25px rgba(54, 18, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.care-section {
  background:
    radial-gradient(circle at 4% 18%, rgba(254, 1, 151, 0.1), transparent 27%),
    radial-gradient(circle at 96% 82%, rgba(122, 63, 209, 0.1), transparent 30%),
    var(--page-pink);
}

.ingredients::before {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px dashed rgba(122, 63, 209, 0.22);
  border-radius: 50%;
  content: "";
  animation: ingredientsOrbit 30s linear infinite;
}

.ingredient-card {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.4s ease;
}

.ingredient-card:first-child:hover {
  transform: translateY(-8px) rotate(-3deg);
}

.ingredient-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(3deg);
}

.ingredient-card:nth-child(3):hover {
  transform: translateY(-8px) rotate(1deg);
}

.guarantee-grid {
  padding: 48px 56px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(122, 63, 209, 0.12);
  border-radius: 42px;
  box-shadow:
    0 28px 75px rgba(54, 18, 77, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.accordion details {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.accordion details:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 119, 200, 0.3);
}

.accordion details[open] {
  border-color: rgba(255, 119, 200, 0.35);
  box-shadow:
    0 18px 40px rgba(8, 2, 13, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@keyframes ingredientsOrbit {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  padding: 80px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  background: #12061b;
}

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

.footer-brand img {
  width: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 360px;
  font-size: 13px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 16px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
}

.site-footer a,
.site-footer button {
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--pink-soft);
}

.footer-whatsapp {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.footer-security img {
  width: 210px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-security p {
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom button {
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
}

/* ASSINATURA HIDRALISO + YOMINA BEAUTY */
.header-inner {
  justify-content: center;
}

.brand-lockup {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--white);
}

.brand-lockup > img,
.footer-brand .brand-lockup > img {
  width: 122px;
  height: auto;
  margin: 0;
  filter: brightness(0) invert(1);
}

.brand-divider {
  width: 1px;
  height: 54px;
  flex: 0 0 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  box-shadow: 0 0 14px rgba(255, 119, 200, 0.34);
}

.partner-brand {
  display: grid;
  min-width: 108px;
  align-content: center;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  text-align: left;
}

.partner-brand small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.partner-brand strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.partner-brand > span {
  margin-top: 4px;
  color: var(--pink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.footer-brand-lockup {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.footer-brand-lockup .brand-divider {
  height: 48px;
}

/* PROVA SOCIAL COM FONTE DECLARADA */
.proof-summary {
  display: grid;
  max-width: 850px;
  margin: 34px auto 0;
  overflow: hidden;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(18, 6, 27, 0.18);
  backdrop-filter: blur(15px);
}

.proof-summary span {
  display: grid;
  min-height: 100px;
  place-content: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: center;
}

.proof-summary span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-summary strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.proof-source {
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-align: center;
}

/* COOKIES E TOAST */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  width: min(calc(100% - 40px), 980px);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-inline: auto;
  padding: 22px 25px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(122, 63, 209, 0.14);
  border-radius: 22px;
  box-shadow: 0 25px 80px rgba(20, 5, 30, 0.3);
  backdrop-filter: blur(12px);
}

.cookie-banner.visible {
  display: flex;
  animation: cookieEnter 0.35s ease both;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  color: var(--purple-dark);
}

.cookie-banner p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 10px;
}

.site-toast {
  position: fixed;
  z-index: 1100;
  bottom: 24px;
  left: 50%;
  max-width: calc(100% - 40px);
  padding: 13px 20px;
  color: var(--white);
  background: var(--purple-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ENTRADAS DE ROLAGEM: mesmos sentidos e tempo-base do clone */
.scroll-left,
.scroll-right,
.scroll-top,
.scroll-bottom,
.blur {
  transition: 0.5s !important;
  will-change: opacity, transform, filter;
}

.scroll-left {
  opacity: 0;
  transform: translate(-30px, 0);
}

.scroll-right {
  opacity: 0;
  transform: translate(30px, 0);
}

.scroll-top {
  opacity: 0;
  transform: translate(0, -30px);
}

.scroll-bottom {
  opacity: 0;
  transform: translate(0, 30px);
}

.blur {
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.9);
}

.ativo {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
}

@media (min-width: 600px) {
  .e1 {
    transition-delay: 0.5s !important;
  }

  .e2 {
    transition-delay: 1s !important;
  }

  .e3 {
    transition-delay: 1.5s !important;
  }

  .e4 {
    transition-delay: 2s !important;
  }

  .e5 {
    transition-delay: 2.5s !important;
  }
}

/* ANIMAÇÕES */
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

@keyframes decorationFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-15px) rotate(4deg);
  }
}

@keyframes hairSway {
  0% {
    border-radius: 60% 40% 55% 45%;
    translate: 0 0;
    scale: 0.98 1;
  }
  100% {
    border-radius: 38% 62% 42% 58%;
    translate: 9px -7px;
    scale: 1.04 0.92;
  }
}

@keyframes orbitPulse {
  to {
    opacity: 0.55;
    transform: scale(1.06);
  }
}

@keyframes snakeTravel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes proofScrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-100% + 690px));
  }
}

@keyframes proofScrollDown {
  from {
    transform: translateY(calc(-100% + 690px));
  }
  to {
    transform: translateY(0);
  }
}

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

/* TABLET */
@media (max-width: 1024px) {
  :root {
    --header-height: 100px;
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    min-height: 880px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 63px);
  }

  .hero-visual {
    min-height: 570px;
  }

  .hero-photo-shell {
    right: -16%;
    bottom: 9%;
    width: 128%;
  }

  .hero-seal {
    right: -4%;
    width: 100px;
    height: 100px;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 320px;
    height: 320px;
  }

  .split-grid,
  .product-grid,
  .care-grid {
    gap: 50px;
  }

  .benefit-cards {
    overflow-x: auto;
    padding: 10px 4px 30px;
    grid-auto-columns: minmax(230px, 34%);
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-snap-type: x mandatory;
  }

  .benefit-card {
    scroll-snap-align: center;
  }

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

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

  .bonus-grid {
    gap: 18px;
  }

  .bonus-image {
    min-height: 300px;
  }

  .bonus-card-body {
    padding-inline: 21px;
  }

  .guarantee-grid {
    padding: 38px 34px;
  }

  .offer-grid {
    gap: 18px;
  }

  .offer-card {
    min-height: 650px;
    padding-inline: 20px;
  }

  .purchase-trust {
    flex-wrap: wrap;
  }

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

/* MOBILE */
@media (max-width: 767px) {
  :root {
    --header-height: 88px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .eyebrow {
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 105px;
  }

  .header-inner .button {
    min-height: 40px;
    padding: 10px 14px;
    font-size: 9px;
  }

  .header-cta-label {
    display: none;
  }

  .header-cta-short {
    display: inline;
  }

  .hero {
    min-height: 920px;
    align-items: flex-start;
    background-position: 58% center;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 4, 45, 0.93) 0%, rgba(54, 18, 77, 0.81) 54%, rgba(54, 18, 77, 0.12) 100%);
    content: "";
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    padding-top: 118px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-copy > p {
    max-width: 100%;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(37px, 11.2vw, 50px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-benefits {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .hero-benefits li {
    font-size: 12px;
  }

  .hero .button-large {
    width: 100%;
    max-width: 390px;
  }

  .hero-visual {
    width: 100%;
    min-height: 350px;
    margin-top: 2px;
  }

  .hero-photo-shell {
    right: -3%;
    bottom: 1%;
    width: 106%;
    border-radius: 32px 92px 34px 88px;
    box-shadow:
      0 25px 55px rgba(20, 2, 30, 0.34),
      0 0 0 6px rgba(255, 255, 255, 0.04);
  }

  .hero-seal {
    top: 10%;
    right: 1%;
    width: 74px;
    height: 74px;
    border-width: 4px;
  }

  .hero-seal strong {
    font-size: 21px;
  }

  .hero-seal span {
    font-size: 11px;
  }

  .hero-orbit {
    display: none;
  }

  .hero-hair-strand-one {
    top: 7%;
    right: -3%;
    width: 145px;
  }

  .hero-hair-strand-two {
    right: -8%;
    bottom: 8%;
    width: 175px;
  }

  .hero-hair-strand-three {
    display: none;
  }

  .benefit-marquee {
    transform: rotate(-1.4deg) scale(1.04);
  }

  .marquee-content {
    padding: 14px 0;
  }

  .marquee-content span {
    padding-inline: 20px;
    font-size: 11px;
  }

  .section-copy h2,
  .section-heading h2,
  .faq-intro h2 {
    font-size: clamp(33px, 10vw, 46px);
  }

  .section-copy .lead,
  .section-heading p,
  .faq-intro > p {
    font-size: 16px;
  }

  .split-grid,
  .product-grid,
  .transformation-grid,
  .care-grid,
  .guarantee-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-grid {
    gap: 40px;
  }

  .pain-editorial {
    min-height: 610px;
  }

  .pain-photo {
    width: 100%;
    height: 475px;
    border-radius: 110px 28px 110px 28px;
  }

  .root-card {
    right: 0;
    width: 92%;
    grid-template-columns: 88px 1fr;
  }

  .root-card svg {
    width: 88px;
  }

  .pain-signal-one {
    top: 16%;
    right: -2%;
  }

  .pain-signal-two {
    top: 53%;
    left: -2%;
  }

  .hair-divider {
    --divider-segment: max(100vw, 720px);
    height: 95px;
    margin: -48px 0;
  }

  .product-grid {
    display: flex;
    flex-direction: column;
  }

  .product-stage {
    order: -1;
    width: 100%;
    min-height: 480px;
  }

  .product-stage > img {
    right: 3%;
    width: 90%;
  }

  .product-stage-circle {
    top: 3%;
    right: 6%;
    width: 360px;
    height: 360px;
  }

  .stage-note-one {
    top: 7%;
  }

  .stage-note-two {
    top: 43%;
    right: 0;
  }

  .stage-note-three {
    bottom: 8%;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .benefit-cards {
    margin-right: -14px;
    grid-auto-columns: 78%;
  }

  .benefit-card:nth-child(odd) {
    transform: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .choice-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .choice-card,
  .audience-card {
    padding: 27px 22px;
  }

  .choice-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .choice-cta .button {
    width: 100%;
  }

  .result-board {
    display: grid;
    margin-right: -14px;
    padding: 20px 14px 34px 7px;
    overflow-x: auto;
    gap: 18px;
    grid-auto-columns: 79%;
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-padding-left: 7px;
    scroll-snap-type: x mandatory;
  }

  .result-polaroid,
  .result-polaroid:nth-child(odd),
  .result-polaroid:nth-child(even) {
    scroll-snap-align: center;
    transform: none;
  }

  .result-polaroid:hover {
    transform: none;
  }

  .result-polaroid figcaption {
    font-size: 14px;
  }

  .results-action .button {
    width: 100%;
  }

  .audience-card h3 {
    font-size: 21px;
  }

  .bonus-grid {
    display: grid;
    margin-right: -14px;
    padding: 15px 14px 26px 3px;
    overflow-x: auto;
    gap: 17px;
    grid-auto-columns: 83%;
    grid-auto-flow: column;
    grid-template-columns: none;
    scroll-padding-left: 3px;
    scroll-snap-type: x mandatory;
  }

  .bonus-card,
  .bonus-card-featured {
    scroll-snap-align: center;
    transform: none;
  }

  .bonus-card:hover,
  .bonus-card-featured:hover {
    transform: none;
  }

  .bonus-image {
    min-height: 320px;
  }

  .bonus-footer {
    margin-top: 28px;
  }

  .bonus-footer .button {
    width: 100%;
  }

  .journey-line {
    right: auto;
    left: 25px;
    transform: none;
  }

  .journey-item,
  .journey-item-right {
    gap: 16px;
    grid-template-columns: 52px 1fr;
  }

  .journey-item::after,
  .journey-item-right::after {
    display: none;
  }

  .journey-dot,
  .journey-item-right .journey-dot {
    order: 1;
    width: 52px;
    height: 52px;
    border-width: 5px;
  }

  .journey-content,
  .journey-item-right .journey-content {
    order: 2;
    padding: 20px;
  }

  .step-card {
    min-height: 280px;
  }

  .step-icon {
    margin: 28px 0 20px;
  }

  .transformation-section {
    padding-top: 60px;
  }

  .transformation-grid {
    display: flex;
    flex-direction: column;
  }

  .transformation-image {
    width: 100%;
    height: 390px;
    border-radius: 82px 26px 0 0;
  }

  .transformation-image img {
    width: 110%;
    margin-left: -5%;
    object-position: 85% center;
  }

  .transformation-section .section-copy {
    padding-bottom: 65px;
    text-align: center;
  }

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

  .offer-card,
  .offer-card:first-child,
  .offer-card:last-child,
  .offer-card-featured {
    min-height: 610px;
    transform: none;
  }

  .offer-card-featured {
    order: -1;
  }

  .purchase-trust {
    display: grid;
    gap: 10px;
  }

  .ingredients {
    min-height: 500px;
  }

  .ingredient-card {
    width: 59%;
  }

  .ingredient-card:nth-child(2) {
    top: 23%;
  }

  .video-track {
    margin-right: -14px;
    grid-auto-columns: 80%;
  }

  .carousel-button {
    display: none;
  }

  .proof-wall {
    height: 610px;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-column {
    height: 610px;
  }

  .proof-column-mobile-hidden {
    display: none;
  }

  .proof-scroll img {
    min-height: 420px;
    border-radius: 16px;
  }

  @keyframes proofScrollUp {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(calc(-100% + 610px));
    }
  }

  @keyframes proofScrollDown {
    from {
      transform: translateY(calc(-100% + 610px));
    }
    to {
      transform: translateY(0);
    }
  }

  .guarantee-image {
    min-height: 420px;
  }

  .guarantee-grid {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .guarantee-image img {
    height: 430px;
  }

  .guarantee-halo {
    width: 340px;
    height: 340px;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-intro img {
    display: none;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .header-inner .button span {
    display: none;
  }

  .hero {
    min-height: 910px;
  }

  .hero h1 {
    font-size: 37px;
  }

  .button-large {
    padding-inline: 18px;
    font-size: 12px;
  }

  .result-board {
    grid-auto-columns: 86%;
  }

  .bonus-grid {
    grid-auto-columns: 89%;
  }

  .bonus-image {
    min-height: 290px;
  }

  .pain-editorial {
    min-height: 570px;
  }

  .pain-photo {
    height: 430px;
    border-width: 6px;
    border-radius: 84px 24px 84px 24px;
  }

  .root-card {
    gap: 10px;
    padding: 14px;
    grid-template-columns: 72px 1fr;
  }

  .root-card svg {
    width: 72px;
  }

  .root-card strong {
    font-size: 14px;
  }

  .pain-signal {
    padding: 7px 10px;
    font-size: 10px;
  }

  .choice-card li {
    font-size: 13px;
  }

  .pain-list li {
    padding-inline: 13px;
    font-size: 13px;
  }

  .product-stage {
    min-height: 420px;
  }

  .product-stage-circle {
    width: 310px;
    height: 310px;
  }

  .stage-note {
    font-size: 10px;
  }

  .ingredients {
    min-height: 430px;
  }

  .ingredients::before {
    width: 340px;
    height: 340px;
  }

  .offer-image-wrap {
    height: 220px;
  }
}

@media (max-width: 1024px) {
  .step-media {
    height: 255px;
    flex-basis: 255px;
  }

  .step-card-content > p {
    min-height: 48px;
  }
}

@media (max-width: 700px) {
  .steps-grid {
    gap: 22px;
  }

  .step-card {
    min-height: 0;
    border-radius: 27px;
  }

  .step-media {
    height: 245px;
    flex-basis: 245px;
    border-radius: 26px 26px 20px 20px;
  }

  .step-card-content {
    padding: 22px 20px 21px;
  }

  .step-card-heading {
    min-height: 52px;
    margin-bottom: 13px;
  }

  .step-card .step-icon,
  .step-card:nth-child(even) .step-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 17px;
  }

  .step-card h3 {
    font-size: 21px;
  }

  .step-card-content > p {
    min-height: 0;
    margin-bottom: 15px;
  }

  .step-detail {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .step-media {
    height: 220px;
    flex-basis: 220px;
  }

  .step-number {
    top: 13px;
    left: 13px;
    width: 40px;
    height: 40px;
  }

  .step-stage {
    right: 13px;
    bottom: 13px;
    left: 13px;
    max-width: calc(100% - 26px);
  }
}

@media (max-width: 767px) {
  .header-inner {
    position: relative;
    justify-content: center;
  }

  .header-inner .brand {
    position: absolute;
    z-index: 2;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
  }

  .header-inner .brand img {
    width: 105px;
  }

  .header-inner .button {
    position: absolute;
    z-index: 3;
    top: 27px;
    right: 0;
  }

  .header-inner .button .header-cta-label {
    display: none;
  }

  .header-inner .button .header-cta-short,
  .header-inner .button .header-arrow {
    display: inline;
  }

  .product-stage::before {
    inset: 3% 0 2%;
    border-radius: 42px 86px 54px 90px;
  }

  .product-stage::after {
    inset: 4% 1% 3%;
  }

  .product-float-orbit {
    top: 14%;
    right: 8%;
    width: 82%;
    height: 68%;
  }

  .product-float-card {
    padding: 5px;
    border-radius: 28px;
  }

  .product-float-card-spray {
    top: 7%;
    left: 1%;
    width: 48%;
    height: 315px;
  }

  .product-float-card-care {
    top: 31%;
    right: 1%;
    width: 52%;
    height: 330px;
  }

  .product-float-image {
    border-radius: 23px;
  }

  .product-float-image-spray img,
  .product-float-image-care img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .product-card-number {
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 10px;
  }

  .product-float-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    margin: 0;
    padding: 10px 11px 9px;
    border-radius: 14px;
  }

  .product-float-card figcaption strong {
    font-size: 12px;
  }

  .product-float-card figcaption span {
    font-size: 9px;
  }

  .product-float-glint-one {
    top: 13%;
    right: 1%;
  }

  .product-float-glint-two {
    bottom: 8%;
    left: 2%;
  }

  .video-track {
    margin: 0;
    padding: 8px 0 25px;
    overflow: visible;
    gap: 14px;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card:last-child:nth-child(odd) {
    width: calc(50% - 7px);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .video-shell {
    border-radius: 21px;
  }

  .video-load {
    width: 52px;
    height: 52px;
    font-size: 17px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-grid {
    justify-items: center;
    gap: 44px;
  }

  .footer-grid > div {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
  }

  .footer-brand img,
  .footer-security img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-brand p,
  .footer-security p {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer ul {
    justify-items: center;
  }

  .footer-whatsapp {
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .header-inner .button {
    min-width: 96px;
    padding-inline: 12px;
  }

  .product-float-card-spray {
    top: 8%;
    height: 270px;
  }

  .product-float-card-care {
    --float-rotation: 2.5deg;
    top: 32%;
    right: 4%;
    width: 50%;
    height: 285px;
  }

  .product-card-number {
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .product-float-card figcaption span {
    display: none;
  }

  .video-track {
    gap: 11px;
  }

  .video-card:last-child:nth-child(odd) {
    width: calc(50% - 5.5px);
  }

  .video-shell {
    border-radius: 18px;
  }

  .video-load {
    width: 47px;
    height: 47px;
    font-size: 15px;
  }
}

/* MOSTRUÁRIO ROSA COM CARDS FLUTUANTES — COMPOSIÇÃO DA REFERÊNCIA */
.product-stage {
  min-height: 0;
  aspect-ratio: 1.75 / 1;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 26px;
  box-shadow: none;
}

.product-stage-canvas {
  display: none;
}

.product-stage::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: none;
  background:
    linear-gradient(112deg, transparent 0 26%, rgba(255, 255, 255, 0.26) 26.2% 26.5%, transparent 26.7%),
    linear-gradient(73deg, transparent 0 71%, rgba(106, 13, 173, 0.1) 71.2% 71.5%, transparent 71.7%),
    radial-gradient(ellipse at 50% 115%, rgba(255, 255, 255, 0.45), transparent 62%);
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  content: "";
  pointer-events: none;
}

.product-stage::after {
  position: absolute;
  z-index: 1;
  inset: 7% 6%;
  display: none;
  background:
    radial-gradient(circle at 5% 65%, rgba(255, 0, 146, 0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 15%, rgba(106, 13, 173, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 82%, rgba(255, 0, 146, 0.36) 0 2px, transparent 3px),
    radial-gradient(circle at 96% 20%, rgba(45, 10, 61, 0.35) 0 2px, transparent 3px);
  border: 0;
  opacity: 0.85;
  content: "";
  pointer-events: none;
}

.product-stage .product-float-card {
  z-index: 3;
  width: 39%;
  height: 90%;
  padding: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 26% 8%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(145deg, rgba(255, 247, 252, 0.88), rgba(255, 210, 235, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  box-shadow:
    0 30px 46px rgba(30, 5, 42, 0.35),
    0 10px 20px rgba(103, 29, 137, 0.2),
    0 0 0 1px rgba(254, 1, 151, 0.08),
    inset 0 1px 0 #fff,
    inset 0 -1px 0 rgba(122, 63, 209, 0.14);
  backdrop-filter: blur(16px);
}

.product-stage .product-float-card::before {
  z-index: 4;
  inset: 1px 1px auto;
  width: auto;
  height: 48%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 58%);
  border: 0;
  border-radius: 21px 21px 60% 30%;
  opacity: 0.78;
}

.product-stage .product-float-card::after {
  z-index: -1;
  right: 12%;
  bottom: -9px;
  left: 12%;
  width: auto;
  height: 18px;
  background: rgba(91, 22, 123, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(74, 17, 99, 0.22);
  filter: blur(7px);
}

.product-stage .product-float-card-spray {
  --float-rotation: -1.8deg;
  top: 3%;
  left: 6%;
}

.product-stage .product-float-card-care {
  --float-rotation: 2deg;
  top: 7%;
  right: 6%;
  animation-delay: -2.9s;
}

.product-stage .product-float-image {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: transparent;
  border-radius: inherit;
  box-shadow: none;
}

.product-stage .product-float-image-spray img {
  position: absolute;
  top: 1%;
  left: 4%;
  width: 92%;
  height: 98%;
  max-height: none;
  object-fit: contain;
  filter:
    contrast(1.06)
    saturate(1.08)
    drop-shadow(0 15px 12px rgba(45, 12, 60, 0.3));
  transform: none;
  animation: productInnerFloat 4.6s ease-in-out infinite alternate;
}

.product-stage .product-float-image-care img {
  position: absolute;
  bottom: 1%;
  height: 98%;
  max-width: none;
  object-fit: contain;
  filter:
    contrast(1.05)
    saturate(1.07)
    drop-shadow(0 15px 12px rgba(45, 12, 60, 0.28));
}

.product-stage .product-float-treatment {
  z-index: 1;
  left: 0;
  width: 58%;
  transform: rotate(-5deg);
}

.product-stage .product-float-shampoo {
  z-index: 2;
  right: 0;
  width: 56%;
  transform: rotate(4deg);
}

@media (max-width: 767px) {
  .product-stage {
    width: calc(100% + 40px);
    min-height: 0;
    margin-inline: -20px;
    aspect-ratio: 1.75 / 1;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .product-stage .product-float-card {
    width: 39%;
    height: 90%;
    border-radius: 23px;
  }

  .product-stage .product-float-card::before {
    border-radius: 22px 22px 55% 28%;
  }

  .product-stage .product-float-card-spray {
    top: 3%;
    left: 6%;
  }

  .product-stage .product-float-card-care {
    top: 7%;
    right: 6%;
  }
}

@media (max-width: 420px) {
  .product-stage .product-float-card {
    width: 40%;
    height: 90%;
  }

  .product-stage .product-float-card-spray {
    left: 4%;
  }

  .product-stage .product-float-card-care {
    right: 4%;
  }

  .header-inner .brand-lockup {
    gap: 10px;
  }

  .header-inner .brand-lockup > img {
    width: 88px;
  }

  .header-inner .brand-divider {
    height: 42px;
  }

  .header-inner .partner-brand {
    min-width: 88px;
  }

  .header-inner .partner-brand small {
    font-size: 6px;
  }

  .header-inner .partner-brand strong {
    font-size: 14px;
  }

  .header-inner .partner-brand > span {
    font-size: 8px;
  }
}

@media (max-width: 767px) {
  .site-header .brand-lockup,
  .site-footer .brand-lockup {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100%;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    white-space: nowrap;
  }

  .site-header .brand-lockup > img,
  .site-footer .brand-lockup > img {
    display: block;
    width: 105px;
    min-width: 105px;
    margin: 0 !important;
    flex: 0 0 105px;
  }

  .site-header .brand-divider,
  .site-footer .brand-divider {
    display: block;
    height: 48px;
    flex: 0 0 1px;
  }

  .site-header .partner-brand,
  .site-footer .partner-brand {
    display: grid;
    min-width: 96px;
    flex: 0 0 96px;
  }

  .proof-summary {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .proof-summary span {
    min-height: 82px;
  }

  .proof-summary span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .footer-brand-lockup {
    margin-inline: auto;
  }
}

@media (max-width: 420px) {
  .site-header .brand-lockup,
  .site-footer .brand-lockup {
    gap: 10px;
  }

  .site-header .brand-lockup > img,
  .site-footer .brand-lockup > img {
    width: 94px;
    min-width: 94px;
    flex-basis: 94px;
  }

  .site-header .partner-brand,
  .site-footer .partner-brand {
    min-width: 90px;
    flex-basis: 90px;
  }

  .site-header .partner-brand strong,
  .site-footer .partner-brand strong {
    font-size: 15px;
  }

  .site-header .partner-brand > span,
  .site-footer .partner-brand > span {
    font-size: 9px;
  }
}

/* MINITÍTULOS EDITORIAIS: ETIQUETA LIMPA E NATURAL */
.eyebrow,
.eyebrow-light {
  display: inline-flex;
  width: fit-content;
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 7px 14px;
  color: #fff;
  background: linear-gradient(105deg, #6f35c7 0%, #a72bb8 52%, #e40b91 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  box-shadow:
    0 9px 22px rgba(54, 18, 77, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: none;
  backdrop-filter: none;
}

.eyebrow::before,
.eyebrow::after,
.eyebrow-dot {
  display: none !important;
  content: none !important;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

@media (max-width: 420px) {
  .eyebrow,
  .eyebrow-light {
    max-width: calc(100vw - 40px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 9px;
    white-space: normal;
  }
}

/* GARANTIA EDITORIAL CIRCULAR */
.guarantee-image {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.guarantee-emblem {
  position: relative;
  display: grid;
  width: min(100%, 500px);
  aspect-ratio: 1;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.98) 0 39%, rgba(255, 240, 249, 0.9) 40% 58%, transparent 59%),
    radial-gradient(circle, rgba(254, 1, 151, 0.13), transparent 69%);
  border-radius: 50%;
  filter: drop-shadow(0 28px 36px rgba(54, 18, 77, 0.2));
  isolation: isolate;
}

.guarantee-emblem::before,
.guarantee-emblem::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.guarantee-emblem::before {
  inset: 7%;
  background: linear-gradient(145deg, rgba(122, 63, 209, 0.12), rgba(254, 1, 151, 0.18));
  box-shadow: inset 0 0 45px rgba(255, 255, 255, 0.75);
}

.guarantee-emblem::after {
  inset: 22%;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 0 1px rgba(122, 63, 209, 0.09),
    inset 0 1px 0 #fff;
}

.guarantee-emblem svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.guarantee-ticks {
  fill: none;
  stroke: #fe0197;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 2 14;
  opacity: 0.72;
  transform-origin: center;
  animation: guaranteeSpin 34s linear infinite;
}

.guarantee-ring {
  fill: rgba(255, 255, 255, 0.2);
  stroke: url(#guarantee-ring-gradient);
  stroke-width: 5;
}

.guarantee-ring-inner {
  fill: rgba(255, 255, 255, 0.55);
  stroke: url(#guarantee-ring-gradient);
  stroke-width: 2;
  stroke-dasharray: 3 10;
}

.guarantee-copy {
  fill: #3d1654;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.guarantee-number {
  fill: #fe0197;
  font-family: "Poppins", sans-serif;
  font-size: 112px;
  font-weight: 800;
  letter-spacing: -0.07em;
}

.guarantee-days {
  fill: #4f1a68;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.guarantee-emblem > span {
  position: absolute;
  z-index: 4;
  bottom: 4%;
  padding: 7px 12px;
  color: #fff;
  background: linear-gradient(105deg, #6f35c7, #e40b91);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(54, 18, 77, 0.18);
  font-size: 9px;
  font-weight: 600;
}

@keyframes guaranteeSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .guarantee-image {
    min-height: 370px;
  }

  .guarantee-emblem {
    width: min(100%, 360px);
  }

  .guarantee-copy {
    font-size: 15px;
  }

  .guarantee-emblem > span {
    bottom: 1%;
  }
}

/* HERO DE PRODUTO: CARD DE VIDRO MINIMALISTA COM PÓDIOS PRETOS */
.hero-photo-shell {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 238, 248, 0.2), rgba(231, 157, 204, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 54px;
  box-shadow:
    0 28px 60px rgba(24, 3, 35, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  transform: none;
}

.hero-hair-strand {
  z-index: 1;
}

.hero-photo-shell::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 18%, rgba(255, 255, 255, 0.13) 43%, transparent 66%);
  border: 0;
  border-radius: inherit;
  content: "";
  transform: none;
}

.hero-photo-shell::after {
  z-index: 6;
  background:
    linear-gradient(180deg, transparent 70%, rgba(16, 2, 23, 0.14) 100%);
  pointer-events: none;
}

.hero-engraving {
  position: absolute;
  z-index: 8;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 44px;
  box-shadow: none;
  pointer-events: none;
}

.hero-engraving::before,
.hero-engraving::after {
  display: none;
}

.engraving-corner {
  display: none;
}

.engraving-corner::before,
.engraving-corner::after {
  position: absolute;
  content: "";
}

.engraving-corner::before {
  inset: 5px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

.engraving-corner::after {
  inset: 13px;
  background: currentColor;
  border: 2px solid rgba(255, 244, 250, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 1px currentColor;
}

.engraving-corner-tl { top: -3px; left: -3px; }
.engraving-corner-tr { top: -3px; right: -3px; }
.engraving-corner-bl { bottom: -3px; left: -3px; }
.engraving-corner-br { right: -3px; bottom: -3px; }

.hero-podium {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 2%;
  left: 5%;
  height: 28%;
  filter: drop-shadow(0 18px 20px rgba(66, 18, 88, 0.28));
}

.podium-step {
  position: absolute;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0 3%, transparent 4%),
    linear-gradient(150deg, #2b2530 0%, #100d13 45%, #050506 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px 20px 8px 8px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.14),
    inset 0 -15px 24px rgba(0, 0, 0, 0.42),
    0 8px 0 rgba(0, 0, 0, 0.28);
}

.podium-step::before {
  position: absolute;
  top: 12px;
  right: 13px;
  left: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.24);
  content: "";
}

.podium-step-left {
  left: 1%;
  width: 34%;
  height: 54%;
  transform: perspective(300px) rotateY(5deg);
}

.podium-step-center {
  z-index: 2;
  left: 50%;
  width: 37%;
  height: 82%;
  transform: translateX(-50%);
}

.podium-step-right {
  right: 1%;
  width: 34%;
  height: 54%;
  transform: perspective(300px) rotateY(-5deg);
}

.hero-product-trio {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
}

.hero-product-trio::after {
  position: absolute;
  z-index: 1;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 13%;
  background: radial-gradient(ellipse, rgba(73, 20, 96, 0.34), rgba(122, 63, 209, 0.11) 58%, transparent 72%);
  border-radius: 50%;
  filter: blur(5px);
  content: "";
}

.hero-product {
  position: absolute;
  bottom: 10%;
  display: block;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 27px 21px rgba(54, 18, 77, 0.42))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.24));
  transform-origin: 50% 92%;
}

.hero-product-left {
  z-index: 3;
  left: 8%;
  width: 31%;
  transform: rotate(-4deg);
}

.hero-product-center {
  z-index: 5;
  left: 50%;
  bottom: 16%;
  width: 38%;
  transform: translateX(-50%) scale(1.05);
}

.hero-product-right {
  z-index: 3;
  right: 8%;
  width: 31%;
  transform: rotate(4deg);
}

@media (max-width: 767px) {
  .hero-visual {
    min-height: 420px;
  }

  .hero-photo-shell {
    right: 0;
    width: 100%;
    aspect-ratio: 1.22;
    border-width: 1px;
    border-radius: 34px;
  }

  .hero-engraving {
    inset: 8px;
    border-radius: 27px;
  }

  .engraving-corner {
    width: 25px;
    height: 25px;
  }

  .engraving-corner::before {
    inset: 4px;
  }

  .engraving-corner::after {
    inset: 9px;
  }

  .hero-product-left {
    left: 6%;
    width: 33%;
  }

  .hero-product-center {
    bottom: 17%;
    width: 42%;
  }

  .hero-product-right {
    right: 6%;
    width: 33%;
  }
}

/* COMPOSIÇÃO FINAL: PRODUTOS APOIADOS EM PÓDIOS, SEM CARD */
.hero-photo-shell {
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: none;
}

.hero-photo-shell::before,
.hero-photo-shell::after,
.hero-engraving {
  display: none;
}

.hero-product-trio {
  overflow: visible;
}

.hero-product-trio::after {
  right: 5%;
  bottom: -1%;
  left: 5%;
  height: 10%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18) 55%, transparent 74%);
}

.hero-podium {
  right: 5%;
  bottom: 2%;
  left: 5%;
  height: 28%;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.32));
}

.podium-step {
  background: linear-gradient(90deg, #08070a 0%, #29252d 25%, #0d0b10 56%, #242027 78%, #050506 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px 12px 18px 18px / 8px 8px 13px 13px;
  box-shadow:
    inset 0 -18px 25px rgba(0, 0, 0, 0.46),
    inset 9px 0 16px rgba(255, 255, 255, 0.035),
    0 12px 20px rgba(0, 0, 0, 0.3);
  transform: none;
}

.podium-step::before {
  top: -10px;
  right: -1px;
  left: -1px;
  height: 20px;
  background: radial-gradient(ellipse at 50% 35%, #403a45 0%, #1a171e 48%, #08070a 78%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.12),
    0 4px 5px rgba(0, 0, 0, 0.34);
}

.podium-step::after {
  position: absolute;
  right: 8%;
  bottom: -7px;
  left: 8%;
  height: 13px;
  background: rgba(0, 0, 0, 0.36);
  border-radius: 50%;
  filter: blur(5px);
  content: "";
}

.podium-step-left {
  left: 2%;
  width: 32%;
  height: 52%;
}

.podium-step-center {
  left: 50%;
  width: 35%;
  height: 80%;
  transform: translateX(-50%);
}

.podium-step-right {
  right: 2%;
  width: 32%;
  height: 52%;
}

.hero-product {
  bottom: 16.6%;
  filter:
    drop-shadow(0 17px 12px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.12));
}

.hero-product-left {
  left: 5.5%;
  width: 29%;
  transform: rotate(-2deg);
}

.hero-product-center {
  bottom: 24.4%;
  width: 36%;
  transform: translateX(-50%);
}

.hero-product-right {
  right: 5.5%;
  width: 29%;
  transform: rotate(2deg);
}

@media (max-width: 767px) {
  .hero-visual {
    height: clamp(300px, 82vw, 410px);
    min-height: 0;
    margin-top: -32px;
  }

  .hero-photo-shell {
    border: 0;
    border-radius: 0;
  }

  .hero-product-left {
    left: 5%;
    width: 30%;
  }

  .hero-product-center {
    bottom: 24.4%;
    width: 38%;
  }

  .hero-product-right {
    right: 5%;
    width: 30%;
  }
}

/* BÔNUS MAIS COMPLETOS */
.bonus-intro {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 760px;
  justify-items: center;
  margin: -10px auto 34px;
  text-align: center;
}

.bonus-intro > span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(254, 1, 151, 0.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-intro h3 {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.25;
}

.bonus-card-body {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.bonus-format {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: var(--purple);
  background: rgba(122, 63, 209, 0.09);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bonus-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px -28px 17px;
  padding: 12px 28px;
  color: var(--white);
  background: linear-gradient(105deg, #52116e, #8f1ca4 54%, #d916a0);
}

.bonus-value span {
  font-size: 12px;
  font-weight: 700;
}

.bonus-value strong {
  color: #49ef8c;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.bonus-card-body > p:last-child {
  line-height: 1.65;
}

/* PAGAMENTO E SEGURANÇA NO RODAPÉ */
.payment-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.payment-flags > span {
  position: relative;
  display: inline-flex;
  min-width: 43px;
  height: 28px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 7px;
  color: #17111c;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.payment-visa {
  color: #193c91 !important;
  font-size: 12px !important;
  font-style: italic !important;
}

.payment-mastercard i {
  width: 15px;
  height: 15px;
  background: #eb001b;
  border-radius: 50%;
}

.payment-mastercard i + i {
  margin-left: -5px;
  background: #f79e1b;
  opacity: 0.92;
}

.payment-elo {
  color: #111 !important;
  font-size: 13px !important;
}

.payment-hiper {
  color: #b31324 !important;
}

.payment-pix {
  color: #138b83 !important;
  letter-spacing: 0.05em;
}

.security-badges {
  display: grid;
  gap: 8px;
  margin-bottom: 13px;
}

.security-badges > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
}

.security-badges svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  fill: none;
  stroke: #49ef8c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.security-badges small {
  display: grid;
  font-size: 9px;
  line-height: 1.25;
  text-align: left;
}

.security-badges strong {
  color: var(--white);
  font-size: 11px;
}

@media (max-width: 767px) {
  .bonus-intro {
    width: calc(100% - 28px);
    margin-top: -2px;
  }

  .bonus-card-body {
    min-height: 270px;
  }

  .payment-flags,
  .security-badges {
    justify-content: center;
  }

  .security-badges {
    width: min(100%, 290px);
  }

  .security-badges > span {
    width: 100%;
  }
}

/* REDES E AÇÕES DO RODAPÉ */
.footer-socials {
  display: grid;
  margin-top: 20px;
  gap: 10px;
}

.footer-socials > strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
}

.footer-socials > div {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(122, 63, 209, 0.9), rgba(254, 1, 151, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  box-shadow: 0 10px 22px rgba(254, 1, 151, 0.14);
}

.footer-socials a[aria-disabled="true"] {
  opacity: 0.52;
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-socials svg rect,
.footer-socials svg circle {
  fill: none;
}

.footer-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(110deg, var(--purple), var(--pink));
  border-radius: 9px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer-socials {
    justify-items: center;
  }

  .footer-socials > div {
    justify-content: center;
  }
}

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

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

  .scroll-left,
  .scroll-right,
  .scroll-top,
  .scroll-bottom,
  .blur {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
