@charset "UTF-8";
.main {
  position: relative; }

.main section {
  position: relative; }

.main section.slogan {
  background: var(--primary-dark) !important;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px 0;
  text-align: center;
  z-index: 3; }

.main section.slogan .title {
  line-height: 1em;
  font-size: 64px;
  background: var(--primary-dark); }

.main section.slogan .subtitle {
  line-height: 1.5em;
  font-weight: 300;
  font-size: 32px;
  background: var(--primary-dark); }

@media (max-width: 768px) {
  .main section.slogan .title {
    font-size: 34px;
    line-height: 1.2em; }
  .main section.slogan .subtitle {
    font-size: 24px;
    line-height: 1.2em; } }

.main section.prices {
  background: var(--primary-light);
  padding: 50px 0; }

.main section.prices .title {
  line-height: 1.2em;
  font-weight: 300;
  font-size: var(--text-size-xl);
  color: var(--primary-dark);
  text-align: center;
  font-size: 32px;
  z-index: 3; }

.main section.prices .title b {
  font-weight: bold; }

@media (max-width: 768px) {
  .main section.prices .title {
    font-size: 28px; } }

.main section.prices .period {
  display: flex;
  justify-content: center;
  align-items: center; }

.main section.prices .period .options {
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  background: var(--primary-dark);
  margin: auto;
  list-style: none;
  display: inline-flex;
  justify-content: center;
  align-items: center; }

.main section.prices .period .options .option {
  border-radius: 15px;
  background: inherit;
  color: white;
  position: relative; }

.main section.prices .period .options .option .btn {
  background: inherit;
  border-radius: inherit;
  color: inherit;
  font-weight: inherit;
  border: none !important; }

.main section.prices .period .options .option.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: bold; }

.main section.prices .period .options .option:nth-child(2) {
  margin: 0 10px; }

.main section.prices .period .options .option:nth-child(2):after, .main section.prices .period .options .option:nth-child(1):after {
  padding: 3px 10px;
  border-radius: 25px;
  background: var(--primary);
  position: absolute;
  top: -22px;
  right: -12px;
  color: white;
  font-weight: 400;
  font-size: 14px; }

.main section.prices .period .options .option:nth-child(2):after {
  content: '- 5%'; }

.main section.prices .period .options .option:nth-child(1):after {
  content: '- 10%'; }

@media (max-width: 768px) {
  .main section.prices .period .options .option .btn {
    font-size: 0.75rem; }
  .main section.prices .period .options .option:nth-child(n+1):after {
    font-size: 12px; } }

.main section.prices .cards {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0 !important; }

.main section.prices .cards .card {
  max-width: calc(100% / 5); }

@media (max-width: 1380px) {
  .main section.prices .cards .card {
    max-width: calc(100% / 4); }
  .main section.prices .cards .card:nth-child(5) {
    width: 100%;
    order: 1; } }

@media (max-width: 1080px) {
  .main section.prices .cards .card {
    max-width: calc(100% / 3); }
  .main section.prices .cards .card:nth-child(4), .main section.prices .cards .card:nth-child(5) {
    width: 100%;
    order: 1; } }

@media (max-width: 820px) {
  .main section.prices .cards {
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .main section.prices .cards .card {
    max-width: 320px; } }

.main section.prices .card {
  border-radius: 0px;
  padding: .25rem;
  background: none;
  border: none;
  border-radius: 50px;
  z-index: 2;
  min-height: 500px; }

.main section.prices .card-header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: white;
  text-align: center;
  padding: 15px 0;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.main section.prices .card-header-title {
  margin-bottom: 0;
  font-size: 24px; }

.main section.prices .card-header-subtitle {
  font-weight: lighter; }

.main section.prices .card-content {
  text-align: center;
  background: white;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 20px 10px 40px 10px;
  flex: 1 1 auto; }

.main section.prices .card-content-price {
  padding: 5px 15px;
  margin: 0px 0 10px 0;
  font-weight: 300;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -2px; }

.main section.prices .card-content-price b {
  padding-right: 5px;
  font-weight: bold; }

.main section.prices .card-content-price strong {
  font-size: 28px;
  font-weight: bold;
  padding-right: 5px; }

.main section.prices .card-content-price.recommend {
  background: var(--primary-light);
  border-radius: 25px; }

.main section.prices .card-content-total-price {
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.5em; }

.main section.prices .card-content-list {
  text-align: left;
  font-size: 14px;
  padding-left: 0px;
  padding-top: 10px;
  padding-bottom: 20px;
  list-style: none; }

.main section.prices .card-content-list li {
  padding-top: 5px; }

.main section.prices .card-content-list li::before {
  content: '➤';
  /* Usa una flecha como contenido */
  color: inherit;
  /* Color opcional para la flecha */
  margin-right: 8px;
  /* Espacio entre la flecha y el texto */ }

.main section.prices .card:nth-child(1) .card-content-price {
  letter-spacing: 0px; }

.main section.prices .card-footer {
  background: transparent;
  text-align: center;
  padding: 0;
  margin-top: -30px;
  border: none; }

.main section.prices .card-footer .btn {
  border: none;
  padding: 10px 20px;
  border-radius: 10px; }

@media (max-width: 768px) {
  .main section.prices .card {
    padding-left: 0; } }

.main section.prices .cloud-dark-top-left {
  position: absolute;
  top: 10%;
  left: -2%;
  z-index: 1; }

.main section.prices .cloud-dark-bottom-right {
  position: absolute;
  bottom: 5%;
  right: -2%;
  z-index: 1; }

.main section.prices .circle-top-right {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 35%;
  z-index: 1;
  transform: scaleX(-1); }

.main section.prices .circle-bottom-left {
  position: absolute;
  bottom: -30%;
  left: -20%;
  z-index: 1;
  width: 40%; }

.main section.plan {
  background: var(--secondary);
  padding: 50px 20px;
  overflow-x: hidden; }

.main section.plan .table {
  z-index: 2;
  position: relative;
  table-layout: fixed; }

.main section.plan .table thead {
  text-align: center;
  color: var(--primary-dark);
  font-size: 24px; }

.main section.plan .table thead th {
  border-color: var(--primary-light);
  vertical-align: top; }

.main section.plan .table thead .thead {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center; }

.main section.plan .table thead .thead small {
  font-size: 14px; }

.main section.plan .table tbody {
  text-align: center; }

.main section.plan .table tbody tr td:first-child {
  text-align: left;
  color: var(--primary);
  font-weight: lighter; }

.main section.plan .table tbody td {
  color: var(--primary-dark);
  font-weight: 400;
  border-color: var(--primary-light);
  vertical-align: middle; }

.main section.plan .table tbody .price {
  padding: 5px 15px;
  font-weight: 300;
  font-size: 14px;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin-top: 8px; }

.main section.plan .table tbody .price b {
  padding-right: 5px;
  font-weight: bold; }

.main section.plan .table tbody .price strong {
  font-size: 18px;
  font-weight: bold;
  padding-right: 5px;
  white-space: nowrap;
  letter-spacing: -0.5px; }

.main section.plan .table tbody .price.recommend {
  background: var(--primary-light);
  border-radius: 25px; }

.main section.plan .table tbody .btn {
  border: none;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 12px;
  white-space: nowrap; }

.main section.plan .table-mobile {
  display: none; }

.main section.plan .table-mobile tbody {
  text-align: center;
  font-size: 14px; }

.main section.plan .table-mobile tbody tr td:first-child {
  text-align: left;
  color: var(--primary);
  font-weight: lighter; }

.main section.plan .table-mobile tbody td {
  color: var(--primary-dark);
  font-weight: bold;
  border-top: 1px solid var(--primary-light);
  padding: 5px 0; }

.main section.plan .table-mobile tbody .price {
  padding: 5px 0px;
  font-weight: 300;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  margin-top: 8px;
  min-width: 120px; }

.main section.plan .table-mobile tbody .price b {
  padding-right: 5px;
  font-weight: bold; }

.main section.plan .table-mobile tbody .price strong {
  font-size: 24px;
  font-weight: bold;
  padding-right: 5px; }

.main section.plan .table-mobile tbody .price.recommend {
  background: var(--primary-light);
  border-radius: 25px; }

.main section.plan .table-mobile tbody .btn {
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px; }

.main section.plan .table-mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 60px; }

.main section.plan .table-mobile-header .btn {
  font-size: 32px;
  height: 100%;
  background: var(--secondary); }

@media screen and (max-width: 768px) {
  .main section.plan {
    padding: 20px; }
  .main section.plan .table {
    display: none; }
  .main section.plan .table-mobile {
    display: initial; }
  .main section.plan .table-mobile-header {
    display: flex; } }

.main section.plan .circle-top-right {
  position: absolute;
  top: 5%;
  right: -15%;
  width: 35%;
  z-index: 1; }

.main section.plan .circle-middle {
  position: absolute;
  bottom: 5%;
  left: -20%;
  z-index: 1;
  width: 35%;
  transform: scaleX(-1); }

.main section.contact {
  background: url("../assets/background.png"), var(--primary-dark) !important;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 50px;
  padding-bottom: 75px;
  text-align: left; }

.main section.contact .title {
  line-height: 1.5em;
  font-weight: 300;
  font-size: var(--text-size-xl);
  font-weight: bold;
  color: var(--secondary);
  background: var(--primary-dark); }

.main section.contact .description {
  color: var(--secondary);
  font-size: var(--text-size-lg);
  line-height: 1.5em;
  font-weight: 300;
  background: var(--primary-dark); }

.main section.contact .description b {
  font-weight: bold; }

.main section.contact .options .circle {
  height: 50px; }

.main section.contact .options .option {
  font-weight: 300;
  color: var(--secondary);
  font-size: 20px;
  line-height: 1.3em; }

.main section.contact .options .option b {
  font-weight: bold; }

.main section.contact .cloud {
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 35%;
  object-fit: contain;
  object-position: bottom; }

.main section.contact .btn {
  color: white;
  padding: 10px 40px;
  border-radius: 25px;
  font-size: 18px; }

@media screen and (max-width: 991px) {
  .main section.contact .title {
    font-size: var(--text-size-lg) !important; }
  .main section.contact .description {
    font-size: var(--text-size-md) !important; }
  .main section.contact .options .option {
    font-size: 14px !important; }
  .main section.contact .cloud {
    width: 40% !important; } }

@media screen and (max-width: 576px) {
  .main section.contact .cloud {
    display: none !important; } }

a, a:hover {
  color: inherit;
  text-decoration: none;
  transition: 0.5s; }

a:hover {
  opacity: 0.9; }

.container {
  max-width: 1380px; }
