:root {
  --bg: #0b1220;
  --bg-elev: rgba(255, 255, 255, 0.06);
  --bg-elev-2: rgba(255, 255, 255, 0.085);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.56);
  --primary: #b31514;
  --primary-2: #26ddff;
  --danger: #ff5577;
  --ok: #4ade80;

  --shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;

  /* Paleta Premium */
  --color-wine: #5E0B0B;
  --color-bordeaux: #800F0F;
  --color-rose-dark: #A66E6E;
  --color-rose-light: #F2DEDE;
  --color-beige: #F5EBE0;
  --color-offwhite: #FAFAF9;
  --color-warm-gray: #2D2A2A;

  --container: 1120px;
  --gutter: 16px;
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(1200px 700px at 20% -20%, #d61212, #530d0d 60%),
    radial-gradient(1000px 600px at 90% 0%, #a78080, transparent 55%),
    var(--bg);
  min-height: 100vh;
}

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

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

a:hover {
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(38, 221, 255, 0.8);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  z-index: 9999;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--border);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 254, 254, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.116);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;

}

.brand__mark {
  width: 150px;
  display: grid;
  place-items: center;

}

.brand__name {
  font-size: 15px;
}

.brand__plus {
  color: rgba(38, 221, 255, 0.92);
}

.brand--footer .brand__name {
  font-size: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  display: inline-grid;
  place-items: center;
}

.metod-phrase{
  font-size: 80vw;
  background: linear-gradient(90deg, #c7c5c5 0%, #f0ecec 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
}

.nav__toggle-lines {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  position: relative;
  border-radius: 99px;
}

.nav__toggle-lines::before,
.nav__toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 99px;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.nav__toggle-lines::before {
  top: -6px;
}

.nav__toggle-lines::after {
  top: 6px;
}

.nav__panel {
  position: absolute;
  right: var(--gutter);
  top: calc(var(--header-h) + 8px);
  min-width: 220px;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(11, 18, 32, 0.94);
  box-shadow: var(--shadow);
  display: none;
}

.nav__panel.is-open {
  display: grid;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: #7c044e;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header__cta {
  display: none;
}

.hero {
  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 42px;
}

.hero__grid {
  display: grid;
  gap: 18px;
}

.hero-bg {
  display: grid;
  gap: 14px;
  background-image: url('./img/background.jpeg');
}
.hero__copy{
  background-color: rgb(249, 249, 249,0.95);
  padding: 15px;
  border-radius: 10px;
}
.hero__copy p,.hero__copy ul li, #oquetemdentro{
color: #333;
}

 .hero__copy span{
  color: rgba(37, 37, 37, 0.7) !important;
}
.hero__copy #text-imp, .hero__copy .metod-phrase{
  color: #05080f !important;
  -webkit-text-fill-color: unset;
}


.hero__copy h1{
  background: linear-gradient(90deg, #94035c, #df1c60);
    -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
}

.hero__actions {
  display: grid;
  gap: 10px;
}
.hero__actions a{
margin-top: 15px;
}

.hero__visual {
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgb(193 192 192 / 25%);
  color: #0b1220;
  font-weight: 600;
  font-size: 13px;
}

.h1 {
  margin: 0;
  font-size: clamp(25px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hero-image, .hero img{
  zoom: 200% !important;
  justify-self: start;
}
.card--price .h3,.card--price .muted, .card--price ul, .card--price .fineprint, .card--price a{
  justify-self: center !important;


}
.card--price .price__value{
  justify-self: center !important;
}

.valor-cont{
  width: unset;
}
.card--guarantee .impact-phrase{
    background: linear-gradient(90deg, #c7c5c5 0%, #f0ecec 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
}
.de-valor{
  font-size: 32px !important;
  margin-top: 35px !important;
  color: red !important;
}
.por-valor{
  font-size: 32px !important;
  margin-top: 25px !important;
  color: #333 !important;
}

.price-p, .price-h2{
   width: min(var(--container), calc(100% - (var(--gutter) * 2))) !important;
    margin-inline: auto !important;

}
.h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.h4 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.body {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

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

.fineprint {
  margin: 8px 0 0;
  color: var(--muted-2);
  font-size: 12.5px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(24, 218, 111, 0.95), rgba(20, 223, 104, 0.9));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 26px rgba(14, 224, 77, 0.438);
}

.btn--primary:hover {
  box-shadow: 0 18px 36px rgba(13, 219, 75, 0.548);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.085);
}

.btn--lg {
  padding: 13px 16px;
  border-radius: 16px;
}

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

.btn--icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  font-size: 22px;
  line-height: 1;
}

#cyntia-image{
  border-radius: 13px;
}

.sobre-h2{
  justify-self:
    center;
  
}
.sobre-cyntia-text{
  position: absolute;
    inset: 100px 0px auto auto;
    width: 50vw;
}

.btn--icon:hover {
  background: rgba(255, 255, 255, 0.085);
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.16);
  border: 1px solid rgba(50, 161, 91, 0.534);
  color: rgba(38, 168, 86, 0.92);
  font-size: 12px;
}

.checks--compact {
  gap: 8px;
}

.checks--compact li {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
}

.card--form {
  padding: 16px;
}

.card--stats {
  padding: 18px;
}

.card--feature,
.card--bonus,
.card--benefit {
  padding: 18px;
}

.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust__item {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  display: block;
  font-size: 13px;
}

.trust__text {
  color: var(--muted);
  display: block;
  font-size: 13px;
}

.mock {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mock__glow {
  position: absolute;
  inset: -120px -120px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 60%);
  filter: blur(10px);
  opacity: 0.8;
}

.mock__svg {
  width: 100%;
  height: auto;
}

.mock__label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

.form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.field input,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field__error {
  margin: 0;
  min-height: 16px;
  font-size: 12.5px;
  color: rgba(255, 85, 119, 0.92);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: rgba(255, 85, 119, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 85, 119, 0.16);
}

.form__status {
  min-height: 22px;
  font-size: 13px;
  color: var(--muted);
}

.form__status.is-ok {
  color: rgba(74, 222, 128, 0.92);
}

.form__status.is-bad {
  color: rgba(255, 85, 119, 0.92);
}

.section {
  padding: 56px 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.0));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.split {
  display: grid;
  gap: 18px;
}

.inline-cta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  align-items: center;
}

.stats {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.stats__num {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  background: linear-gradient(135deg, rgba(82, 255, 160, 0.95), rgba(31, 253, 124, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats__label {
  color: var(--muted);
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 14px;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}

.list li {
  margin: 8px 0;
}

.grid-2 {
  display: grid;
  gap: 14px;
}

.center {
  margin-top: 20px !important;
  text-align: center !important;
  display: grid !important;
  justify-items: center !important;
  gap: 8px;
}

.carousel {
  display: grid;
  gap: 12px;
}

.carousel__viewport {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  outline: none;
  cursor: grab;
}

.carousel__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel__slide img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.quote {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.quote__meta {
  margin: 12px 0 0;
  color: var(--muted);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  padding: 0;
  cursor: pointer;
}

.dot.is-active {
  background: rgba(38, 221, 255, 0.75);
  border-color: rgba(38, 221, 255, 0.8);
}

.pricing {
  display: grid;
  gap: 14px;
}
.pricing .btn--primary{
margin-bottom: 15px;
}

.card--price {
  padding: 18px;
  position: relative;
  overflow: hidden;
  background-color: #f5f5f5;}



.price__top {
  position: relative;
  z-index: 1;
}


.price__value {
  margin-top: 5px;
  display: grid !important;
  align-items: baseline;
  gap: 2px;
  position: relative;
  z-index: 1;
  text-align: center !important;
  justify-items: center !important;
  gap: 8px;
}
.a-vista{
    font-size: 20px !important;
  margin-top: 5px !important;
  color: #333  !important;
}

.price__currency,
.price__cents {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.price__currency {
  font-size: 20px;
}

.price__amount {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.95), rgba(38, 221, 255, 0.88));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price__cents {
  font-size: 18px;
}

.card--guarantee {
  padding: 18px;
}

.guarantee {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.guarantee__seal {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(74, 222, 128, 0.14);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: rgba(74, 222, 128, 0.9);
  font-weight: 900;
}

.guarantee__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 12px;
}

.faq__item summary {
  cursor: pointer;
  padding: 10px 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.faq__item p {
  margin: 0;
  padding: 0 6px 12px;
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  padding: 40px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.footer__grid {
  display: grid;
  gap: 18px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.footer__list a {
  color: rgba(255, 255, 255, 0.82);
}

.footer__list a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-animate] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-animate] {
    transition: none;
    transform: none;
  }
}

@media (max-width:760px){
  .hero__visual{
    margin-bottom:-40px;
    margin-top: unset;
  }
  .testimonial-image-placeholder{
    width: 100% !important;
  }
    .mock img{
  justify-self: center;
}

.sobre-cyntia-text{
    justify-self: center;
    position: relative !important;
    width: 80vw;
    text-align: center;
  }

  .sobre-button{
    margin-top: 20px;
    margin-bottom: 120px;
  }
}

@media (min-width: 760px) {
  :root {
    --gutter: 20px;
    --header-h: 74px;
  }

  .header__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .nav__panel {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 2px;
    min-width: unset;
  }

  .nav__link {
    padding: 10px 10px;
  color: #7c044e;
    font-weight: 700;
  }

  .hero {
    padding-top: calc(var(--header-h) + 34px);
    padding-bottom: 58px;
  }

  .hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 22px;
  }

  .hero__actions {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    gap: 12px;
  }

  .trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 18px;
  }

  .inline-cta {
    grid-template-columns: auto 1fr;
    justify-content: start;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

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


  .pricing {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
  }
}

/* --- NOVAS ADICOES PARA COPY --- */

.text-highlight {
  background: linear-gradient(90deg, #ff5577 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.impact-phrase {
  font-size: 1.125rem;
  background: linear-gradient(90deg, #f70505b7 0%, #1a1818 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-left: 3px solid #4ade80;
  padding-left: 1rem;
  margin-block: 1.5rem;
  font-style: italic;
}

.impact-phrase.small {
  font-size: 0.9rem;
  margin-block: 0.5rem;
}

.objective-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}

.alert-box {
  background: #b99a32 !important;
  color: #000000 !important;
  text-align: center;
}

.alert-box h4 {
  color: #ffffff !important;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.alert-box p{
  justify-self: center;
  width: 60vw;
}

.testimonial-image-placeholder {
  width: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Utilitarios */
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

/* Ajuste para imagem da autora */
.card--image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  object-fit: cover;
}

@media (min-width: 900px) {
  .split--reverse {
    flex-direction: row-reverse;
  }
}


/* --- BACKGROUNDS VISUAIS PREMIUM --- */

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--color-wine) 100%);
}

.hero-bg {
  background-color: #f5f5f5;
}
.card--price .checks--compact li,.card--price p,.card--price .price__currency{
  color:#333;
}

.auth-bg {
  background: linear-gradient(to right, #1a1010, #2b1d1d);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.benefits-bg {
background: #821056;
background: linear-gradient(0deg, rgba(130, 16, 86,1) 0%, #821413 72%);
}

#para-quem{
background: #e9e8e8;
border: none !important;
}

#conteudo-kit{
  background:#545f1e;
}
#conteudo-kit h2{
  font-size: 1.5rem;
}

.offer-bg {
  background: linear-gradient(135deg, var(--color-wine) 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.offer-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 200 200\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cfilter id=\'noiseFilter\'%3E%3CfeTurbulence type=\'fractalNoise\' baseFrequency=\'0.65\' numOctaves=\'3\' stitchTiles=\'stitch\'/%3E%3C/filter%3E%3Crect width=\'100%25\' height=\'100%25\' filter=\'url(%23noiseFilter)\' opacity=\'0.05\'/%3E%3C/svg%3E');
  opacity: 0.4;
  pointer-events: none;
}

.bg-light-sophisticated {
  background: var(--color-offwhite);
  color: var(--color-warm-gray);
}
.bg-light-sophisticated .muted {
  color: rgba(45, 42, 42, 0.7);
}
.bg-light-sophisticated h2, 
.bg-light-sophisticated h3,
.bg-light-sophisticated strong {
  color: var(--color-wine);
}

.bg-texture-noise {
  position: relative;
}
.bg-texture-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox=\'0 0 200 200\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cfilter id=\'noiseFilter\'%3E%3CfeTurbulence type=\'fractalNoise\' baseFrequency=\'0.8\' numOctaves=\'3\' stitchTiles=\'stitch\'/%3E%3C/filter%3E%3Crect width=\'100%25\' height=\'100%25\' filter=\'url(%23noiseFilter)\' opacity=\'0.04\'/%3E%3C/svg%3E');
  pointer-events: none;
  z-index: 0;
}
.bg-texture-noise > * {
  position: relative;
  z-index: 1;
}


.footer-bg {
  background: linear-gradient(to bottom, #05080f, #000);
  border-top: 1px solid rgba(255,255,255,0.08);
}

