@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #212121;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #212121;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

a {
  color: #1B9CDD;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1em;
}

h2 {
  font-weight: 700;
  font-size: 1.75rem;
}

h3 {
  font-weight: 700;
  font-size: 1.25rem;
}

h4 {
  font-weight: 700;
  font-size: 1rem;
}

p {
  font-weight: 400;
}

strong {
  font-weight: 500;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 2rem 0;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.btn-primary {
  background-color: #1B9CDD;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.btn-primary:hover {
  background-color: rgb(24.2237903226, 139.9596774194, 198.2762096774);
  text-decoration: none;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.337254902));
  transform: translateY(-5px);
}

.btn-white {
  background-color: #ffffff;
  color: #212121;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.btn-white:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  text-decoration: none;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.337254902));
  transform: translateY(-5px);
}

.btn-dark {
  background-color: #212121;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.btn-dark:hover {
  background-color: rgb(20.25, 20.25, 20.25);
  text-decoration: none;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.337254902));
  transform: translateY(-5px);
}

.btn-outlined-white {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.btn-outlined-white:hover {
  background-color: rgba(0, 0, 0, 0.1411764706);
  text-decoration: none;
  transform: translateY(-5px);
}

.card {
  background-color: #F1F3F2;
  border-radius: 40px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card h4,
.card p {
  margin: 0;
}
.card p,
.card span {
  color: #4B5563;
}
.card svg {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  text-align: center;
  fill: #212121;
}
.card .card-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.card .card-user img {
  height: 48px;
  width: 48px;
}
.card .card-user span {
  opacity: 0.5;
}

.card-dark {
  background-color: #212121;
}
.card-dark p, .card-dark h1, .card-dark h2, .card-dark h3, .card-dark h4, .card-dark span {
  color: #ffffff;
}
.card-dark p, .card-dark span {
  opacity: 0.8;
}

.accordion-main {
  background-color: #212121;
  color: #ffffff;
  cursor: pointer;
  padding: 40px 35px;
  border-radius: 40px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1em;
  font-weight: 500;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}
.accordion-main svg {
  margin-right: 1em;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.accordion-main.active, .accordion-main:hover {
  background-color: rgb(7.5, 7.5, 7.5);
}
.accordion-main.active {
  border-radius: 40px 40px 0 0;
}
.accordion-main.active svg {
  transform: rotate(180deg);
}

.accordion-panel {
  padding: 10px 35px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background-color: #F1F3F2;
  border-radius: 0 0 40px 40px;
  transform: translateY(-20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.accordion-panel.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
}

h1.demo {
  color: #ffffff;
  padding: 20% 0;
  text-align: center;
}

.sectionPad {
  padding-top: 50px;
  padding-bottom: 50px;
}

#beneficios,
#como-funciona,
#testimonios,
#planes {
  scroll-margin-top: 100px;
}

header {
  background-color: #212121;
  border: 30px solid white;
  border-radius: 70px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.topBar {
  padding: 50px;
  color: #ffffff;
  transition: padding 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .topBar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 70px;
    background-color: #212121;
    transition: padding 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.337254902));
  }
}
@media (max-width: 768px) {
  .topBar .btn-white {
    display: none;
  }
}
@media (max-width: 768px) {
  .topBar .logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.topBar .menuIcon {
  display: none;
  background-color: #ffffff;
  padding: 5px 10px 6px;
  border-radius: 5px;
  color: #212121;
}
@media (max-width: 768px) {
  .topBar .menuIcon {
    display: inline-block;
  }
}
.topBar .menuIcon svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  stroke: #212121;
}

.mainNavbar {
  margin: 0 10px;
}
@media (max-width: 768px) {
  .mainNavbar {
    display: none;
  }
}
.mainNavbar a {
  color: #ffffff;
  padding: 10px 20px;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 768px) {
  .mainNavbar a {
    display: block;
    text-align: center;
  }
}
.mainNavbar a:hover {
  text-decoration: none;
  transform: translateY(-5px);
}
.mainNavbar a.active, .mainNavbar a[aria-current=true] {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
}
.mainNavbar .mobileMenu {
  display: none;
}
@media (max-width: 768px) {
  .mainNavbar .mobileMenu {
    display: block;
  }
}
.mainNavbar.menuOpen {
  display: block;
}

.logo img {
  max-height: 50px;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 70px;
  background-color: #212121;
  transition: padding 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.337254902));
  z-index: 100;
}

#hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 750px;
  margin: -50px auto 0;
  text-align: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 0 50px;
    z-index: inherit;
    margin: 0 auto;
  }
}
.hero-content h1, .hero-content p {
  color: #ffffff;
  margin-bottom: 30px;
}
.hero-content h1 {
  font-size: 3em;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2em;
  }
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }
}

.hero-media {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-media {
    display: none;
  }
}
.hero-media img {
  max-height: 250px;
  width: auto;
}

.beneficios-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
@media (max-width: 768px) {
  .beneficios-cards {
    grid-template-columns: 1fr;
  }
}

#como-funciona h1 {
  text-align: center;
}

.como-pasos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0;
  text-align: center;
  position: relative;
}
.como-pasos::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 20%;
  right: 20%;
  border-top: 3px dashed #F1F3F2;
  z-index: 0;
}
@media (max-width: 768px) {
  .como-pasos {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .como-pasos::before {
    content: none;
  }
}

.como-item {
  position: relative;
  padding: 0 60px;
  z-index: 1;
}
.como-item h1,
.como-item h2,
.como-item h3,
.como-item h4,
.como-item svg {
  margin-bottom: 20px;
}
.como-item p {
  margin: 0;
}

#conoce .infinite-slider {
  overflow: hidden;
  position: relative;
}
#conoce .track {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  will-change: transform;
  animation-name: scroll-x;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#conoce .slide {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
#conoce .slide img {
  display: block;
  height: clamp(380px, 45vh, 517px);
  width: auto;
  aspect-ratio: 280/517;
  object-fit: cover;
}
#conoce .infinite-slider:hover .track,
#conoce .infinite-slider:focus-within .track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  #conoce .track {
    animation: none;
  }
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--scroll-end, -50%));
  }
}
#planes h1 {
  margin-bottom: 0.25em;
}
#planes .subtitle {
  margin-bottom: 2.5em;
}

.planes-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 5vw, 40px);
}
@media (max-width: 768px) {
  .planes-container {
    grid-template-columns: 1fr;
  }
}
.planes-container .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.planes-container .card h2 {
  margin: 1em 0;
}

.plan-features {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 1em;
  list-style: none;
}
.plan-features li {
  color: #1B9CDD;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: bold;
}

h2.precio span {
  font-size: 0.5em;
  font-weight: 400;
}

p.precio--obs {
  margin-bottom: 2em;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 5vw, 40px);
  margin-top: 3em;
}
@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
  }
}

.card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 5vw, 40px);
}
@media (max-width: 768px) {
  .card-body {
    grid-template-columns: 1fr;
  }
}
.card-body .card-body-col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 5vw, 40px);
  justify-content: end;
}

#cta .card {
  gap: clamp(30px, 10vw, 80px);
}
#cta .card h1 {
  font-weight: 300;
  padding-bottom: 10%;
}
@media (max-width: 768px) {
  #cta .card h1 {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  #cta .card p {
    text-align: left;
  }
}
@media (max-width: 768px) {
  #cta .card a {
    display: block;
  }
}

#footer {
  border: 30px solid white;
  border-radius: 70px;
  color: #ffffff;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: clamp(16px, 5vw, 40px);
}
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer-content a {
  color: #ffffff;
  opacity: 0.8;
}
.footer-content a:hover {
  opacity: 1;
  transition: 1s ease;
}
.footer-content img, .footer-content p, .footer-content h4 {
  margin-bottom: 1.5rem;
}
.footer-content li {
  margin-bottom: 0.5rem;
  list-style: none;
}

.footer-copyright {
  text-align: center;
  border-top: 1px solid rgba(27, 156, 221, 0.1215686275);
  margin: 0 -50px -50px;
  padding: 2em;
}
.footer-copyright span {
  opacity: 0.5;
}

.logo-footer {
  max-width: 150px;
  height: auto;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.social-links img {
  width: 21px;
  height: 22px;
}
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}

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