@font-face {
  font-family: "bdgrotesk-medium";
  src: url("../fonts/BDOGrotesk/BDOGrotesk-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Outfit, "Arial", sans-serif;

  color: #000;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.flotante {
  animation: flotar 3s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}
@keyframes flotar {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  max-width: 1320px; 
  width: 100%; 
  margin: 0 auto; 
  padding: 0 15px; 
  background-color: transparent;
  flex-wrap: wrap; 
  gap: 12px; 
  margin-top: 16px;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 120px;
}
.logo-icon {
  width: 140px;
  cursor: pointer;
}
.navbar .logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
}
.navbar .nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; 
  gap: 14px; 
}
.navbar .nav-links a {
  font-size: 1.2rem;
  color: #000;
  font-family: Outfit, Arial;
  text-transform: capitalize;
  position: relative;
  font-size: bold;
}
.navbar .nav-links a:hover {
  color: #000;
}
.navbar .nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00c853;
}
.navbar .btn.get-started {
  padding: 0.5rem 1rem;
  background-color: #00c853;
  color: #fff;
  border-radius: 0px;
  font-size: 1rem;
  font-weight: 500;

}
.navbar .btn.get-started:hover {
  padding: 0.5rem 1rem;
  background-color: #000;

  color: white;
  transition: color 0.3s ease;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-text_1 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(1.6rem, 2.6vw + 0.6rem, 2.75rem);
  color: black;
  font-family:
    Hanken Grotesk,
    Arial;
  font-weight: 400;
  text-align: center;
}
.hero-text {
  max-width: 100%;
}
.hero-text p {
  font-size: 26px;
  color: #000;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: Outfit, Arial;
  font-weight: 500;
}
.hero-text p strong {
  color: #000;
}
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: Outfit;
}
.hero-buttons .btn.primary {
  background-color: #00c853;
  color: #fff;
  border: 1px solid #00c853;
}
.hero-buttons .btn.primary:hover {
  background-color: #000;
  color: #fff;
  transition: color 0.3s ease;
  border: 1px solid #000;
}
.hero-buttons .btn.secondary {
  background-color: white;
  color: #000;
  border: 1px dashed #ccc;
}
.hero-buttons .btn.secondary:hover {
  background-color: rgb(245, 248, 244);
  color: #000;
  border: 1px solid #000;
  transition: color 0.3s ease;
}
.hero-image {
  max-width: 80%;
  min-width: 50%;
  margin-left: 105px;
}
.hero-image img {
  width: 70%;
  height: auto;
  display: block;
  max-width: 800px; 
  min-width: 500px; 
}
.testimonial-container {
  width: 100%;
  overflow: hidden;
  background-color: white;
}
.testimonial-list {
  display: flex;
  animation: scrollTestimonial 70s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0;
}
.testimonial-item {
  flex: 0 0 auto;
  width: 33.33%; 
  padding: 20px;
  text-align: center;
}
.testimonial-item h3 {
  font-size: 1.2em;
  font-weight: bold;
}
.testimonial-item .state {
  font-size: 1em;
  color: #666;
}
.testimonial-item .review {
  font-size: 1em;
  color: #333;
  word-wrap: break-word; 
  overflow-wrap: break-word;
  line-height: 1.5;
}
.testimonial-container:hover .testimonial-list {
  animation-play-state: paused; 
}
.testimonial-list::after {
  content: "";
  display: block;
  width: 100%;
  flex: 0 0 auto;
}
@keyframes scrollTestimonial {
  0% {
    transform: translateX(0); 
  }
  100% {
    transform: translateX(
      -300%
    ); 
  }
}
.benefits-container {
  display: flex;
  align-items: center;

  gap: 20px;
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 20px 20px; 
  box-sizing: border-box; 
}
@media (min-width: 1025px){.benefits-container {
    box-sizing: border-box; 
    width: min(1320px, calc(100% - 30px)); 
    margin-inline: auto; 
    justify-content: space-between; 
  }.benefits-container .left,
  .benefits-container .right {
    flex: 1 1 0;
    min-width: 0;
  }}
@media (min-width: 1025px){.benefits-container {
    box-sizing: border-box;

    width: min(1320px, calc(100% - 30px));
    margin-inline: auto !important; 
    padding-inline: 15px; 
    justify-content: space-between; 
  }.benefits-container .left,
  .benefits-container .right {
    flex: 1 1 0;
    min-width: 0;
    margin: 0 !important;
  }}
@media (max-width: 1024px){.benefits-container {
    margin-left: 15px;
    margin-right: 15px;
    flex-direction: column;
    justify-content: flex-start;
  }}
.benefits-container:hover {
  border: 1px dashed #00b86b;
}
#last-benefits-container {
  margin-bottom: 30px;
}
.benefits-container .left {
  width: 50%; 
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.benefits-container .left h3,
.benefits-container .right h3 {
  color: black;
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 44px); 
  font-weight: 500;
  line-height: 1.2; 
  letter-spacing: -2px;
}
.benefits-container .left p,
.benefits-container .right p {
  color: #000;
  font-size: 16px;
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 150%;
}
.benefits-container .right {
  width: 50%; 
  text-align: left; 
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.benefits-container .right img,
.benefits-container .left img {
  width: 120px; 
  height: auto; 
  margin: 0 auto; 
}
.example-container {
  max-width: 1320px;
  background-color: rgb(245, 248, 244);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  border: 1px dashed #ccc;
  margin-top: 20px;
  width: min(
    1320px,
    calc(100% - 30px)
  ); 
  margin-inline: auto;
  box-sizing: border-box;
}
.example-container .left h1 {
  font-size: clamp(22px, 2.2vw + 1rem, 36px); 
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.example-container .left h3 {
  font-size: clamp(18px, 1.5vw + 0.6rem, 24px) !important;
}
@media (max-width: 1024px){.example-container {
    display: flex;
    flex-direction: column; 
    gap: 16px;
    padding-inline: 15px; 
  }.example-container .right {
    order: -1;
  }.example-container .left {
    order: 0;
  }.example-container .right {
    width: 100%;
    display: flex;
    justify-content: center;
  }.example-container .right .jane-sad {
    width: clamp(330px, 90vw, 630px) !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }.example-container .left {
    width: 100%;
  }}
.example-container .left {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.example-container .left h1,
.example-container .right h1 {
  color: black; 
  margin: 0 0 24px;
  font-size: 42px;
  font-weight: 500;
  line-height: 46px;
  text-align: left;
  padding-top: 10px;
}
.example-container .left h3,
.example-container .right h3 {
  color: black; 
  margin: 0 0 24px;
  font-size: 24px;
  text-align: left;
  font-family: Outfit, Ariel;
  font-weight: 400;
}
.example-container .left p,
.example-container .right p {
  color: #425366;
  font-size: 14px;
  margin: 0 0 24px;
  font-weight: 400;
  line-height: 150%;
}
.example-container .right {
  width: 30%; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  height: 100%; 
  margin: 0 auto;
  text-align: center; 
}
.example-container .right img,
.example-container .left img {
  width: 80%; 
  min-width: 120px;
  height: auto; 
}
.title {
  margin-top: 16px;
  text-align: left; 
  box-sizing: border-box; 
  color: black;
}
#results-title {
  text-align: center;
  font-size: 24px;
  margin-top: 0px;
}
.results-container {
  max-width: 1320px;

  margin-inline: max(15px, calc(50% - 660px));
  margin-block: 30px;

  background-color: #fff;
  border: 1px dashed #ccd3db;
  box-sizing: border-box;
}
.results-container h1 {
  color: black; 
  margin-top: 30px;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}
#results-special-background {
  background-color: rgb(245, 248, 244);
  font-size: 2em;
  font-weight: bold;
  border: 1px dashed #ccc;
}
.results-container-child {
  max-width: 1320px;
  background-color: white;
  align-items: stretch;
  justify-content: center;
  margin: 0 auto;
  display: flex;
}
.child-2 {
  flex: 1; 
  flex-direction: column; 
  border: 1px dashed #ccc;
  box-sizing: border-box; 
  display: flex;
  position: relative;
}
.child-2:hover {
  background-color: #f5f8f4;
}
#child-eliminar-border {
  border-right: transparent;
}
.half {
  flex: 1; 
  padding: 15px;
  text-align: center;
}
.half h1 {
  font-family: Outfit, Arial;
  font-weight: 700;
  font-size: 40px;
  right: 10px;
  color: #00b86b;
  text-align: center;
}
.child-2 .half .values-title-results {
  font-size: 50px;
  padding: 0px;
  padding-top: 15px;
}
.second-section {
  justify-content: center; 
  align-items: center; 
  margin-top: 40px;
  margin: 0 auto;
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
}
.second-section h2 {
  text-align: center;
  max-width: 1320px; 
  margin: 0 auto; 
  margin-bottom: 20px; 
  font-size: 60px;
  font-weight: 500;
  font-family: Outfit, Arial;
  position: relative;
  line-height: 110%;
  letter-spacing: -3px;
  margin-top: 0;
  text-transform: capitalize;
  color: black;
  margin-top: 50px;
}
.second-section h3 {
  text-align: center;
  max-width: 1320px; 
  margin: 0 auto; 
  margin-bottom: 20px; 
  font-size: 24px;
  font-weight: 500;
  font-family: Outfit, Arial;
  position: relative;
  line-height: 100%;
  margin-top: 0;
  color: black;
  margin-top: 30px;
}
h2 {
  text-align: center; 
  width: 100%; 
  margin: 0; 
  font-size: 2rem;
  font-weight: 500;
  color: black;
}
#second-section-inline {
  background-color: rgb(245, 248, 244);
}
#second-section-resume {
  background: rgb(245, 248, 244);
}
.item {
  flex: 1 1 calc(33.33% - 20px); 
  text-align: center; 
  box-sizing: border-box; 
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}
.item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.item p {
  color: #000;
}
.our-mission-spot {
  background: rgb(245, 248, 244);
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 50px;
  margin: 0 auto;
}
.our-mission-spot-body {
  display: flex;
  flex-wrap: wrap; 
  max-width: 1320px;
  margin: 0 auto;
  gap: 15px; 
}
.our-mission-spot-body-1,
.our-mission-spot-body-2 {
  flex: 1; 
  padding: 10px;
  border: 1px dashed #ccc;
  background-color: white;
}
.our-mission-spot-body-1:hover,
.our-mission-spot-body-2:hover {
  border: 1px dashed #00b86b;
}
.our-mission-spot-body-3 {
  flex: 0 0 100%; 
  padding: 15px;
  border: 1px dashed #ccc;
  background-color: white;
  display: flex;
}
.our-mission-spot-body-3:hover {
  border: 1px dashed #00b86b;
}
.our-mission-spot-body-3 .left {
  width: 60%;
  margin-bottom: 20px;
}
.our-mission-spot-body-3 .left p {
  margin-bottom: 20px;
}
.our-mission-spot-body-3 .right {
  width: 40%;
}
.our-mission-spot-body-texts {
  font-size: clamp(1.4rem, 2vw + 1rem, 2.5rem) !important;
}
.our-mission-spot-body h2 {
  text-align: left;
  font-size: 44px;
  font-weight: 500;
  margin-top: 16px;
  margin-left: 16px;
  margin-right: 16px;
}
.our-mission-spot-body p {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  margin-top: 16px;
  color: #000;
  margin-left: 16px;
  margin-right: 16px;
}
.section-4 {
  padding-bottom: 30px;
  background-color: rgb(245, 248, 244);
}
.section-4-alternatives-grid {
  display: grid; 
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); 
  gap: 15px;

  max-width: 1100px;
  width: 100%;
  padding-inline: 15px; 
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.section-4-alternatives-grid .item {
  display: grid;
  grid-template-rows:
    auto
    auto
    auto
    auto
    1fr;
  align-items: center; 
  border: dashed 1px #ccc;
  background-color: white;
  height: 400px;
  padding: 10px; 
  row-gap: 0.75rem;
  margin: 0; 
  flex: unset; 
  width: 100%;
  max-width: none; 
}
.section-4-alternatives-grid .item:hover {
  border: dashed 1px #00b86b;
}
.basic-bar,
.standard-bar,
.premium-bar,
.ideal-bar,
.quick-bar,
.max-bar {
  width: 80%;
  height: 10px;
  border-radius: 10px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
}
.basic-bar {
  background-color: #e0e0e0;
}
.standard-bar {
  background-color: #aed6f1;
}
.premium-bar {
  background-color: #a3e4d7;
}
.ideal-bar {
  background-color: #82e0aa;
}
.quick-bar {
  background-color: #f7dc6f;
}
.max-bar {
  background-color: #f1948a;
}
.section-4-alternatives-grid .item h2,
.section-4-alternatives-grid .item h1,
.section-4-alternatives-grid .item h3 {
  color: black;
  font-family: Outfit, Arial, sans-serif;
  text-align: center;
}
.section-4-alternatives-grid .item h1 {
  font-size: 50px;
  font-weight: 500;
  color: #00b86b;
  margin-bottom: 10px;
}
.section-4-alternatives-grid .item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-top: -30px;
}
.section-4-alternatives-grid .item p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  max-height: 200px; 
  overflow: hidden; 
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.jane-sad {
  width: 20%; 
  height: auto;
  margin-left: 20px; 
  margin-top: 10px;
}
.jane-details .item {
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: space-between; 
  border-radius: 20px;
  border: solid 1px rgb(49, 112, 100);
  background-color: rgb(249, 247, 242);
  height: 260px;
  width: 120px; 
  box-sizing: border-box; 
}
.jane-details .item img {
  height: 80px; 
  width: auto; 
  margin-top: 10px;
}
.jane-details .item h2 {
  font-family: Outfit, Arial;
  font-size: 30px;
  color: rgb(49, 112, 100);
}
.jane-details .item p {
  font-family: Outfit, Arial;
  font-size: 30px;
  color: black;
}
.container-results {
  display: flex; 
  max-width: 1320px; 
  background-color: transparent;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 30px;
}
.container-results h1 {
  font-size: 40px;
  text-align: left;
  color: #000;
  font-family: Outfit, Arial;
}
.container-results-left {
  flex: 7; 
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}
.container-results-left p {
  color: black;
  font-family: Outfit;
  font-size: 24px;
  text-align: left;
  margin-bottom: 20px;
}
.container-results-right {
  flex: 3; 
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}
.jane-happy {
  width: 90%; 
  height: 90%; 
  object-fit: cover; 
}
#download-report {
  margin-bottom: 20px;
}
.tailor-container-inside .left {
  width: 70%;
  background-color: transparent;
}
.tailor-container-inside .right {
  width: 30%;
  background-color: transparent;
}
.step-items .left {
  width: 15%;
  background-color: transparent;
  justify-content: center; 
  align-items: center; 
  height: 98%;
}
.step-items .left h1 {
  font-size: 120px;
  line-height: 1; 
  background-color: transparent;
  color: #005c36;
}
.step-items .right {
  width: 85%;
  background-color: rgb(249, 247, 242);
  border-radius: 5px;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 4px;
  justify-content: center; 
  align-items: center; 
}
.step-items .right h2 {
  font-family: Outfit, Arial;
  font-size: 34px;
  font-weight: 500;
  text-align: left;
  margin-left: 10px;
}
.step-items .right h3 {
  font-family: Outfit, Arial;
  font-size: 28px;
  font-weight: 300;
  text-align: left;
  margin-left: 10px;
}
.accordion-container {
  background-color: transparent;
  padding: 20px;
}
.accordion-container h1 {
  text-align: center;
  font-family: Outfit, Arial;
  font-weight: 300;
  color: rgb(50, 110, 100);
  font-size: 50px;
}
#accordion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 50px auto;
  max-width: 1000px;
}
#accordion li {
  list-style: none;
  width: 100%;
  background: rgb(245, 248, 244);
  padding: 10px;
  border: 1px dashed #ccc;
}
#accordion p {
  font-family: Outfit, Arial;
}
#accordion li label {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
}
#accordion li label span {
  transform: rotate(90deg);
  font-size: 22px;
  color: rgb(50, 110, 100);
}
#accordion label + input[type="checkbox"] {
  display: none;
}
#accordion .content {
  padding: 0 10px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
#accordion label + input[type="checkbox"]:checked + .content {
  max-height: 400px;
}
.navbar-end .nav-links {
  display: flex;
  gap: 3rem;
}
.navbar-end .nav-links a {
  font-size: 1.5rem;
  color: white;
  font-family: Outfit, Arial;
  text-transform: capitalize;
  position: relative;
  font-size: bold;
}
.navbar-end .nav-links a:hover {
  color: #000;
}
.navbar-end .nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00c853;
}
#small-icons {
  width: clamp(28px, 2.2vw, 40px);
  height: auto;
}
@media (max-width: 1024px){.footer-top-27 {
    grid-template-columns: 1fr; 
    text-align: center;
  }.footer-links-27 {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }}
@media (max-width: 768px){.navbar {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }.navbar .nav-links {
    width: 100%;
    justify-content: center;
  }}
@media (max-width: 480px){#small-icons {
    width: 28px;
  }}
#end-button {
  margin: 0 auto;
}
.alternatives-collect .left {
  margin-left: 20px;
  margin-right: 10px;
  width: calc(50% - 30px);
  margin-bottom: 20px;
}
.alternatives-collect .left p {
  margin-left: 20px;
}
.alternatives-collect .right {
  margin-right: 20px;
  margin-left: 10px;
  width: calc(50% - 30px);
  margin-bottom: 20px;
}
.progress-container .left {
  width: calc(50% - 20px);
  margin-left: 20px;
}
input[type="text"] {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  font-size: 20px;
  border: 1px solid #ccc;
}
label {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}
select {
  width: 100%;
  padding: 10px;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
}
textarea:focus {
  border-color: #28a745;
}
.end-message .hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.Fynia-adv-middle-top {
  height: 40px;
}
.Fynia-adv-middle-top,
.Fynia-adv-middle-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.Fynia-adv-middle-top h3 {

  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.2; 
  margin: 0;
  text-align: center; 
}
#Fynia-monthly-title-7 {
  max-width: 1320px;
  margin: 0 auto;
  font-size: clamp(24px, 2.5vw, 30px); 
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  font-family: Outfit, Arial;
  margin-bottom: 30px;
}
#Fynia-monthly-intro-7 {
  margin: 0 0 20px;
  font-size: clamp(17px, 2vw, 20px); 
  line-height: 1.4;
  text-align: center;
  font-family: Outfit, Arial;
  color: black;
}
#Fynia-efficiency-9 {
  background-color: rgb(245, 248, 244); 
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  box-sizing: border-box;
  max-width: 1320px;
  margin: 0 auto;
  border: 1px dashed #ccc;
  font-family: Outfit, Arial, sans-serif;
  margin-bottom: 30px;
}
#Fynia-efficiency-9-image {
  margin-bottom: 20px;
}
#Fynia-efficiency-9-image img {
  display: block; 
  max-width: 1320px; 
  width: 100%; 
  height: auto; 
  margin: 0 auto;
  border: 1px dashed #ccc; 
}
#Fynia-efficiency-9-image img:hover {
  border: 1px dashed #00c853;
}
#comparison-container-21 {
  display: flex; 
  border: 1px dashed #ccc;
  overflow: hidden; 
  font-family: Arial, sans-serif;
  max-width: 1320px;
  margin: 0 auto;
  background-color: rgb(245, 248, 244); 
  margin-bottom: 30px;
}
#comparison-container-21:hover {
  border: 1px dashed #00c853;
}
.comparison-left-21 {
  display: flex;
  flex-direction: column;
  flex: 0 0 220px;  
  padding: 20px;
  border-right: 1px dashed #ccc;
  text-align: center;
  justify-content: center;
}
#comparison-container-21-basic {
  background-color: #e0e0e0;
}
#comparison-container-21-standard {
  background-color: #aed6f1;
}
#comparison-container-21-premium {
  background-color: #a3e4d7;
}
#comparison-container-21-ideal {
  background-color: #82e0aa;
}
#comparison-container-21-quick {
  background-color: #f7dc6f;
}
#comparison-container-21-max {
  background-color: #f1948a;
}
#comparison-left-title-21 {
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-descrip-21 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-amount-21 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-left-unit-21 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-left: 4px;
}
#comparison-right-21 {
  flex: 1; 
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  grid-template-rows: repeat(
    2,
    auto
  );  
  background-color: #ccc; 
}
.comparison-box-21 {
  background-color: #fff; 
  padding: 15px;
  text-align: center;
  justify-content: center; 
  align-items: center; 
  border: 1px dashed #ccc;
}
.comparison-box-21:hover {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #00c853;
}
.comparison-box-desc-21#comparison-box-desc-21-textdescript {
  display: block !important; 
  align-self: center; 
  margin-block: auto; 
  margin-inline: 0;
  height: auto !important; 
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  font-family: Outfit, Arial;
}
#comparison-box-desc-21-textdescript .highlight-21 {
  display: inline;
  white-space: nowrap;
}
#comparison-box-desc-21-textdescript {
  display: block !important;
  margin: 0;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
}
#comparison-right-21 .comparison-box-21:has(.comparison-box-score-21) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: center; 
}
#comparison-right-21 .comparison-box-score-21 {
  margin: auto 0; 
}
#comparison-right-21
  .comparison-box-21:has(#comparison-box-desc-21-textdescript) {
  display: flex;
  align-items: center; 
  justify-content: center; 
}
.highlight-21 {
  display: inline; 
  font-weight: bold;
  color: #00b86b; 

}
.comparison-box-title-21 {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
.comparison-box-value-21 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  font-family: Outfit, Arial;
}
#comparison-box-value-21-align-tra {
  margin-top: 40px;
  font-size: 44px;
}
.comparison-box-sub-21 {
  margin: 5px 0 0;
  font-size: 20px;
  font-weight: 500;
  color: #27ae60; 
  display: block;
  background: #d5f3e6;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 300px;
  border: 1px solid #007b47;
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-family: Outfit, Arial;
}
#comparison-box-sub-21-left {
  width: 100%;
  background: white;
  font-size: 16px;
  font-weight: 500;
}
#comparison-box-sub-21-left-2 {
  width: 100%;
  border: transparent;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}
.comparison-box-desc-21 {
  display: flex;
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}
.comparison-box-score-21 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  color: #2ecc71; 
  margin-top: 26px;
}
#donut-chart-21 {
  display: inline-block;
  margin-top: 8px;
}
.donut-svg-21 {
  width: 100px;
  height: 100px;

}
.donut-fill-21 {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}
.donut-bg-21 {
  fill: none;
  stroke: #eee;
  stroke-width: 3;
}
.donut-fill-21 {
  fill: none;
  stroke: #00b86b;
  stroke-width: 3;
  stroke-linecap: round;
  animation: donut-anim-21 1s ease-out forwards;
}
.donut-text-21 {
  font-family: Outfit, Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  fill: #000;

  text-anchor: middle;
  dominant-baseline: middle;

  transform: none !important;
}
@keyframes donut-anim-21 {
  0% {
    stroke-dasharray: 0, 100;
  }
}
.second-section #features-grid-22 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  grid-template-rows: repeat(2, auto); 
  max-width: 1320px; 
  margin: 0 auto;
  padding: 30px;
  box-sizing: border-box;
  font-family: Arial, sans-serif; 
  background-color: rgb(245, 248, 244);
}
.feature-card-22 {
  background-color: rgb(245, 248, 244); 
  border: 1px dashed #ccc; 
  padding: 20px;
  box-sizing: border-box;
}
.feature-card-22:hover {
  border: 1px dashed #00b86b;
  background-color: white; 
}
.feature-icon-22 {
  margin-bottom: 10px;
}
.feature-icon-22 img {
  width: 24px; 
  height: 24px;
}
.second-section .feature-title-22 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  font-family: Outfit, Arial;
  text-align: left;
}
.feature-text-22 {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  font-family: Outfit, Arial;
}
label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
}
.site-footer-27 {
  background: #000;
  color: #fff;
  font-family: Outfit, Arial;
  padding: 40px 0;
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 40px;
}
.footer-top-27 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 20px;
}
.footer-logo-27 h2 {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}
.footer-logo-27 img {
  width: 140px;
  height: auto;
}
.footer-logo-27 p {
  margin: 5px 0 0;
  color: #fff;
  font-size: 14px;
}
.footer-links-27 {
  display: grid;
  grid-auto-flow: column;
  gap: clamp(12px, 4vw, 28px);
}
.footer-links-27 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.footer-links-27 ul li {
  margin: 8px 0;
}
.footer-links-27 ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-links-27 ul li a:hover {
  color: #ccc;
}
.footer-divider-27 {
  width: 80%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid white;
  margin-bottom: 20px;
}
.footer-middle-27 {
  margin-bottom: 20px;
}
.social-icons-27 {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex;
  gap: 20px;
}
.social-icons-27 li a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icons-27 li a:hover {
  color: #fff;
}
.footer-bottom-27 {
  font-size: 14px;
  color: #fff;
}
.auxiliar-h3 {
  text-align: center;
  max-width: 1320px;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  font-family: Outfit, Arial;
  position: relative;
  line-height: 100%;
  margin-top: 0;
  color: black;
  background-color: rgb(245, 248, 244);
}
.footer-words {
  font-size: 14px;
  font-family: Outfit, Arial;
  color: white;
}
.footer-words:hover {
  color: rgb(25, 231, 110) !important;
  transition: color 0.3s ease;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --ix-fees-bg: #ffffff;
  --ix-fees-border: #e5e7eb;
  --ix-fees-sep: #e5e7eb;
  --ix-fees-text: #111827;
  --ix-fees-sub: #6b7280;
  --ix-fees-accent: #10b981; 
  --ix-fees-accent-2: #22c55e; 
  --ix-fees-accent-3: #0ea5e9; 
  --ix-fees-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  --ix-fees-radius: 16px;
}
.second-section .lets-see {
  line-height: 1.25;
  white-space: normal;
  letter-spacing: normal; 
  word-spacing: 0.05em;
}
@media (max-width: 1280px){.second-section .lets-see {
    font-size: clamp(1.25rem, 2vw + 1rem, 2rem);
    max-width: 70ch;
    margin: 24px auto 12px;
    text-align: center;
  }}
@media (max-width: 480px){.second-section .lets-see {
    margin: 16px auto 8px;
  }}
@media (max-width: 1024px){.accordion-container #accordion,
  #accordion {
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 12px !important;
    padding-inline: 16px;
  }.accordion-container #accordion > li,
  #accordion > li {
    grid-column: 1 / -1 !important; 
    width: 100% !important;
    margin: 0 !important;
  }}
@media (max-width: 1024px){.footer-top-27 {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    gap: 20px; 
  }.footer-logo-27 {
    display: flex;
    justify-content: center;
    width: 100%;
  }.footer-links-27 {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-evenly; 
    width: 100%;
    gap: 16px;
  }.footer-links-27 ul {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }.footer-links-27 li {
    list-style: none;
  }.footer-links-27 a.footer-words {
    font-size: 14px;
    text-align: center;
  }}
@media (max-width: 1024px){.hero-text_1 h1 {
    text-align: center;
  }}
@media (max-width: 1024px){.hero {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 2rem 1rem;
  }.hero-image {
    order: -1; 
    margin: 0 auto;
    max-width: 100%;
    min-width: 0; 
  }.hero-image img {
    display: block;
    margin: 0 auto;
    width: min(420px, 90vw);
    max-width: 100%;
    height: auto;
    min-width: 0; 
  }.hero-text p {
    font-size: clamp(18px, 2.6vw + 0.4rem, 22px);
    text-align: center;
  }}
@media (max-width: 768px){.hero {
    gap: 12px;
    padding: 1.5rem 1rem;
  }.hero-image img {
    width: min(220px, 88vw);
  }}
.testimonial-container {
  margin-top: 24px; 
}
@media (max-width: 1024px){.testimonial-item {
    width: 60%;
    padding: 16px;
  }}
@media (max-width: 768px){.testimonial-item {
    width: 85%;
    padding: 16px;
  }.testimonial-list {
    gap: 8px;
  }}
@media (max-width: 1024px){.our-mission-spot {
    padding: 0 15px;
  }.our-mission-spot-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center; 
  }.our-mission-spot-body-1,
  .our-mission-spot-body-2,
  .our-mission-spot-body-3 {
    max-width: 600px; 
    width: 100%; 
    margin-inline: auto; 
    box-sizing: border-box;
  }.our-mission-spot-body-1,
  .our-mission-spot-body-2 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }.our-mission-spot-body-1 p,
  .our-mission-spot-body-2 p,
  .our-mission-spot-body-3 p {
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem); 
    line-height: 1.6;
  }.our-mission-spot-body-1 dotlottie-player,
  .our-mission-spot-body-2 dotlottie-player,
  .our-mission-spot-body-3 dotlottie-player {
    max-width: 90%;
    height: auto !important;
  }.our-mission-spot-body-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }.our-mission-spot-body-3 .left {
    width: 100%;
    text-align: center;
    order: 1; 
  }.our-mission-spot-body-3 .right {
    width: 100%;
    display: flex;
    justify-content: center;
    order: 2; 
  }#end-button {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    order: 3; 
  }}
.our-mission-spot {
  max-width: 1320px; 
  margin: 0 auto; 
  padding: 10px 15px 50px; 
  background: rgb(245, 248, 244);
  box-sizing: border-box; 
}
@media (max-width: 1024px){.our-mission-spot {

    padding: 10px 15px 50px; 
    margin-top: 30px !important;

    border-top: 1px solid transparent;
  }}
@media (max-width: 768px){.our-mission-spot-body-1 h2,
  .our-mission-spot-body-2 h2,
  .our-mission-spot-body-3 h2 {
    font-size: 1.4rem;
  }.our-mission-spot-body-1 p,
  .our-mission-spot-body-2 p,
  .our-mission-spot-body-3 p {
    font-size: 0.95rem;
    line-height: 1.4;
  }.our-mission-spot-body {
    gap: 20px;
  }}
@media (max-width: 1024px){.our-mission-spot-body-3 {
    display: flex;
    flex-direction: column;
  }.our-mission-spot-body-3 .left {
    display: contents;
  }.our-mission-spot-body-3 .left > :not(#end-button) {
    order: 1;
  }.our-mission-spot-body-3 .right {
    order: 2;
  }#end-button {
    order: 3;
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }}
@media (max-width: 1024px){.our-mission-spot-body h2 {
    margin-left: 0; 
    width: auto; 
    text-align: left; 
  }.our-mission-spot-body-1,
  .our-mission-spot-body-2,
  .our-mission-spot-body-3 {
    padding-inline: 15px; 
  }.our-mission-spot-body p {
    margin-left: 0;
    margin-right: 0;
  }}
.benefits-container {
  max-width: 1320px;
  width: 100%;
  margin-inline: auto; 
  padding: 20px; 
  padding-inline: 15px; 
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  box-sizing: border-box;
}
@media (max-width: 1024px){.benefits-container {
    max-width: 600px; 
    margin-inline: auto; 
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 18px;
    text-align: left;
  }.benefits-container > .left,
  .benefits-container > .right {
    width: 100%;
  }.benefits-container > .left:has(dotlottie-player),
  .benefits-container > .right:has(dotlottie-player) {
    order: 2;
    display: flex;
    justify-content: center; 
  }.benefits-container > .left:has(h3),
  .benefits-container > .left:has(p),
  .benefits-container > .right:has(h3),
  .benefits-container > .right:has(p) {
    order: 1;
  }.benefits-container dotlottie-player {
    max-width: 260px;
    width: 100%;
    height: auto !important;
  }.benefits-container h3 {
    font-size: 1.25rem; 
    line-height: 1.3;
    margin-bottom: 8px;
  }.benefits-container p {
    font-size: 1rem;
    line-height: 1.5;
  }}
@media (max-width: 768px){.benefits-container {
    gap: 14px;
  }.benefits-container dotlottie-player {
    max-width: 200px;
  }.benefits-container h3 {
    font-size: 1.15rem; 
  }.benefits-container p {
    font-size: 0.95rem;
    line-height: 1.45;
  }}
.our-mission-spot-body-texts {
  font-weight: 500;
  text-align: left;
}
@media (max-width: 1024px){.our-mission-spot-body,
  .our-mission-spot-body-1,
  .our-mission-spot-body-2,
  .our-mission-spot-body-3 {
    min-width: 0; 
  }.our-mission-spot-body-1 dotlottie-player,
  .our-mission-spot-body-2 dotlottie-player,
  .our-mission-spot-body-3 dotlottie-player {
    width: 100% !important; 
    max-width: 100% !important;
    height: auto !important;
  }.our-mission-spot-body-3 .left,
  .our-mission-spot-body-3 .right {
    min-width: 0;
  }}
@media (max-width: 1024px){#second-section-inline {
    margin-left: 0; 
    margin-right: 0; 
    text-align: center;
  }#second-section-inline h2 {

    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.25;
    letter-spacing: 0.2px;
  }#second-section-inline .auxiliar-h3 {
    font-size: clamp(1.05rem, 2.4vw, 1.2rem);
    line-height: 1.5;
    margin-top: 8px;
  }.section-4 {
    margin-left: 0;
    margin-right: 0;
  }.section-4-alternatives-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-inline: 15px;
  }.section-4-alternatives-grid .item {
    min-width: 0;
    padding: 16px;
    border: 1px dashed #ccc; 
    border-radius: 0; 
    text-align: center;
    background: #fff; 
    max-width: none; 
    margin: 0;
    flex: unset;
    width: 100%;
  }.section-4-alternatives-grid .item p {
    font-size: 1rem;
    line-height: 1.5;
  }.section-4-alternatives-grid .item > div[class$="-bar"] {
    width: 100%;
    max-width: 100%;
    height: 10px;
  }}
@media (max-width: 768px){#second-section-inline h2 {
    font-size: 1.7rem; 
  }#second-section-inline .auxiliar-h3 {
    font-size: 1.3rem;
  }.section-4-alternatives-grid {
    display: grid;
    grid-template-columns: 1fr; 
    justify-content: center; 
    gap: 15px; 
    padding-inline: 15px; 
  }.section-4-alternatives-grid .item {
    width: 100%;
    max-width: 420px; 
    margin: 0 auto; 
    padding: 14px;
  }}
.titulos-aux {
  text-align: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
  font-size: clamp(2.75rem, 5vw, 4rem) !important;
  font-weight: 500 !important;
  font-family: Outfit, Arial !important;
  position: relative !important;
  line-height: 110% !important;
  letter-spacing: -3px !important;
  margin-top: 20px !important;
  text-transform: capitalize !important;
  color: black !important;
  margin-top: 50px !important;
  padding-inline: clamp(15px, 5vw, 50px) !important;
}
.titulos-aux-h1 {
  text-align: center !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  margin-bottom: 20px !important;
  font-size: clamp(3rem, 5vw, 5.5rem) !important;
  font-weight: 500 !important;
  font-family: Outfit, Arial !important;
  position: relative !important;
  line-height: 110% !important;
  letter-spacing: -3px !important;
  text-transform: capitalize !important;
  color: black !important;
  margin-top: 60px !important;
  padding-inline: clamp(15px, 5vw, 50px) !important;
}
@media (max-width: 768px){.titulos-aux-h1 {
    margin-top: 10px !important; 
  }}
@media (max-width: 1024px){.results-container {

    margin-inline: 15px !important;
    margin-block: 30px;

    max-width: calc(100% - 30px);
    width: auto;

    box-sizing: border-box;
  }.results-container-child {
    display: grid;
    grid-template-columns: 1fr; 
  }.results-container-child .child-2 {
    width: 100%;
    margin: 0;
    border-right: none !important;
  }.results-container-child .half {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 8px 6px;
  }#results-special-background {
    font-size: clamp(22px, 5.5vw, 28px);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
  }#results-title {
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.25;
    letter-spacing: -0.25px;
    text-align: center;
  }.values-title-results {
    font-size: clamp(20px, 5.2vw, 28px);
    line-height: 1.2;
    text-align: center;
  }}
@media (max-width: 768px){.results-container {

    margin-inline: 15px !important;
    margin-block: 30px;

    max-width: calc(100% - 30px);
    width: auto;

    box-sizing: border-box;
  }.results-container-child .child-2 {
    padding: 10px 8px;
  }}
.comparison-box-21:has(#donut-chart-21) {
  display: block; 
  text-align: center;
}
#donut-chart-21 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.donut-svg-21 {
  width: 150px;
  height: 150px;
  max-width: 150px;
  max-height: 150px;
}
@media (max-width: 1024px){#comparison-container-21 {
    max-width: 650px; 
    width: calc(100% - 30px); 
    margin-inline: auto; 
    box-sizing: border-box;
  }.comparison-left-21 {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border: 1px dashed #ccd3db;
    padding: 16px;
    box-sizing: border-box;
  }#comparison-right-21 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0; 
    max-width: 650px;
    width: 100%;
    margin: 0 auto; 
  }.comparison-box-21 {
    border: 1px dashed #ccc;
    padding: 14px;
    box-sizing: border-box;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
  }#comparison-box-value-21-align-tra {
    align-self: center;
    margin: 8px 0 0 0; 
  }#comparison-left-title-21 {

    font-size: clamp(20px, 4.2vw, 28px);
  }#comparison-left-descrip-21 {
    font-size: clamp(14px, 3.6vw, 18px);
  }#comparison-left-amount-21 {

    font-size: clamp(36px, 6vw, 56px);
  }#comparison-left-unit-21 {
    font-size: clamp(14px, 3.6vw, 18px);
  }.comparison-box-title-21 {
    font-size: clamp(16px, 3.6vw, 20px);
  }.comparison-box-value-21 {
    font-size: clamp(22px, 5vw, 36px);
  }.comparison-box-sub-21,
  .comparison-box-desc-21 {
    font-size: clamp(14px, 2.5vw, 16px) !important;
    line-height: 1.45;
  }.comparison-box-score-21 {

    font-size: clamp(20px, 5vw, 32px);
  }}
@media (max-width: 480px){.comparison-left-21,
  #comparison-right-21 {
    max-width: 100%;
  }}
@media (max-width: 480px){#comparison-container-21 {
    width: calc(100% - 30px);
    max-width: 650px;
    margin-inline: auto;
    flex-direction: column;
  }#comparison-right-21 {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 0; 
    min-width: 0;
  }.comparison-left-21,
  .comparison-box-21 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere; 
  }.comparison-box-value-21 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
    line-height: 1.1;
  }#donut-chart-21 {
    width: min(180px, 70vw); 
    height: auto;
    margin: 0 auto;
    display: grid;
    place-items: center;
  }.donut-svg-21 {
    width: 100%;
    height: auto;
  }#comparison-box-value-21-align-tra {
    display: grid;
    place-items: center; 
    min-height: 3.5rem; 
    margin: 0; 
    line-height: 1.1;
  }}
@media (max-width: 1024px){.container-results {
    display: flex;
    flex-direction: column-reverse; 
    align-items: center;
    gap: 20px;
    padding-inline: 15px; 
    text-align: center;
  }.container-results-left,
  .container-results-right {
    width: 100%;
    max-width: 650px; 
    margin: 0 auto;
  }.container-results-right img.jane-happy {
    width: 100%;
    max-width: 300px; 
    height: auto;
    margin: 0 auto;
    display: block;
  }.container-results-left .hero-buttons {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }}
@media (max-width: 768px){.container-results {
    gap: 15px;
  }.container-results-left h1 {
    font-size: 1.8rem; 
  }.container-results-left p {
    font-size: 1rem; 
    line-height: 1.5;
  }.container-results-right img.jane-happy {
    max-width: 250px; 
  }}
@media (max-width: 768px){.second-section #features-grid-22 {
    grid-template-columns: 1fr !important; 
    grid-template-rows: auto !important; 
    gap: 20px;
    padding: 15px; 
  }.second-section #features-grid-22 .feature-card-22 {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }}
@media (max-width: 768px){.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px; 
  }.nav-links,
  .get-started {
    display: none !important;
  }.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #000;
    margin: 4px 0;
    transition: transform 0.2s ease;
  }.mobile-menu {
    display: none;
    position: fixed;
    top: 60px; 
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px dashed #ccc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }.mobile-menu.open {
    display: block;
  }.mobile-menu ul {
    list-style: none;
    padding: 10px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }.mobile-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    padding: 10px 0;
  }}
@media (max-width: 768px){.navbar {
    min-height: 60px;
  }.mobile-menu {
    top: 72px; 
    border-top: 1px dashed #ccc;
  }.mobile-menu ul {
    list-style: none;
    padding: 12px 15px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0; 
  }.mobile-menu ul li {
    border-bottom: 1px dashed #ddd;
  }.mobile-menu ul li:last-child {
    border-bottom: 0;
  }.mobile-menu ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 1.1rem; 
    padding: 12px 0; 
  }.hamburger {
    width: 44px;
    height: 44px;
    position: relative;
    display: inline-block;
    line-height: 0; 
    background: #fff;
  }.hamburger span,
  .hamburger .line {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transform: translateX(-50%); 
    transform-origin: 50% 50%; 
    transition:
      transform 0.22s ease,
      top 0.22s ease,
      opacity 0.18s ease;
  }.hamburger span:nth-child(1),
  .hamburger .line:nth-child(1) {
    top: 12px;
  }.hamburger span:nth-child(2),
  .hamburger .line:nth-child(2) {
    top: 20px;
  }.hamburger span:nth-child(3),
  .hamburger .line:nth-child(3) {
    top: 28px;
  }.hamburger.open span:nth-child(1),
  .hamburger.open .line:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
  }.hamburger.open span:nth-child(2),
  .hamburger.open .line:nth-child(2) {
    opacity: 0;
  }.hamburger.open span:nth-child(3),
  .hamburger.open .line:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
  }}
@media (min-width: 769px){.mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: none !important;
  }.hamburger {
    display: none !important;
  }.nav-links {
    display: flex !important;
  }.get-started {
    display: inline-flex !important;
  }}
@media (max-width: 768px){.nav-links {
    display: none !important;
  }.get-started {
    display: none !important;
  }.mobile-menu {
    position: absolute;
    top: 64px; 
    left: 15px;
    right: 15px;
    display: none;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }.mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }}
@media (min-width: 1025px){#Fynia-adv-main-chart-1 .Fynia-adv-middle-top {
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }}
@media (min-width: 1025px){#Fynia-adv-main-chart-1 .Fynia-adv-middle-top {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }}
#Fynia-monthly-title-7 {
  padding-inline: 15px !important;
}
@media (max-width: 1024px){#child-end .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; 
  }#child-end .hero-buttons .btn {
    flex: 0 1 auto;
    min-width: min(240px, 100%);
  }}
@media (max-width: 768px){#child-end .hero-buttons .btn {
    width: 100%; 
  }}
@media (max-width: 480px){#child-end .hero-buttons {
    gap: 8px;
  }}
@media (max-width: 768px){html,
  body {
    overflow-x: clip;
  }}
.page-sticky-27 {
  min-height: 100svh; 
  display: flex;
  flex-direction: column;
}
.page-sticky-27 > .site-footer-27 {
  margin-top: auto; 
  flex-shrink: 0;
  width: 100%;
}
.hero-disclaimer {

  text-align: center !important;

  display: block !important;
  width: 100% !important;
  max-width: 62ch !important;
  margin: 12px auto 0 !important;

  padding: 0 12px !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
  color: rgba(0, 0, 0, 0.62) !important;
}
@media (max-width: 1024px){.hero-disclaimer {
    margin-top: 10px !important;
    font-size: 12px !important;
  }}
@media (max-width: 768px){.hero-disclaimer {
    margin-top: 8px !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    max-width: 34ch !important; 
  }}
.hero-benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 22px auto 0 !important;
  width: 100% !important;
  max-width: 560px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  padding-left: 44px !important; 
}
.hero-benefits li {
  position: relative !important;
  padding-left: 34px !important;
  font-size: 19px !important; 
  line-height: 1.35 !important;
  color: rgba(0, 0, 0, 0.82) !important;
  font-weight: 400 !important;
}
.hero-benefits li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  transform: translateY(1px) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #00b86b !important;
}
.hero-price-row {
  margin-top: 18px !important;
  width: 100% !important;
  max-width: 820px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}
.hero-price-row::before,
.hero-price-row::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: rgba(0, 0, 0, 0.12) !important;
}
.hero-price-text {
  font-size: 16px !important;
  line-height: 1.2 !important;
  color: rgba(0, 0, 0, 0.78) !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}
.hero-divider {
  margin-top: 14px !important;
  width: 100% !important;
  max-width: 820px !important;
  height: 1px !important;
  background: rgba(0, 0, 0, 0.12) !important;
}
.hero-disclaimer {
  margin: 14px auto 0 !important;
  max-width: 62ch !important;
  padding: 0 12px !important;
  font-size: 13px !important; 
  line-height: 1.35 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}
@media (max-width: 1024px){.hero-benefits li {
    font-size: 15px !important;
  }.hero-price-text {
    font-size: 15px !important;
  }.hero-disclaimer {
    font-size: 12px !important;
  }}
@media (max-width: 768px){.hero-benefits {
    margin-top: 18px !important;
    gap: 12px !important;
  }.hero-benefits li {
    font-size: 14px !important;
    padding-left: 30px !important;
  }.hero-benefits li::before {
    font-size: 17px !important;
  }.hero-price-text {
    font-size: 14px !important;
    white-space: normal !important; 
    text-align: center !important;
  }.hero-price-row {
    gap: 10px !important;
  }.hero-disclaimer {
    font-size: 11px !important;
    line-height: 1.4 !important;
    max-width: 42ch !important;
  }}
.index-p-1 {
  color: #000 !important;
  font-family: "Outfit", Arial, sans-serif !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 !important;
  font-size: 2rem !important;
  font-weight: 500 !important;
}
.index-porcentajes-1 {
  font-size: 50px !important;
  font-weight: 500 !important;
  color: #00b86b !important;
  margin-bottom: 10px !important;
  font-family: "Outfit", Arial, sans-serif !important;
  text-align: center !important;
}
.index-efficiency-1 {
  font-size: 20px !important;
  font-weight: 400 !important;
  margin-top: -30px !important;
}
h3.index-example-container {
  font-weight: 600 !important;
  text-align: left !important;
  font-size: 44px;
}
#results-special-background {
  background-color: rgb(245, 248, 244);
  font-size: 2em;
  font-weight: bold;
  border: 1px dashed #ccc;
  color: black;
  margin: 0 auto;
  line-height: 46px;
  text-align: center;
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 10px;
}
.values-title-results {
  font-size: 50px;
  padding: 0px;
  padding-top: 15px;
  font-family: Outfit, Arial;
  font-weight: 700;
  color: #00b86b;
  text-align: center;
}
.index-greatnews {
  font-size: 40px;
  text-align: left;
  color: #000;
  font-family: "Outfit", Arial;
}
.index-prices-times {
  color: #00b86b;
  font-size: 2em;
  font-family: "Outfit", Arial;
  margin-bottom: 10px;
  font-weight: bold;
}
.fynia-green {
  color: #00b86b;
}
.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
}
.fynia-green {
  color: #00b86b;
}
.fynia-semibold {
  font-weight: 600;
}
.text-black {
  color: #000 !important;
}
.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lottie-350 {
  width: 350px;
  height: 350px;
}
.lottie-400 {
  width: 400px;
  height: 400px;
}
.page-sticky-27 > .site-footer-27.footer-compact-updated {
  margin-top: auto; 
  padding-top: 18px;
  padding-bottom: 18px;
}
.site-footer-27.footer-compact-updated .footer-divider-27 {
  margin: 14px 0;
}
.learn-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px dashed #ccc;
  padding: 24px 22px;
  min-height: 320px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.learn-card:hover {
  border-color: #00c853;
  background-color: rgb(245, 248, 244);
  transform: translateY(-2px);
}
.learn-card-label {
  display: inline-block;
  width: fit-content;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00b86b;
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 7px 10px;
  margin-bottom: 18px;
}
.learn-card h3 {
  text-align: left;
  font-family: Outfit, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
  color: #000;
  margin-bottom: 16px;
}
.learn-card h3 a {
  transition: color 0.2s ease;
}
.learn-card h3 a:hover {
  color: #00b86b;
}
.learn-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #425366;
  margin-bottom: 24px;
}
.learn-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px dashed #ccc;
  padding-top: 14px;
}
.learn-card-footer span {
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #425366;
}
.learn-card-footer a {
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00b86b;
}
.learn-card-footer a:hover {
  color: #000;
}
@media (max-width: 1024px){.learn-card h3 {
    font-size: 26px;
  }}
@media (max-width: 768px){.learn-intro-card,
  .learn-card {
    padding: 20px 18px;
  }.learn-card h3 {
    font-size: 24px;
  }.learn-card p,
  .learn-cluster-head p {
    font-size: 17px;
  }.learn-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }}
@media (max-width: 480px){.learn-kicker,
  .learn-pill,
  .learn-card-label {
    font-size: 13px;
  }.learn-main-subtitle,
  .learn-card p,
  .learn-cluster-head p,
  .learn-cta-panel p {
    font-size: 16px;
  }.learn-intro-card h2,
  .learn-card h3 {
    font-size: 22px;
  }}
@media (max-width: 768px){.learn-article-hero-actions .btn {
    width: 100%;
    text-align: center;
  }}
.home-learn-section {
  background-color: white;
  padding-top: 30px;
  padding-bottom: 50px;
}
.home-learn-container {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.home-learn-header {
  margin-bottom: 24px;
}
.home-learn-subtitle {
  background: white !important;
}
.home-learn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.home-learn-grid .learn-card {
  min-width: 0;
  height: 100%;
}
.home-learn-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 10px;
}
@media (max-width: 1024px){.home-learn-container {
    width: calc(100% - 30px);
  }.home-learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }}
@media (max-width: 768px){.home-learn-section {
    padding-top: 20px;
    padding-bottom: 35px;
  }.home-learn-grid {
    grid-template-columns: 1fr;
  }.home-learn-cta {
    margin-top: 22px;
    margin-bottom: 0;
  }.home-learn-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }}
@media (max-width: 480px){.home-learn-container {
    width: calc(100% - 20px);
  }}
.section-4 {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
  background-color: rgb(245, 248, 244);
  box-sizing: border-box;
}
.section-4-alternatives-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
@media (max-width: 1024px){.section-4-alternatives-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 768px){.section-4 {
    width: calc(100% - 20px);
  }.section-4-alternatives-grid {
    grid-template-columns: 1fr;
  }}
@media (max-width: 768px){.plo-bottom-actions .btn,
  .plo-hero-actions .btn {
    width: 100%;
    text-align: center;
  }}
@media (max-width: 768px){.alo-bottom-actions .btn,
  .alo-hero-actions .btn {
    width: 100%;
    text-align: center;
  }}
.home-loan-types-section {
  padding: 40px 0 50px;
  background-color: white;
}
.home-loan-types-container {
  max-width: 1320px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.home-loan-types-header {
  margin-bottom: 24px;
}
.home-loan-types-subtitle {
  background: white !important;
}
.home-loan-types-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}
.home-loan-type-card {
  background-color: rgb(245, 248, 244);
  border: 1px dashed #ccc;
  padding: 24px 22px;
  min-width: 0;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}
.home-loan-type-card:hover {
  border-color: #00c853;
  background-color: white;
  transform: translateY(-2px);
}
.home-loan-type-label {
  display: inline-block;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #00b86b;
  background-color: white;
  border: 1px dashed #ccc;
  padding: 7px 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.home-loan-type-card h3 {
  text-align: left;
  font-family: Outfit, Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  color: #000;
  margin-bottom: 12px;
}
.home-loan-type-card h3 a {
  color: #000;
  text-decoration: none;
}
.home-loan-type-card h3 a:hover {
  color: #00b86b;
}
.home-loan-type-card p {
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  color: #425366;
  margin-bottom: 16px;
}
.home-loan-type-meta {
  margin-bottom: 14px;
}
.home-loan-type-meta span {
  display: inline-block;
  font-family: Outfit, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #425366;
}
.home-loan-type-footer a {
  font-family: Outfit, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #00b86b;
  text-decoration: none;
}
.home-loan-type-footer a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px){.home-loan-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}
@media (max-width: 768px){.home-loan-types-section {
    padding: 30px 0 38px;
  }.home-loan-types-grid {
    grid-template-columns: 1fr;
  }.home-loan-type-card h3 {
    font-size: 24px;
  }.home-loan-type-card p {
    font-size: 17px;
  }}
@media (max-width: 480px){.home-loan-types-container {
    width: calc(100% - 20px);
  }.home-loan-type-label {
    font-size: 12px;
  }.home-loan-type-card h3 {
    font-size: 22px;
  }.home-loan-type-card p {
    font-size: 16px;
  }}
.optifix-wrap {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.optifix-img {
  display: block;
  max-height: 100%;
  width: auto;
  height: auto;
}
.benefits-container .benefit-media .center-flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-container .benefit-media img.benefit-illustration {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto;
}
@media (min-width: 1025px){.benefits-container .benefit-text,
  .benefits-container .benefit-media {
    width: 50%;
  }.benefits-container .benefit-media {
    display: flex;
    align-items: center;
    justify-content: center;
  }.benefits-container .benefit-media img.benefit-illustration {
    width: min(100%, 520px);
  }}
@media (max-width: 1024px){.benefits-container .benefit-text,
  .benefits-container .benefit-media {
    width: 100%;
  }.benefits-container .benefit-text {
    order: 1;
  }.benefits-container .benefit-media {
    order: 2;
    display: flex;
    justify-content: center;
  }.benefits-container .benefit-media img.benefit-illustration {
    width: min(100%, 380px);
  }}
@media (max-width: 768px){.benefits-container .benefit-media img.benefit-illustration {
    width: min(100%, 300px);
  }}
@media (max-width: 480px){.benefits-container .benefit-media img.benefit-illustration {
    width: min(100%, 250px);
  }}