:root {
  --bg: #080909;
  --panel: #111312;
  --panel-strong: #171a18;
  --text: #f7f4ee;
  --muted: rgba(247, 244, 238, .74);
  --line: rgba(247, 244, 238, .14);
  --red: #e31837;
  --green: #23c962;
  --green-dark: #139848;
  --cyan: #69d7ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  text-shadow: 0 1px 1px rgba(0, 0, 0, .28);
  overflow-x: hidden;
}

body.has-blank-cta::after {
  content: "Link do grupo ainda não configurado.";
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 90;
  transform: translateX(-50%) translateY(12px);
  width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(105, 215, 255, .28);
  border-radius: var(--radius);
  background: rgba(8, 9, 9, .96);
  color: var(--text);
  box-shadow: var(--shadow);
  text-align: center;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

body.show-blank-cta::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

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

summary {
  font: inherit;
}

h1,
h2,
h3,
p,
a,
span,
strong,
summary {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
strong,
summary,
.btn,
.eyebrow,
.notice__track span {
  -webkit-text-stroke: .18px rgba(0, 0, 0, .28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.notice {
  position: relative;
  z-index: 30;
  overflow: hidden;
  background: var(--red);
}

.notice__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: marquee 34s linear infinite;
}

.notice__track span {
  padding: 9px 28px;
  color: #fff;
  font: 800 12px/1 "Sora", Arial, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.topbar {
  position: absolute;
  top: 39px;
  left: 0;
  right: 0;
  z-index: 25;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand img {
  width: 132px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .25));
}

.container {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: min(760px, calc(100svh - 92px));
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 9, .97) 0%, rgba(8, 9, 9, .82) 42%, rgba(8, 9, 9, .28) 72%, rgba(8, 9, 9, .08) 100%),
    linear-gradient(180deg, rgba(8, 9, 9, .12) 0%, rgba(8, 9, 9, .16) 58%, #080909 100%);
}

.hero__content {
  width: min(620px, calc(100% - 32px));
  margin-left: max(16px, calc((100% - 1160px) / 2));
  margin-right: auto;
  padding: 138px 0 74px;
}

.eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  min-height: 34px;
  padding: 9px 12px;
  border: 1px solid rgba(105, 215, 255, .24);
  border-radius: var(--radius);
  background: rgba(105, 215, 255, .08);
  color: var(--cyan);
  font: 800 11px/1 "Sora", Arial, sans-serif;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.faq h2 {
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.03;
}

.hero h1 {
  max-width: 720px;
  margin-top: 0;
}

.section-head h2,
.faq h2 {
  margin-top: 18px;
}

.hero__text {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
}

.testimonial-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 17px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: 800 13px/1 "Sora", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn--primary {
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(35, 201, 98, .26);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
  }

  .btn--primary:hover {
    box-shadow: 0 22px 40px rgba(35, 201, 98, .32);
  }
}

.testimonials,
.faq {
  padding: 92px 0;
}

.testimonials {
  background: linear-gradient(180deg, #080909 0%, #101110 48%, #080909 100%);
}

.section-head {
  max-width: 900px;
  margin-bottom: 44px;
}

.section-head h2 {
  max-width: 860px;
}

.section-head p,
.group-title p,
.faq__intro p,
details p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-head > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
}

.testimonial-group + .testimonial-group {
  margin-top: 54px;
}

.group-title {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 22px;
}

.group-title h3 {
  font: 800 30px/1.1 "Sora", Arial, sans-serif;
}

.testimonial-carousel {
  position: relative;
  min-width: 0;
}

.carousel-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(247, 244, 238, .12);
}

.carousel-line span {
  color: rgba(247, 244, 238, .58);
  font-size: 13px;
  line-height: 1.4;
}

.carousel-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(105, 215, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font: 800 18px/1 "Sora", Arial, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 215, 255, .46);
  background: rgba(105, 215, 255, .1);
}

.testimonial-track {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 auto;
  aspect-ratio: 560 / 996;
  overflow: hidden;
  background: #050606;
  scroll-snap-align: start;
}

.testimonial-grid--alerts .testimonial-card,
.testimonial-grid--savings .testimonial-card {
  width: min(22vw, 254px);
  min-width: 214px;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.faq {
  background: #080909;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: 22px;
}

.faq__intro p {
  margin-top: 20px;
}

.faq__intro .btn {
  margin-top: 26px;
}

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

details {
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  color: #fff;
  font: 800 18px/1.35 "Sora", Arial, sans-serif;
}

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

details p {
  padding: 0 24px 24px;
  font-size: 16px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #080909;
}

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

.footer img {
  width: 116px;
}

.footer p {
  color: rgba(247, 244, 238, .58);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1080px) {
  .hero h1,
  .section-head h2,
  .faq h2 {
    font-size: 44px;
  }

  .group-title,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .faq__intro {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .notice__track span {
    padding: 8px 18px;
    font-size: 10px;
  }

  .topbar {
    display: none;
  }

  .hero {
    min-height: min(590px, calc(100svh - 72px));
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(8, 9, 9, .8) 0%, rgba(8, 9, 9, .54) 44%, rgba(8, 9, 9, .16) 100%),
      linear-gradient(180deg, rgba(8, 9, 9, .12) 0%, rgba(8, 9, 9, .28) 35%, rgba(8, 9, 9, .93) 76%, #080909 100%);
  }

  .hero__content {
    width: min(360px, calc(100% - 40px));
    margin-left: 16px;
    margin-right: auto;
    padding: 124px 0 50px;
  }

  .hero__media img {
    object-position: 60% top;
  }

  .hero h1,
  .section-head h2,
  .faq h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero__text,
  .section-head p,
  .group-title p,
  .faq__intro p,
  details p {
    font-size: 16px;
    line-height: 1.64;
  }

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

  .hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 16px 18px;
    font-size: 12px;
  }

  .testimonials,
  .faq {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .group-title {
    gap: 12px;
  }

  .group-title h3 {
    font-size: 24px;
  }

  .carousel-line {
    align-items: flex-end;
    gap: 10px;
  }

  .carousel-line span {
    font-size: 12px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
  }

  .testimonial-track {
    gap: 10px;
  }

  .testimonial-grid--alerts .testimonial-card,
  .testimonial-grid--savings .testimonial-card {
    width: min(70vw, 270px);
    min-width: min(70vw, 270px);
  }

  summary {
    padding: 20px;
    font-size: 16px;
  }

  details p {
    padding: 0 20px 22px;
  }

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

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: block;
    padding: 12px 16px 16px;
    background: linear-gradient(180deg, rgba(8, 9, 9, 0), rgba(8, 9, 9, .9) 28%, #080909 100%);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(100% - 32px, 1160px);
  }

  .hero__content {
    width: min(360px, calc(100% - 40px));
  }

  .hero h1,
  .section-head h2,
  .faq h2 {
    font-size: 27px;
  }

  .hero__text {
    font-size: 15px;
  }
}
