@keyframes cta-arrow-rise {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
  44% {
    opacity: 0;
    transform: translate3d(14px, -14px, 0) rotateZ(45deg);
  }
  45% {
    opacity: 0;
    transform: translate3d(-14px, 14px, 0) rotateZ(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
}
@font-face {
  font-family: "Graphik";
  src: url("../assets/fonts/Graphik-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../assets/fonts/Graphik-Medium-Trial.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../assets/fonts/Graphik-Semibold-Trial.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Graphik";
  src: url("../assets/fonts/Graphik-Bold-Trial.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  border-radius: 8px;
  padding: 10px 14px;
  color: #072E25;
  background: #FECD45;
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #FECD45;
  outline-offset: 3px;
}

main[tabindex="-1"]:focus {
  outline: none;
}

body {
  margin: 0;
  color: #FFFFFF;
  background: #FFFFFF;
  font-family: "Graphik", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

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

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

button,
input,
select {
  font: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

._container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 560px) {
  ._container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 768px) {
  ._container {
    max-width: 92%;
    padding-inline: 0;
  }
}
@media (min-width: 1024px) {
  ._container {
    max-width: 90%;
  }
}
@media (min-width: 1400px) {
  ._container {
    max-width: 88%;
  }
}
@media (min-width: 1800px) {
  ._container {
    max-width: 86%;
  }
}
@media (min-width: 2000px) {
  ._container {
    max-width: 1920px;
  }
}

.cta-button {
  min-height: 51px;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #FFFFFF;
  background: #064A3C;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cta-button span:not(.cta-button__label) {
  width: 51px;
  min-height: 51px;
  align-self: stretch;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #FECD45;
  overflow: hidden;
}
.cta-button span:not(.cta-button__label) img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform-origin: center;
}
.cta-button:hover, .cta-button:focus-visible {
  background: #072E25;
  transform: translateY(-1px);
}
.cta-button:hover span:not(.cta-button__label) img, .cta-button:focus-visible span:not(.cta-button__label) img {
  animation: cta-arrow-rise 0.52s cubic-bezier(0.62, 0.02, 0.24, 1) both;
}
.cta-button--yellow {
  color: #072E25;
  background: #FECD45;
}
.cta-button--yellow span:not(.cta-button__label) {
  background: #064A3C;
}
.cta-button--yellow:hover, .cta-button--yellow:focus-visible {
  color: #FFFFFF;
  background: #064A3C;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cta-button:hover span img, .cta-button:focus-visible span img {
    animation: none;
  }
}
@media (max-width: 1023px) {
  .desktop-only {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 100;
  width: 52px;
  height: 52px;
  border: 2px solid #FECD45;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #064A3C;
  box-shadow: 0 8px 24px rgba(7, 46, 37, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .back-to-top {
    right: 28px;
    bottom: 106px;
    width: 58px;
    height: 58px;
  }
}
.back-to-top img {
  width: 21px;
  transform: rotate(-90deg);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover, .back-to-top:focus-visible {
  background: #072E25;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 101;
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(7, 46, 37, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.whatsapp-float svg {
  width: 100%;
  height: 100%;
  display: block;
}
.whatsapp-float:hover, .whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  filter: brightness(1.06);
}
.whatsapp-float:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}
@media (min-width: 768px) {
  .whatsapp-float {
    right: 22px;
    bottom: 22px;
    width: 68px;
    height: 68px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #064A3C;
}
.site-header__container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-header__container {
    min-height: 87px;
    gap: 28px;
  }
}
@media (min-width: 1400px) {
  .site-header__container {
    gap: 38px;
  }
}
.site-header__brand {
  flex: 0 0 auto;
}
.site-header__brand img {
  width: 126px;
  height: auto;
}
@media (min-width: 1024px) {
  .site-header__brand img {
    width: 120px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 18px 24px 24px;
  display: grid;
  gap: 16px;
  background: #064A3C;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.site-header__nav a {
  padding: 8px 0;
  transition: color 0.2s ease;
}
.site-header__nav a:hover, .site-header__nav a:focus-visible {
  color: #FECD45;
}
@media (min-width: 1024px) {
  .site-header__nav {
    position: static;
    padding: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: none;
    font-size: 13px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-header__nav a {
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .site-header__nav {
    gap: 31px;
    font-size: 16px;
    font-weight: 500;
  }
}
.site-header__toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #FFFFFF;
  background: rgba(7, 46, 37, 0.18);
  cursor: pointer;
}
.site-header__toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .site-header__toggle {
    display: none;
  }
}
.site-header.is-open .site-header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header.is-open .site-header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 36% 54%, rgba(6, 74, 60, 0.5), transparent 35%), #072E25;
}
.hero__grafismo {
  position: absolute;
  z-index: -1;
  top: 30px;
  right: -360px;
  width: 760px;
  max-width: none;
  opacity: 0.95;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .hero__grafismo {
    top: -92px;
    right: -180px;
    width: 900px;
  }
}
@media (min-width: 1400px) {
  .hero__grafismo {
    right: -34px;
    width: 1024px;
  }
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
  padding-block: 100px 44px;
}
@media (min-width: 768px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: 36px;
    padding-block: 38px 44px;
  }
}
@media (min-width: 1400px) {
  .hero__container {
    grid-template-columns: 350px minmax(360px, 1fr) 410px;
    gap: 28px;
  }
}
@media (min-width: 1800px) {
  .hero__container {
    grid-template-columns: 420px minmax(420px, 1fr) 460px;
    gap: 36px;
  }
}
.hero__media {
  display: none;
}
@media (min-width: 1400px) {
  .hero__media {
    position: relative;
    min-height: 600px;
    display: block;
    align-self: end;
  }
}
@media (min-width: 1800px) {
  .hero__media {
    min-height: 720px;
  }
}
@media (min-width: 1400px) {
  .hero__person {
    position: absolute;
    right: -112px;
    bottom: -50px;
    width: 430px;
    height: 676px;
    margin: 0;
    z-index: 2;
  }
}
@media (min-width: 1800px) {
  .hero__person {
    right: -96px;
  }
}
.hero__person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.hero__person img.is-missing {
  opacity: 0;
}
.hero__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(6, 74, 60, 0.2));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__photo img.is-missing {
  opacity: 0;
}
.hero__photo--home {
  top: 0px;
  left: 0px;
  width: 280px;
  height: 280px;
}
.hero__photo--business {
  left: -70px;
  bottom: 38px;
  width: 220px;
  height: 220px;
  z-index: 3;
}
@media (min-width: 1800px) {
  .hero__photo--home {
    top: 110px;
    left: -22px;
    width: 320px;
    height: 320px;
  }
  .hero__photo--business {
    left: -98px;
    bottom: 8px;
    width: 250px;
    height: 250px;
  }
}
.hero__content {
  align-self: center;
  padding-top: 0;
  position: relative;
  z-index: 4;
}
@media (min-width: 1400px) {
  .hero__content {
    padding-top: 40px;
  }
}
.hero__content h1 {
  max-width: 620px;
  margin: 0;
  color: #FFFFFF;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
}
.hero__content h1 strong {
  display: block;
  color: #FECD45;
  font-weight: 600;
}
@media (min-width: 560px) {
  .hero__content h1 {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  .hero__content h1 {
    font-size: 44px;
    line-height: 1.12;
  }
}
@media (min-width: 1400px) {
  .hero__content h1 {
    font-size: 48px;
  }
}
@media (min-width: 1800px) {
  .hero__content h1 {
    max-width: 600px;
    font-size: 58px;
  }
}
.hero__content p {
  margin: 10px 0 26px;
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1.12;
}
.hero__content p strong {
  font-weight: 600;
}
@media (min-width: 560px) {
  .hero__content p {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  .hero__content p {
    font-size: 30px;
  }
}
@media (min-width: 1800px) {
  .hero__content p {
    margin: 8px 0 38px;
    font-size: 36px;
  }
}
.hero__content small {
  display: block;
  margin: -36px 0 0 34px;
  font-size: 11px;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .hero__content small {
    margin: -38px 0 0 34px;
  }
}
@media (min-width: 1800px) {
  .hero__content small {
    margin: -43px 0 0 50px;
  }
}
.hero__benefits {
  width: min(100%, 456px);
  margin: 0;
  padding: 34px 26px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  list-style: none;
  border-radius: 22px;
  background: #064A3C;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .hero__benefits {
    padding: 32px 32px 60px 32px;
    border-radius: 34px;
  }
}
@media (min-width: 1800px) {
  .hero__benefits {
    padding: 46px 46px 80px 46px;
    border-radius: 40px;
  }
}
.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 400;
}
@media (min-width: 560px) {
  .hero__benefits li {
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .hero__benefits li {
    font-size: 15px;
  }
}
@media (min-width: 1800px) {
  .hero__benefits li {
    font-size: 17px;
  }
}
.hero__benefits li img {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  padding: 5px;
  border-radius: 999px;
  background: #FECD45;
}
.hero .hero-form {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  padding: 18px 18px 22px;
  color: #072E25;
  border-radius: 26px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .hero .hero-form {
    max-width: 520px;
    justify-self: end;
  }
}
@media (min-width: 1024px) {
  .hero .hero-form {
    max-width: 600px;
    padding: 20px 24px;
    border-radius: 34px;
  }
}
.hero .hero-form__headline {
  margin-bottom: 28px;
  padding: 22px 24px 20px;
  color: #FFFFFF;
  background: #064A3C;
  border-radius: 19px;
  box-shadow: 0 10px 0 #FECD45;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 0.96;
}
@media (min-width: 1024px) {
  .hero .hero-form__headline {
    font-size: 20px;
    padding: 18px 16px;
  }
}
@media (min-width: 1800px) {
  .hero .hero-form__headline {
    margin-bottom: 20px;
    border-radius: 24px;
    font-size: 24px;
  }
}
.hero .hero-form__headline strong {
  display: block;
  color: #FECD45;
  font-weight: 500;
}
.hero .hero-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 560px) {
  .hero .hero-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
.hero .hero-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}
.hero .hero-form__field span {
  color: #072E25;
  font-size: 12px;
  font-weight: 400;
}
@media (min-width: 1800px) {
  .hero .hero-form__field span {
    font-size: 13px;
    margin-bottom: 0px;
  }
}
.hero .hero-form__field input,
.hero .hero-form__field select {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  color: #4A4A4A;
  background-color: #F0F0F0;
  font-size: 14px;
  outline: 2px solid transparent;
  transition: outline-color 0.2s ease, background-color 0.2s ease;
}
.hero .hero-form__field input::placeholder,
.hero .hero-form__field select::placeholder {
  color: #939393;
}
.hero .hero-form__field input:focus,
.hero .hero-form__field select:focus {
  background-color: #FFFFFF;
  outline-color: #FECD45;
}
.hero .hero-form__field input[aria-invalid=true],
.hero .hero-form__field select[aria-invalid=true] {
  outline-color: #B42318;
}
.hero .hero-form__field input:disabled,
.hero .hero-form__field select:disabled {
  cursor: wait;
  opacity: 0.72;
}
@media (min-width: 1800px) {
  .hero .hero-form__field {
    padding: 16px 0px 0px 0px;
    border-radius: 14px;
    margin-bottom: 0px;
  }
}
.hero .hero-form__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #072E25 50%), linear-gradient(135deg, #072E25 50%, transparent 50%);
  background-position: calc(100% - 24px) 20px, calc(100% - 18px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.hero .hero-form__field-error {
  color: #B42318;
  font-size: 12px;
  line-height: 1.25;
}
.hero .hero-form__field-error[aria-hidden=true] {
  display: none;
}
.hero .hero-form__turnstile {
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}
.hero .hero-form__turnstile[hidden] {
  display: none;
}
.hero .hero-form__submit {
  margin-top: 12px;
  margin-left: auto;
}
.hero .hero-form__submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
@media (min-width: 560px) {
  .hero .hero-form__submit {
    margin-top: 14px;
    margin-left: 0;
  }
}
@media (min-width: 1800px) {
  .hero .hero-form__submit {
    margin-top: 16px;
  }
}
.hero .hero-form__status {
  width: 100%;
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.35;
}
.hero .hero-form__status[hidden] {
  display: none;
}
.hero .hero-form__status--error {
  color: #7A271A;
  background: #FEF3F2;
}
.hero .hero-form__status--success {
  color: #072E25;
  background: rgba(254, 205, 69, 0.28);
}

.ideal-for {
  padding-block: 44px 48px;
  color: #072E25;
  background: #F0F0F0;
}
@media (min-width: 768px) {
  .ideal-for {
    padding-block: 56px 64px;
  }
}
@media (min-width: 1800px) {
  .ideal-for {
    padding-block: 90px 92px;
  }
}
.ideal-for__container h2 {
  margin: 0 0 24px;
  color: #064A3C;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}
@media (min-width: 768px) {
  .ideal-for__container h2 {
    margin-bottom: 30px;
    font-size: 34px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__container h2 {
    margin-bottom: 34px;
    font-size: 48px;
  }
}
.ideal-for__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (min-width: 560px) {
  .ideal-for__grid {
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .ideal-for__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}
@media (min-width: 1024px) {
  .ideal-for__grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .ideal-for__grid {
    gap: 20px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__grid {
    gap: 24px;
  }
}
.ideal-for__card {
  min-height: 132px;
  margin: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #E0E0E0;
  border-radius: 18px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .ideal-for__card {
    min-height: 144px;
    padding: 22px 24px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__card {
    min-height: 190px;
    padding: 38px 40px;
    border-radius: 24px;
    gap: 22px;
  }
}
.ideal-for__card span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #FECD45;
}
@media (min-width: 1400px) {
  .ideal-for__card span {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__card span {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }
}
.ideal-for__card span img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (min-width: 1400px) {
  .ideal-for__card span img {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__card span img {
    width: 34px;
    height: 34px;
  }
}
.ideal-for__card h3 {
  max-width: 120px;
  margin: 0;
  color: #072E25;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
}
@media (min-width: 1400px) {
  .ideal-for__card h3 {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .ideal-for__card h3 {
    max-width: 150px;
    font-size: 18px;
  }
}

.numbers {
  position: relative;
  overflow: hidden;
  padding-block: 48px 32px;
  color: #072E25;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .numbers {
    padding-block: 64px 50px;
  }
}
@media (min-width: 1400px) {
  .numbers {
    padding-block: 82px 70px;
  }
}
@media (min-width: 1800px) {
  .numbers {
    padding-block: 110px 100px;
  }
}
.numbers__grafismo {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -360px;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: none;
  pointer-events: none;
}
@media (min-width: 768px) {
  .numbers__grafismo {
    right: -260px;
  }
}
@media (min-width: 1024px) {
  .numbers__grafismo {
    right: -190px;
  }
}
@media (min-width: 1400px) {
  .numbers__grafismo {
    right: -110px;
  }
}
.numbers__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
@media (min-width: 1024px) {
  .numbers__container {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
    gap: 64px;
  }
}
@media (min-width: 1400px) {
  .numbers__container {
    grid-template-columns: 450px minmax(0, 1fr);
    gap: 92px;
  }
}
@media (min-width: 1800px) {
  .numbers__container {
    grid-template-columns: 533px minmax(0, 1fr);
    gap: 154px;
  }
}
.numbers__media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .numbers__media {
    border-radius: 28px;
  }
}
@media (min-width: 1800px) {
  .numbers__media {
    border-radius: 34px;
  }
}
.numbers__media img {
  width: 100%;
  aspect-ratio: 1/0.86;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .numbers__media img {
    aspect-ratio: 533/566;
  }
}
.numbers__content h2 {
  margin: 0 0 28px;
  color: #064A3C;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .numbers__content h2 {
    margin-bottom: 38px;
    font-size: 38px;
  }
}
@media (min-width: 1024px) {
  .numbers__content h2 {
    margin-bottom: 88px;
  }
}
@media (min-width: 1800px) {
  .numbers__content h2 {
    margin-bottom: 90px;
    font-size: 48px;
  }
}
.numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (min-width: 560px) {
  .numbers__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .numbers__grid {
    gap: 30px;
    max-width: 88%;
  }
}
@media (min-width: 1800px) {
  .numbers__grid {
    gap: 52px;
  }
}
.numbers__item:nth-child(3) {
  grid-column: 1/span 2;
  justify-items: center;
}
@media (min-width: 560px) {
  .numbers__item:nth-child(3) {
    grid-column: 3/span 1;
  }
}
.numbers__item span {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  background: #064A3C;
}
@media (min-width: 1024px) {
  .numbers__item span {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 1800px) {
  .numbers__item span {
    width: 60px;
    height: 60px;
    margin-bottom: 42px;
    border-radius: 18px;
  }
}
.numbers__item span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .numbers__item span img {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 1800px) {
  .numbers__item span img {
    width: 34px;
    height: 34px;
  }
}
.numbers__item h3 {
  max-width: 180px;
  margin: 0 0 8px;
  color: #064A3C;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
}
@media (min-width: 560px) {
  .numbers__item h3 {
    max-width: 230px;
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .numbers__item h3 {
    font-size: 36px;
  }
}
@media (min-width: 1800px) {
  .numbers__item h3 {
    max-width: 280px;
    font-size: 40px;
  }
}
.numbers__item h3 strong {
  display: block;
  font-weight: 400;
}
.numbers__item p {
  max-width: 190px;
  margin: 0;
  color: #072E25;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .numbers__item p {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .numbers__item p {
    max-width: 230px;
    font-size: 18px;
  }
}
.numbers__item p strong {
  font-weight: 700;
}

.bill-simulator {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 54px 70px;
  color: #FFFFFF;
  background: #064A3C;
}
@media (min-width: 768px) {
  .bill-simulator {
    padding-block: 70px 84px;
  }
}
@media (min-width: 1400px) {
  .bill-simulator {
    padding-block: 80px 94px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator {
    padding-block: 98px 112px;
  }
}
.bill-simulator__grafismo {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -116px;
  width: 980px;
  max-width: none;
  opacity: 0.78;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .bill-simulator__grafismo {
    bottom: -220px;
    width: 1460px;
  }
}
@media (min-width: 1400px) {
  .bill-simulator__grafismo {
    bottom: -200px;
    width: 1920px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__grafismo {
    bottom: -300px;
    width: 2140px;
  }
}
.bill-simulator__container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}
.bill-simulator h2 {
  width: min(100%, 320px);
  margin: 0 0 28px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}
.bill-simulator h2 strong {
  display: block;
  color: #FECD45;
  font-weight: 600;
}
@media (min-width: 768px) {
  .bill-simulator h2 {
    width: min(100%, 560px);
    margin-bottom: 30px;
    font-size: 38px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator h2 {
    margin-bottom: 44px;
    font-size: 48px;
  }
}
.bill-simulator__panel {
  width: min(100%, 1000px);
  padding: 30px 18px 28px;
  color: #072E25;
  border-radius: 26px;
  background: #FFFFFF;
}
@media (min-width: 560px) {
  .bill-simulator__panel {
    padding: 32px 42px 34px;
  }
}
@media (min-width: 1024px) {
  .bill-simulator__panel {
    padding: 30px 58px 30px;
    border-radius: 36px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__panel {
    width: 1098px;
    padding: 50px 62px 46px;
    border-radius: 42px;
  }
}
.bill-simulator__field {
  width: min(100%, 286px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bill-simulator__field span {
  color: #072E25;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}
@media (min-width: 1024px) {
  .bill-simulator__field span {
    font-size: 20px;
    gap: 16px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__field span {
    font-size: 22px;
  }
}
.bill-simulator__field input {
  width: 100%;
  min-height: 45px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 0 20px;
  color: #4A4A4A;
  background: #FFFFFF;
  font-size: 13px;
  outline: 2px solid transparent;
  transition: border-color 0.2s ease, outline-color 0.2s ease;
}
.bill-simulator__field input:focus {
  border-color: #FECD45;
  outline-color: rgba(254, 205, 69, 0.42);
}
.bill-simulator__field input[aria-invalid=true] {
  border-color: #B42318;
}
.bill-simulator__field-error {
  margin-top: -10px;
  color: #B42318;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}
.bill-simulator__field-error[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}
.bill-simulator__chart {
  --with-percent: 84%;
  --distributor-percent: 20%;
  --guara-energy-percent: 64%;
  --saving-percent: 16%;
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .bill-simulator__chart {
    margin-top: 10px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__chart {
    margin-top: 16px;
  }
}
.bill-simulator__comparison + .bill-simulator__comparison {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .bill-simulator__comparison + .bill-simulator__comparison {
    margin-top: 20px;
  }
}
.bill-simulator__bar-title {
  margin: 0 0 10px;
  color: #072E25;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .bill-simulator__bar-title {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__bar-title {
    font-size: 16px;
  }
}
.bill-simulator__bar-current, .bill-simulator__bar {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: #E0E0E0;
}
@media (min-width: 768px) {
  .bill-simulator__bar-current, .bill-simulator__bar {
    height: 24px;
  }
}
.bill-simulator__bar-current {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bill-simulator__bar-current strong {
  color: #072E25;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .bill-simulator__bar-current strong {
    font-size: 12px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__bar-current strong {
    font-size: 14px;
  }
}
.bill-simulator__bar-distributor, .bill-simulator__bar-with, .bill-simulator__bar-saving {
  position: absolute;
  top: 0;
  bottom: 0;
  transition: left 0.25s ease, width 0.25s ease;
}
.bill-simulator__bar-distributor {
  left: 0;
  width: var(--distributor-percent);
  border-radius: 999px 0 0 999px;
  background: #E0E0E0;
}
.bill-simulator__bar-with {
  left: var(--distributor-percent);
  width: var(--guara-energy-percent);
  background: #064A3C;
  transition: width 0.25s ease;
}
.bill-simulator__bar-saving {
  left: var(--with-percent);
  width: var(--saving-percent);
  border-radius: 0 999px 999px 0;
  background: #FECD45;
  pointer-events: none;
}
.bill-simulator__scale {
  margin-top: 10px;
  display: grid;
  grid-template-columns: var(--distributor-percent) var(--guara-energy-percent) var(--saving-percent);
  align-items: center;
  color: #064A3C;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 1024px) {
  .bill-simulator__scale {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__scale {
    font-size: 16px;
  }
}
.bill-simulator__scale span {
  min-width: 0;
  text-align: center;
}
.bill-simulator__legend {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  color: #072E25;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .bill-simulator__legend {
    gap: 12px 44px;
    flex-direction: row;
    font-size: 12px;
    margin-top: 18px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__legend {
    font-size: 14px;
  }
}
.bill-simulator__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.bill-simulator__legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.bill-simulator__legend-dot--distributor {
  background: #E0E0E0;
}
.bill-simulator__legend-dot--with {
  background: #064A3C;
}
.bill-simulator__legend-dot--saving {
  background: #FECD45;
}
.bill-simulator__results {
  width: min(100%, 650px);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .bill-simulator__results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__results {
    width: 676px;
    margin-top: 60px;
  }
}
.bill-simulator--invalid .bill-simulator__bar-with,
.bill-simulator--invalid .bill-simulator__bar-saving {
  width: 0;
  opacity: 0;
}
.bill-simulator__result {
  min-height: 132px;
  border: 1px solid #E0E0E0;
  border-radius: 18px;
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
}
@media (min-width: 1800px) {
  .bill-simulator__result {
    min-height: 150px;
    border-radius: 20px;
  }
}
.bill-simulator__result h3 {
  min-height: 30px;
  margin: -62px 0 28px;
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border-radius: 999px;
  background: #064A3C;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 768px) {
  .bill-simulator__result h3 {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__result h3 {
    min-height: 34px;
    margin-top: -19px;
    padding-inline: 24px;
    font-size: 16px;
  }
}
.bill-simulator__result p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #072E25;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
.bill-simulator__result p strong {
  color: #064A3C;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.9;
}
@media (min-width: 1024px) {
  .bill-simulator__result p strong {
    font-size: 42px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__result p strong {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  .bill-simulator__result p {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__result p {
    font-size: 16px;
  }
}
.bill-simulator__result--annual h3 {
  color: #072E25;
  background: #FECD45;
}
.bill-simulator__note {
  margin: 24px auto 0;
  color: #064A3C;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  max-width: 80%;
}
@media (min-width: 1024px) {
  .bill-simulator__note {
    max-width: 100%;
    font-size: 12px;
    margin-top: 16px;
  }
}
@media (min-width: 1800px) {
  .bill-simulator__note {
    margin-top: 30px;
    font-size: 14px;
  }
}
.bill-simulator__cta {
  margin-top: 34px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1800px) {
  .bill-simulator__cta {
    margin-top: 42px;
    font-size: 16px;
  }
}

.savings-source {
  padding-block: 52px 58px;
  color: #072E25;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .savings-source {
    padding-block: 70px 76px;
  }
}
@media (min-width: 1400px) {
  .savings-source {
    padding-block: 92px 96px;
  }
}
@media (min-width: 1800px) {
  .savings-source {
    padding-block: 120px 112px;
  }
}
.savings-source__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1400px) {
  .savings-source__container {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: 54px;
  }
}
@media (min-width: 1800px) {
  .savings-source__container {
    grid-template-columns: minmax(0, 860px) 672px;
    gap: 62px;
  }
}
.savings-source__content h2 {
  max-width: 680px;
  margin: 0 0 28px;
  color: #064A3C;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .savings-source__content h2 {
    margin-bottom: 38px;
    font-size: 38px;
  }
}
@media (min-width: 1800px) {
  .savings-source__content h2 {
    max-width: 720px;
    margin-bottom: 44px;
    font-size: 48px;
  }
}
.savings-source__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .savings-source__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .savings-source__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1800px) {
  .savings-source__grid {
    gap: 22px;
  }
}
.savings-source__card {
  padding: 32px 20px;
  border: 1px solid #E0E0E0;
  border-radius: 18px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .savings-source__card {
    padding: 28px 16px;
  }
}
@media (min-width: 1800px) {
  .savings-source__card {
    padding: 36px 24px;
    border-radius: 24px;
  }
}
.savings-source__card span {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 13px;
  background: #FECD45;
}
@media (min-width: 1800px) {
  .savings-source__card span {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    border-radius: 18px;
  }
}
.savings-source__card span img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (min-width: 1800px) {
  .savings-source__card span img {
    width: 34px;
    height: 34px;
  }
}
.savings-source__card h3 {
  margin: 0 0 10px;
  color: #072E25;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.08;
}
@media (min-width: 1024px) {
  .savings-source__card h3 {
    font-size: 17px;
  }
}
@media (min-width: 1800px) {
  .savings-source__card h3 {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.savings-source__card p {
  margin: 0;
  color: #072E25;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}
@media (min-width: 1024px) {
  .savings-source__card p {
    font-size: 15px;
  }
}
@media (min-width: 1800px) {
  .savings-source__card p {
    font-size: 18px;
  }
}
.savings-source__media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
}
@media (min-width: 768px) {
  .savings-source__media {
    border-radius: 28px;
  }
}
@media (min-width: 1024px) {
  .savings-source__media {
    align-self: end;
  }
}
@media (min-width: 1800px) {
  .savings-source__media {
    border-radius: 34px;
  }
}
.savings-source__media img {
  width: 100%;
  aspect-ratio: 672/664;
  object-fit: cover;
}
.savings-source__cta {
  justify-self: center;
}
@media (min-width: 1024px) {
  .savings-source__cta {
    grid-column: 1/-1;
    margin-top: -2px;
  }
}
@media (min-width: 1800px) {
  .savings-source__cta {
    margin-top: 16px;
    font-size: 18px;
  }
}

.how-it-works {
  padding-block: 12px;
  background: #FFFFFF;
}
.how-it-works__panel {
  padding: 42px 24px;
  color: #FFFFFF;
  background: #072E25;
  border-radius: 28px;
}
@media (min-width: 768px) {
  .how-it-works__panel {
    padding: 58px 52px;
    border-radius: 42px;
  }
}
@media (min-width: 1400px) {
  .how-it-works__panel {
    padding: 76px 70px;
    border-radius: 54px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__panel {
    padding: 100px 78px;
    border-radius: 64px;
  }
}
.how-it-works__header {
  margin-bottom: 34px;
  text-align: center;
}
@media (min-width: 1024px) {
  .how-it-works__header {
    margin-bottom: 62px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__header {
    margin-bottom: 72px;
  }
}
.how-it-works__header h2 {
  margin: 0 0 14px;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .how-it-works__header h2 {
    font-size: 38px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__header h2 {
    margin-bottom: 30px;
    font-size: 48px;
  }
}
.how-it-works__header p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .how-it-works__header p {
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__header p {
    font-size: 18px;
  }
}
.how-it-works__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
@media (min-width: 560px) {
  .how-it-works__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 28px;
  }
}
@media (min-width: 1024px) {
  .how-it-works__steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (min-width: 1400px) {
  .how-it-works__steps {
    gap: 42px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__steps {
    gap: 74px;
  }
}
.how-it-works__step {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.how-it-works__step > div {
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .how-it-works__step {
    text-align: left;
  }
  .how-it-works__step > div {
    margin: 0;
  }
  .how-it-works__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    left: 72px;
    right: -12px;
    height: 6px;
    background-image: radial-gradient(circle, #FECD45 0 3px, transparent 3px);
    background-size: 22px 6px;
    background-repeat: repeat-x;
    background-position: left center;
  }
}
@media (min-width: 1400px) {
  .how-it-works__step:not(:last-child)::after {
    left: 66px;
    right: -30px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__step:not(:last-child)::after {
    top: 45px;
    left: 100px;
    right: -70px;
    background-size: 30px 6px;
  }
}
.how-it-works__step span {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: #064A3C;
}
@media (min-width: 1800px) {
  .how-it-works__step span {
    width: 100px;
    height: 100px;
    margin-bottom: 42px;
    border-radius: 24px;
  }
}
.how-it-works__step span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
@media (min-width: 1800px) {
  .how-it-works__step span img {
    width: 58px;
    height: 58px;
  }
}
.how-it-works__step h3 {
  margin: 0 auto 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  width: fit-content;
}
@media (min-width: 1024px) {
  .how-it-works__step h3 {
    margin: 0 0 10px;
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__step h3 {
    margin-bottom: 18px;
    font-size: 18px;
  }
}
.how-it-works__step p {
  margin: 0;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .how-it-works__step p {
    max-width: 160px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__step p {
    max-width: 190px;
    font-size: 18px;
  }
}
.how-it-works__cta {
  margin: 38px auto 0;
}
@media (min-width: 560px) {
  .how-it-works__cta {
    display: flex;
    justify-self: center;
  }
}
@media (min-width: 1024px) {
  .how-it-works__cta {
    margin-top: 64px;
  }
}
@media (min-width: 1800px) {
  .how-it-works__cta {
    margin-top: 78px;
    font-size: 18px;
  }
}

.testimonials {
  padding-block: 40px;
  color: #072E25;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .testimonials {
    padding-block: 60px;
  }
}
@media (min-width: 1400px) {
  .testimonials {
    padding-block: 70px;
  }
}
@media (min-width: 1800px) {
  .testimonials {
    padding-block: 90px;
  }
}
.testimonials__container h2 {
  margin: 0 0 34px;
  color: #064A3C;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonials__container h2 {
    margin-bottom: 48px;
    font-size: 38px;
  }
}
@media (min-width: 1800px) {
  .testimonials__container h2 {
    margin-bottom: 58px;
    font-size: 48px;
  }
}
.testimonials__carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: stretch;
  align-items: center;
  gap: 18px;
}
@media (min-width: 1400px) {
  .testimonials__carousel {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 34px;
  }
}
@media (min-width: 1800px) {
  .testimonials__carousel {
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    gap: 70px;
  }
}
.testimonials__slider {
  width: 100%;
  grid-column: 1/-1;
  grid-row: 1;
  padding-bottom: 26px;
}
@media (min-width: 1400px) {
  .testimonials__slider {
    grid-column: auto;
    grid-row: auto;
    padding-bottom: 70px;
  }
}
@media (min-width: 1800px) {
  .testimonials__slider {
    padding-bottom: 80px;
  }
}
.testimonials__slider .swiper-slide {
  height: auto;
}
.testimonials__card {
  position: relative;
  min-height: 292px;
  height: 100%;
  padding: 34px 32px 78px;
  color: #072E25;
  isolation: isolate;
}
@media (min-width: 768px) {
  .testimonials__card {
    min-height: 318px;
    padding: 38px 38px 82px;
  }
}
@media (min-width: 1400px) {
  .testimonials__card {
    min-height: 352px;
    padding: 42px 42px 88px;
  }
}
@media (min-width: 1800px) {
  .testimonials__card {
    min-height: 440px;
    padding: 48px 48px 110px;
  }
}
.testimonials__card::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.testimonials__card::before {
  inset: 0;
  z-index: -2;
  background: #F0F0F0;
  -webkit-clip-path: url("#testimonial-card-shape");
  clip-path: url("#testimonial-card-shape");
}
.testimonials__card p {
  margin: 18px 0 0;
  color: #072E25;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1800px) {
  .testimonials__card p {
    margin-top: 24px;
    font-size: 18px;
  }
}
.testimonials__card strong {
  position: absolute;
  left: 32px;
  bottom: 22px;
  z-index: 1;
  color: #072E25;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 768px) {
  .testimonials__card strong {
    left: 38px;
  }
}
@media (min-width: 1800px) {
  .testimonials__card strong {
    left: 48px;
    bottom: 28px;
    font-size: 14px;
  }
}
.testimonials__quote {
  width: 34px;
  height: auto;
}
@media (min-width: 1800px) {
  .testimonials__quote {
    width: 45px;
  }
}
.testimonials__arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #064A3C;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 1400px) {
  .testimonials__arrow {
    grid-row: auto;
  }
}
@media (min-width: 1800px) {
  .testimonials__arrow {
    width: 54px;
    height: 54px;
  }
}
.testimonials__arrow:hover, .testimonials__arrow:focus-visible {
  background: #072E25;
  transform: translateY(-1px);
}
.testimonials__arrow img {
  width: 23px;
  height: 20px;
  object-fit: contain;
}
.testimonials__arrow--prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: end;
}
.testimonials__arrow--next {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
}
@media (min-width: 1400px) {
  .testimonials__arrow--prev, .testimonials__arrow--next {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }
}
.testimonials__pagination {
  min-height: 12px;
  margin-top: -26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 1800px) {
  .testimonials__pagination {
    margin-top: -34px;
  }
}
.testimonials__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0;
  background: #E0E0E0;
  opacity: 1;
}
.testimonials__pagination .swiper-pagination-bullet-active {
  background: #064A3C;
}
.testimonials__cta {
  margin: 30px auto 0;
}
@media (min-width: 1800px) {
  .testimonials__cta {
    margin-top: 36px;
    font-size: 18px;
  }
}

.faq {
  position: relative;
  padding-block: 54px 58px;
  overflow: hidden;
  color: #072E25;
  background: rgba(240, 240, 240, 0.3137254902);
  isolation: isolate;
}
@media (min-width: 768px) {
  .faq {
    padding-block: 66px 78px;
  }
}
@media (min-width: 1400px) {
  .faq {
    padding-block: 78px 94px;
  }
}
@media (min-width: 1800px) {
  .faq {
    padding-block: 92px 112px;
  }
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../assets/images/icons/logo_grafismo_faq.svg") center/cover no-repeat;
  opacity: 0.72;
  pointer-events: none;
}
.faq__container {
  max-width: 1110px;
}
.faq__heading {
  margin-bottom: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .faq__heading {
    margin-bottom: 38px;
  }
}
.faq__heading h2 {
  margin: 0;
  color: #064A3C;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .faq__heading h2 {
    font-size: 42px;
  }
}
@media (min-width: 1800px) {
  .faq__heading h2 {
    font-size: 52px;
  }
}
.faq__heading p {
  margin: 14px 0 0;
  color: #064A3C;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .faq__heading p {
    font-size: 17px;
  }
}
@media (min-width: 1800px) {
  .faq__heading p {
    font-size: 20px;
  }
}
.faq__list {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .faq__list {
    gap: 18px;
  }
}
.faq__item {
  border: 1px solid transparent;
  border-radius: 9px;
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item.is-open {
  border-color: #FECD45;
  box-shadow: 0 16px 35px rgba(7, 46, 37, 0.06);
}
.faq__item h3 {
  margin: 0;
}
.faq__question {
  width: 100%;
  min-height: 56px;
  border: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #064A3C;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 768px) {
  .faq__question {
    min-height: 64px;
    padding-inline: 28px;
  }
}
@media (min-width: 1800px) {
  .faq__question {
    min-height: 72px;
    padding-inline: 34px;
    font-size: 17px;
  }
}
.faq__question:focus-visible {
  outline: 2px solid #064A3C;
  outline-offset: 3px;
  border-radius: 8px;
}
.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #072E25;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq__answer {
  padding: 0 18px 18px;
}
@media (min-width: 768px) {
  .faq__answer {
    padding: 0 28px 24px;
  }
}
@media (min-width: 1800px) {
  .faq__answer {
    padding: 0 34px 30px;
  }
}
.faq__answer p {
  max-width: 900px;
  margin: 0;
  color: #4A4A4A;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1800px) {
  .faq__answer p {
    max-width: 1080px;
    font-size: 16px;
  }
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thank-you-page main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.thank-you-page .site-footer {
  flex: 0 0 auto;
}

.thank-you {
  position: relative;
  flex: 1 0 auto;
  min-height: 450px;
  padding-block: 54px 58px;
  overflow: hidden;
  color: #072E25;
  background: #FFFFFF;
  isolation: isolate;
}
@media (min-width: 768px) {
  .thank-you {
    min-height: 455px;
    padding-block: 58px 60px;
  }
}
@media (min-width: 1200px) {
  .thank-you {
    min-height: calc(100vh - 276px);
    padding-block: 58px 60px;
  }
}
@media (min-width: 1800px) {
  .thank-you {
    min-height: calc(100vh - 336px);
    padding-block: 86px 96px;
  }
}
.thank-you::before {
  content: "";
  position: absolute;
  inset: -90px -340px auto;
  height: 760px;
  z-index: -1;
  background: url("../assets/images/icons/logo_grafismo_faq.svg") center top/1520px auto no-repeat;
  opacity: 0.9;
  pointer-events: none;
}
@media (min-width: 768px) {
  .thank-you::before {
    inset: -150px -220px auto;
    height: 900px;
    background-size: 1700px auto;
  }
}
@media (min-width: 1400px) {
  .thank-you::before {
    inset: -190px 0 auto;
    height: 1020px;
    background-size: 1920px auto;
  }
}
.thank-you__container {
  position: relative;
  display: grid;
  justify-items: center;
}
.thank-you h1 {
  margin: 0 0 24px;
  color: #064A3C;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
.thank-you h1 strong {
  font-weight: 600;
}
@media (min-width: 768px) {
  .thank-you h1 {
    margin-bottom: 24px;
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .thank-you h1 {
    font-size: 34px;
  }
}
@media (min-width: 1800px) {
  .thank-you h1 {
    margin-bottom: 30px;
    font-size: 42px;
  }
}
.thank-you__panel {
  width: min(100%, 560px);
  padding: 34px 24px 36px;
  border-radius: 24px;
  color: #FFFFFF;
  background: #064A3C;
  box-shadow: 0 28px 58px rgba(7, 46, 37, 0.08);
}
@media (min-width: 768px) {
  .thank-you__panel {
    padding: 38px 50px 36px;
  }
}
@media (min-width: 1800px) {
  .thank-you__panel {
    width: min(100%, 700px);
    padding: 52px 72px 54px;
    border-radius: 34px;
  }
}
.thank-you__panel p {
  max-width: 540px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.22;
}
@media (min-width: 768px) {
  .thank-you__panel p {
    font-size: 15px;
  }
}
@media (min-width: 1800px) {
  .thank-you__panel p {
    max-width: 650px;
    font-size: 18px;
  }
}
.thank-you__panel p + p {
  margin-top: 16px;
}
@media (min-width: 1800px) {
  .thank-you__panel p + p {
    margin-top: 20px;
  }
}
.thank-you__panel strong {
  font-weight: 600;
}
.thank-you__list {
  margin: 18px 0 18px;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}
@media (min-width: 1800px) {
  .thank-you__list {
    margin-block: 22px;
    gap: 13px;
  }
}
.thank-you__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 1800px) {
  .thank-you__list li {
    font-size: 17px;
  }
}
.thank-you__list span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #FECD45;
}
@media (min-width: 1800px) {
  .thank-you__list span {
    width: 24px;
    height: 24px;
  }
}
.thank-you__list img {
  width: 12px;
  height: auto;
}
@media (min-width: 1800px) {
  .thank-you__list img {
    width: 14px;
  }
}
.thank-you__cta {
  width: 100%;
  margin: 28px auto 0;
}
@media (min-width: 560px) {
  .thank-you__cta {
    width: auto;
    display: flex;
    justify-self: center;
  }
}
@media (min-width: 1800px) {
  .thank-you__cta {
    margin-top: 34px;
    font-size: 18px;
  }
}

.site-footer {
  color: #FFFFFF;
  background: #064A3C;
  border-bottom: 4px solid #FECD45;
  border-radius: 30px 30px 0 0;
}
.site-footer__inner {
  padding-block: 34px 30px;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .site-footer__inner {
    border-radius: 42px 42px 0 0;
    padding: 24px 0px;
    grid-template-columns: 1fr 1.6fr 1fr;
    justify-items: stretch;
    gap: 32px;
  }
}
.site-footer__brand {
  display: grid;
  justify-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .site-footer__brand {
    justify-items: start;
    gap: 18px;
  }
}
.site-footer__logo {
  display: inline-flex;
}
.site-footer__logo img {
  width: 118px;
  height: auto;
}
@media (min-width: 768px) {
  .site-footer__logo img {
    width: 130px;
  }
}
@media (min-width: 1800px) {
  .site-footer__logo img {
    width: 155px;
  }
}
.site-footer__powered {
  display: flex;
  align-items: center;
  gap: 9px;
}
.site-footer__powered img {
  width: 120px;
  height: auto;
}
@media (min-width: 1024px) {
  .site-footer__powered img {
    width: 140px;
  }
}
@media (min-width: 1800px) {
  .site-footer__powered img {
    width: 155px;
  }
}
.site-footer__center {
  display: grid;
  justify-items: center;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__center {
    gap: 38px;
    align-self: center;
  }
}
@media (min-width: 1800px) {
  .site-footer__center {
    gap: 48px;
  }
}
.site-footer__center p {
  margin: 0;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .site-footer__center p {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .site-footer__center p {
    font-size: 16px;
  }
}
.site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}
.site-footer__credit:hover, .site-footer__credit:focus-visible {
  opacity: 0.78;
}
.site-footer__credit span {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .site-footer__credit span {
    font-size: 14px;
  }
}
@media (min-width: 1800px) {
  .site-footer__credit span {
    font-size: 16px;
  }
}
.site-footer__credit img {
  width: 92px;
  height: auto;
}
@media (min-width: 1800px) {
  .site-footer__credit img {
    width: 128px;
  }
}
.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .site-footer__social {
    justify-content: flex-end;
  }
}
.site-footer__social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
@media (min-width: 1024px) {
  .site-footer__social a {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1800px) {
  .site-footer__social a {
    width: 34px;
    height: 34px;
  }
}
.site-footer__social a:hover, .site-footer__social a:focus-visible {
  background: #FECD45;
  transform: translateY(-1px);
}
.site-footer__social img {
  width: 14px;
  max-height: 14px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .site-footer__social img {
    width: 15px;
    max-height: 15px;
  }
}
@media (min-width: 1800px) {
  .site-footer__social img {
    width: 16px;
    max-height: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
