:root {
  --black: #000;
  --white: #fff;
  --white-transparent: #ffffffcc;
  --black-70: #000000b2;
  --black-raisin: #242424;
  --blue-main: #00009c;
  --alice-blue: #f1f6fa;
  --green-teal: #017186;
  --gray-medium: #363636;
  --gray-light: #333333;
  --gray-light: #eaedf2;
  --gray-border: #00000033;
  --gray-divider: #4f4f4f;
  --gray-footer: #808080;
  --red-main: #c40b0b;
  --red-secondary: #db3534;
  --red-bg: #fff4f3;
  --red-step-bg: #ffefee;
  --feature-yellow-highlight: #FFEE98;
  --feature-yellow-bg: #f9f3e7;
  --feature-yellow-bg-20: #F9F3E733;
  --feature-green-border: #70b457;
  --feature-green-bg: #f9fff3;
  --testimonial-item-border: #b7b7b7;
  --review-bg: #fcfbf9;
  --bottom-cta-bg: linear-gradient(265.98deg, #f8f2e4 19.65%, #fbfaf9 108.67%);
  --bottom-cta-bg-mobile: linear-gradient(8.42deg, #F8F2E4 43.12%, #FBFAF9 79.18%);
  --linen: #fff0c7;
}

/* 1. Remove spacing inconsistencies */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Reset default margin */
* {
  margin: 0;
}

html,
body {
  overscroll-behavior-y: none;
}

/* 3. Improve typography in elements that use line-height */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  /* letter-spacing: -0.1em; */
  font-weight: 500;
}

/* 4. Images, videos, canvas, etc. do not overflow the container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 5. Remove default form styles */
input,
button,
textarea,
select {
  font: inherit;
}

/* 6. Evita textos muito longos quebrarem layout */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 7. Cria um stacking context root */
#root,
#__next {
  isolation: isolate;
}

header {
  background-color: var(--black);
  color: var(--black);
  display: flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  width: 100%;
  max-width: 1173px;
}

.header-logo {
  width: auto;
  height: 40px;
  padding: 5px 0 0 0;
}

.header-trending strong {
  color: var(--white);
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 33px;
  padding: 40px 0 50px 0;
  margin: 0 auto;
  width: 100%;
}

.left-content {
  max-width: 774px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-title {
  font-size: 35px;
  line-height: 130%;
  margin-bottom: 1px;
  font-weight: 700;
}

.main-title span {
  background-color: var(--feature-yellow-highlight);
  color: var(--black);
  padding: 0 1px;
}

.headline {
  border-left: 4px solid #000;
  background: var(--linen);
  padding: 10px 16px 10px 22px;
}

.headline-text {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}

.time-date {
  font-size: 14px;
  line-height: 24px;
  color: var(--gray-medium);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 5px;
}

.hero-img-mobile {
  display: none;
}

br.mobile {
  display: none;
}

br.mobile-480 {
  display: none;
}

.secondary-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
  margin-bottom: 5px;
}

.secondary-title.mobile {
  display: none;
  font-size: 21px;
  font-weight: 700;
  line-height: 135%;
  margin-bottom: 5px;
}

.tertiary-title {
  font-size: 20px;
  font-weight: 600;
}

.quote-text {
  font-style: italic;
  font-weight: 700;
}

.feature-yellow {
  background-color: var(--feature-yellow-bg);
  border-radius: 8px;
  padding: 16px;
}

.feature-yellow .feature-yellow-text {
  font-weight: 700;
}

.feature-yellow .feature-yellow-text.alt {
  font-weight: 600;
}

.teal-title {
  border-radius: 4px;
  background-color: var(--green-teal);
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  font-size: 18px;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.stats-container {
  margin-top: 5px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hidden-mob {
  display: block;
}

.ring-text-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.ring-text-container img {
  max-width: 274px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.ring-text-container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}

.steps-item {
  display: grid;
  grid-template-rows: auto 1fr;
}

.steps-item img {
  width: 100%;
  height: 271px;
  object-fit: cover;
  object-position: top;
}

.steps-item .steps-item-texts-title {
  text-align: center;
  background: var(--red-secondary);
  color: var(--white);
  font-weight: 700 !important;
  padding: 6px 0;
}

.steps-item .steps-item-texts-description {
  background: var(--red-step-bg);
  padding: 12px 16px;
}

strong {
  font-weight: 700 !important;
}

strong.teal {
  color: var(--green-teal);
}

hr {
  border: none;
  height: 1px;
  background-color: var(--gray-divider);
}

hr.dark {
  height: 2px;
  background-color: var(--black);
}

.benefits-container {
  display: grid;
  gap: 20px;
}

.benefits-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px;
  align-items: center;
}

.benefits-item img {
  width: 70px;
  height: auto;
}

.benefits-item .benefits-item-text {
  color: var(--black);
}

.reviews {
  margin-top: 5px;
  display: grid;
  gap: 20px;
}

.reviews .reviews-item {
  display: grid;
  gap: 10px;
  background-color: var(--review-bg);
  border-radius: 8px;
  padding: 16px;
}

.reviews .reviews-item img {
  width: auto;
  height: 16px;
}

.offer-cta {
  text-decoration: none;
}

/* FAQ Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding-bottom: 15px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  background: none;
}

.faq-question > span:first-child {
  flex: 1;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  transition: opacity 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 9V15M15 12H9M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.faq-item.active .faq-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 12H9M21 12C21 13.1819 20.7672 14.3522 20.3149 15.4442C19.8626 16.5361 19.1997 17.5282 18.364 18.364C17.5282 19.1997 16.5361 19.8626 15.4442 20.3149C14.3522 20.7672 13.1819 21 12 21C10.8181 21 9.64778 20.7672 8.55585 20.3149C7.46392 19.8626 6.47177 19.1997 5.63604 18.364C4.80031 17.5282 4.13738 16.5361 3.68508 15.4442C3.23279 14.3522 3 13.1819 3 12C3 9.61305 3.94821 7.32387 5.63604 5.63604C7.32387 3.94821 9.61305 3 12 3C14.3869 3 16.6761 3.94821 18.364 5.63604C20.0518 7.32387 21 9.61305 21 12Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 15px 0;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item {
  padding: 16px 13px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--testimonial-item-border);
}

.testimonial-item .testimonial-web {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-item .testimonial-mobile {
  display: none;
}

.testimonial-item:last-child {
  border-bottom: none;
}

.testimonial-item-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.testimonial-item-profile > img {
  border-radius: 10px;
}

.testimonial-mobile-header > img {
  border-radius: 7.32px;
}

.testimonial-item-profile > img,
.testimonial-mobile-header > img {
  border: 1px solid var(--green-teal);
}

.testimonial-item-profile-texts .testimonial-quote {
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonial-item > p {
  font-style: italic;
}

.bottom-cta {
  background: var(--bottom-cta-bg);
  max-width: 1173px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  border-radius: 10px;
  position: relative;
  padding: 6px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
}

.bottom-cta-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 631px;
  gap: 15px;
  text-align: center;
}

.bottom-cta .bottom-cta-title {
  font-size: 28px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-teal);
}

.bottom-cta-details p {
  font-size: 16px;
  font-weight: 400;
}

.bottom-cta-details p span:first-child {
  font-weight: 700;
  color: var(--green-teal);
  text-transform: uppercase;
}

.bottom-cta-details p span:nth-child(2) {
  font-weight: 600;
}

.bottom-cta-details p span:last-child {
  font-weight: 600;
  color: var(--green-teal);
}

.bottom-cta-button-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-cta-detail.mobile {
  display: none;
}

.right-sidebar {
  width: 366px;
}

.sticky-container {
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  background-color: var(--feature-yellow-bg-20);
  border-radius: 16px;
  padding: 30px 16px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.sticky-container p {
  font-size: 15px;
  font-weight: 500;
}

.sticky-container h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-teal);
}

.sticky-container .cta-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-container .cta-texts .cta-texts-first {
  font-size: 19px;
}

.sticky-container .cta-texts .cta-texts-second {
  font-size: 44px;
}

.sticky-container .cta-texts .cta-texts-third {
  font-size: 20px;
}

.sticky-container .sticky-cta-img {
  width: 266px;
  height: auto;
}

.cta-button {
  box-shadow: 0px 4px 4px rgba(133, 133, 133, 0.3);
  background-color: var(--green-teal);
  /* width: 100%; */
  color: var(--white);
  font-family: "Sarabun", sans-serif;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.cta-button-floating-container {
  width: 100%;
  margin-top: 14px;
}

.cta-button.cta-button-floating {
  padding: 14px 0;
  font-weight: 600;
  gap: 10px;
  align-items: flex-end;
  width: 100%;
}

.cta-button.cta-button-bottom {
  font-weight: 600;
  padding: 16px 24px;
}

footer {
  border-top: 2px solid var(--black);
  color: var(--black);
  padding: 20px 90px;
  text-align: center;
  margin-top: auto;
}

.logo-footer {
  width: auto;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

footer .footer-texts {
  width: 100%;
  max-width: 1240px;
  border: 1px solid var(--green-teal);
  border-radius: 12px;
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;;
  color: var(--black) !important;
}

footer .footer-texts .disclaimer {
  font-weight: 600;
}

footer .footer-texts p.medium{
  font-weight: 500;
}

footer a {
  color: var(--gray-footer);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

footer a:nth-child(2) {
  margin: 0 5px;
  padding: 0 5px;
  border-left: 1px solid var(--gray-footer);
  border-right: 1px solid var(--gray-footer);
}

footer p {
  font-weight: 400;
  font-size: 14px;
}

footer > p{
  font-family: "Poppins", sans-serif;
  color: var(--gray-footer);
}

@media screen and (max-width: 1199px) {
  br.web {
    display: none;
  }
}

@media screen and (max-width: 1220px) {
  main {
    padding: 60px 16px;
  }

  header {
    padding: 0 17px;
  }
}

/* Mobile Sticky CTA - Hidden by default on desktop */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 991px) {
  main {
    padding: 30px 16px;
  }

  .bottom-cta {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }

  .bottom-cta-detail.mobile {
    display: flex;
  }

  .right-sidebar {
    display: none;
  }

  .left-content {
    width: 100%;
    max-width: none;
    gap: 20px;
  }

  /* Mobile Sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 16px;
    background: var(--bottom-cta-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  * {
    font-size: 16px;
  }

  .header-container {
    padding: 12px 0;
  }

  .main-title {
    font-size: 26px;
  }

  .main-title span {
    font-size: 26px;
  }

  .headline-text {
    font-size: 16px;
  }

  .secondary-title {
    font-size: 22px;
  }

  .secondary-title.web {
    display: none;
  }

  .secondary-title.mobile {
    display: block;
  }

  .tertiary-title {
    font-size: 16px;
  }

  .benefits-container {
    gap: 15px;
  }

  .reviews {
    gap: 16px;
  }

  .reviews .reviews-item img {
    height: 18px;
  }

  .bottom-cta {
    background: var(--bottom-cta-bg-mobile);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    padding: 24px 20px;
  }

  .bottom-cta-detail {
    flex-direction: column;
    padding: 32px 0;
  }

  .bottom-cta-detail .cta-texts {
    text-align: center;
    margin-left: 0;
  }

  .cta-button.cta-button-bottom {
    /* font-size: 16px; */
    padding: 15px 0;
    width: 100%;
  }

  .cta-button.cta-button-bottom svg {
    width: 16px;
    height: auto;
  }

  footer {
    padding: 30px 0;
  }

  footer .footer-texts {
   display: none;
  }

  footer a,
  footer p {
    font-size: 12px;
  }
}

@media screen and (max-width: 640px) {
  .feature-yellow-text br {
    display: none;
  }

  .steps-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 0;
    gap: 8px;
  }

  .steps-container .steps-item {
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
  }

  .steps-item img {
    height: 100%;
    max-width: 120px;
  }

  .steps-item .steps-item-texts-description {
    padding: 18px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 481px) {
  main {
    padding: 28px 9px;
  }

  .hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .description-mobile p {
    font-size: 16px;
  }

  p.p-mobile, p.p-mobile span {
    font-size: 18px;
  }

  .feature-yellow {
    padding: 12px;
  }

  .feature-yellow .feature-yellow-text.alt {
    font-weight: 600;
  }

  .benefits-item {
    gap: 18px;
    padding: 0;
  }

  .benefits-item img {
    width: 48px;
  }

  .reviews .reviews-item {
    padding: 12px;
  }

  .stat img {
    width: 69px;
    height: auto;
  }

  .ring-text-container {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ring-text-container img {
    max-width: 100%;
    height: auto;
  }

  .hidden-mob {
    display: none;
  }

  .teal-title {
    font-size: 16px;
  }

  .reviews .reviews-item img {
    height: 16px;
  }

  .faq-icon {
    margin-left: 6px;
  }

  .testimonial-item {
    padding: 12px 0;
    gap: 15px;
  }

  .testimonial-item .testimonial-web {
    display: none;
  }

  .testimonial-item .testimonial-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-mobile .testimonial-mobile-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
  }

  .testimonial-mobile > p {
    font-size: 14px;
  }

  .testimonial-item .testimonial-quote {
    font-size: 18px;
  }

  .testimonial-item-profile-texts p {
    font-size: 14px;
  }

  .details {
    grid-template-columns: repeat(2, auto);
    row-gap: 15px;
    justify-content: space-around;
  }

  .details p {
    font-size: 16px;
  }

  .details-item:nth-child(3) p br {
    display: block;
  }

  .bottom-cta {
    padding: 24px 5px;
    margin-top: 10px;
  }

  .bottom-cta .bottom-cta-title {
    font-size: 23px;
    gap: 4px;
  }

  .bottom-cta .bottom-cta-title img {
    height: 18px;
  }

  .bottom-cta-details p {
    font-size: 14px;
  }

  .bottom-cta-details p span {
    font-size: 14px;
  }

  .cta-texts .cta-texts-first {
    font-size: 24px;
  }

  .cta-texts .cta-texts-second {
    font-size: 40px;
  }

  .cta-texts .cta-texts-third {
    font-size: 16px;
  }

  .cta-button.cta-button-bottom {
    padding: 8px 0;
  }

  br.mobile-480 {
    display: inline;
  }

  footer {
    padding: 30px 8px;
  }

  .logo-footer {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 394px) {
  br.mobile {
    display: inline;
  }

  .headline {
    padding: 10px 0 10px 12px;
  }
}
