:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
:root { 
  --background-color: #00190b;
  --text-color: #93ac9f;
  --heading-color: #03fa7e;
  --accent-color: #03fa7e;
  --color-blanco: #ffffff;
}
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--text-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header .logo {
  line-height: 1;
  text-align: center;
}
.header .logo img {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-top: 6%;
  padding-bottom: 50px;
  position: relative;
}
.footer h2 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
}
.footer h2 span{
  color: var(--accent-color);
}
.footer .footer-textos p{
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}
.footer .hero-btns{
  padding-top: 5%;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #00190b;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--text-color);
  background-color: var(--background-color);
  padding: 5% 0 4%;
  scroll-margin-top: 88px;
  overflow: clip;
}
.titulo-section h2{
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 30px;
}
.titulo-section h2 span{
  color: var(--accent-color);
}
.titulo-section h3{
  border: 2px solid #03fa7f;
  display: inline-block;
  background: #024C25;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 8px 28px;
  border-radius: 30px;
  margin-bottom: 20px;
}
@media (min-width: 1640px) {
  html{
    font-size: 110%;
  }
}
@media (min-width: 1400px) {
    section .container {
        max-width: 1200px;
    }
}
@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
@media (max-width: 767px) {
  section, .section {
      scroll-margin-top: 30px;
      padding: 42px 10px;
  }
  .titulo-section h2 {
    font-size: 2.38rem;
    line-height: 1.15;
  }
  .titulo-section h3 {
    font-size: 0.8rem;
    padding: 7px 28px;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 3% 0 2%;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4%;
}
.hero h1 span{
  color: var(--accent-color);
  display: inline-block;
}
.hero p {
  color: var(--text-color);
  margin: 5px 0 30px 0;
  font-size: 1.14rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-btns .btn-registro {
  background: var(--accent-color);
  padding: 20px 40px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #02190b;
  transition: 500ms;
}
.hero-btns .btn-registro:hover{
  background: #ffffff;
}
.hero-btns .btn-registro i {
  color: #ffffff;
  font-size: 2rem;
  vertical-align: middle;
  line-height: 1;
  transform: translateX(-7px);
  margin-right: 20px;
  transition: 400ms;
}
.hero-btns .btn-registro:hover i{
  color: var(--accent-color);
}
.hero .hero-btns .btn-general{
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 30px;
  padding: 8px 50px;
  display: block;
  font-weight: 700;
}
.hero .hero-btns .btn-general:hover{
  color: #02190b;
  background-color: #ffffff;
  border: 2px solid #ffffff;
}
.hero .hero-btns p{
  font-size: 0.84rem;
  margin-top: 0;
  font-weight: 400;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
.animation-zoom{
  animation: zoomLoop 900ms ease-in-out;
}
.animation-up{
  animation: fadeUp 900ms ease-in-out;
  animation-delay: 330ms;
}
@media (min-width: 1025px) and (max-width: 1920px){ 
  .hero{
    min-height: 92vh;
  }
}
@media (max-width: 1024px){
  .hero{
    min-height: 700px;
  }
}
@media (max-width: 767px) {
    .hero {
      padding: 85px 10px 40px;
    }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.15;
  }
  .hero-btns .btn-registro {
    padding: 16px 29px;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .hero-btns .btn-registro span{
    text-align: center;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes zoomLoop{
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeUp{
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(10px);
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Contador Fecha
--------------------------------------------------------------*/
.evento-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 28px 32px;
  border: 1px solid rgba(0, 255, 136, 0.18);
  border-radius: 10px;
  background: #002b19;
  margin-bottom: 40px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.evento-countdown__texto {
  color: var(--accent-color);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  white-space: nowrap;
}
.evento-countdown__reloj {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown-item span {
  color: #fff;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.countdown-item small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
}
.countdown-separator {
  margin: 2px 7px 0;
  color: var(--accent-color);
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 600px) {
  .evento-countdown {
    flex-direction: column;
    gap: 18px;
    padding: 20px 12px;
  }

  .evento-countdown__texto {
    font-size: 17px;
  }

  .countdown-item {
    min-width: 48px;
  }

  .countdown-item span {
    font-size: 28px;
  }

  .countdown-separator {
    font-size: 27px;
  }
}
/*--------------------------------------------------------------
# Mejor Momento Section
--------------------------------------------------------------*/
.momento-ahora .item-cifras {
  background: #002612;
  padding: 40px 30px 40px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  text-align: center;
}
.momento-ahora .item-cifras h3{
  font-weight: 700;
  font-size: 2.9rem;
  margin-bottom: 20px;
}
.momento-ahora .item-cifras p{
  color: #ffffff;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.momento-ahora .section-lideres {
  padding-top: 30px;
}
.momento-ahora .section-lideres h3{
  font-weight: 600;
  font-size: 1.05rem;
}
.momento-ahora .section-lideres .item-lideres {
  background: #002612;
  padding: 12px 30px 8px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  text-align: center;
}
.momento-ahora .section-lideres .item-lideres h5{
  margin: 0;
}
.momento-ahora .section-lideres .item-lideres p{
  color: #ffffff;
  font-weight: 600;
  margin-top: 8px;
  font-size: 0.86rem;
  margin-bottom: 4px;
}
.momento-ahora .section-lideres .item-lideres img{
  border-radius: 4px;
}
.f-xs{
  font-size: 0.8rem;
  margin-top: 30px;
}
@media (max-width: 600px) {
  .momento-ahora .item-cifras h3 {
    font-size: 2.1rem;
  }
  .momento-ahora .item-cifras {
    background: #002612;
    padding: 28px 11px 26px;
    border: 1px solid #0F3D25;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 28px;
  }
}

/*--------------------------------------------------------------
# Ingreso pasivo Momento Section
--------------------------------------------------------------*/
.ingreso-pasivo .description{
  font-size: 1.3rem;
  line-height: 1.4;
  color: #dce7e0;
  padding-right: 20px;
}
.ingreso-pasivo .section-box {
  background: #002612;
  padding: 30px 30px 20px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  margin-bottom: 20px;
  margin-top: 14%;
}
.ingreso-pasivo .section-box h5{
  color: #ffffff;
}
.listing-list .listing-item {
  background: #002612;
  padding: 28px 30px 28px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  margin-bottom: 14px;
}
.listing-list .listing-item  i.bi-check-circle-fill{
  font-size: 2rem;
  line-height: 1;
  background: #03fa7f;
  color: #024C25;
  border-radius: 20px;
  border: 1px solid #03fa7f;
  margin-right: 20px;
}
.listing-list .listing-item p {
  color: #dce7e0;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}
.listing-list .listing-item p span {
  color: #03fa7f;
  font-weight: 700;
  display: inline-block;
  padding-right: 10px;
}
.ingreso-pasivo  .section-lideres h3{
  font-weight: 600;
  font-size: 1.02rem;
}
.ingreso-pasivo .section-lideres .item-lideres {
  background: #002612;
  padding: 12px 20px 8px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  text-align: center;
}
.ingreso-pasivo .section-lideres .item-lideres h5{
  margin: 0;
}
.ingreso-pasivo .section-lideres .item-lideres p{
  color: #ffffff;
  font-weight: 600;
  margin-top: 8px;
  font-size: 0.86rem;
  margin-bottom: 4px;
}
.ingreso-pasivo .section-lideres .item-lideres img{
  border-radius: 4px;
}
@media (max-width: 767px){
    .ingreso-pasivo .section-lideres {
        margin-bottom: 25px;
    }
    .listing-list .listing-item {
        padding: 28px 25px 28px;
    }
    .listing-list .listing-item p {
        font-size: 1.05rem;
    }
}
/*--------------------------------------------------------------
# Es para ti
--------------------------------------------------------------*/
.icon-number{
  display: inline-block;
  width: 30px;
  text-align: center;
  font-weight: 700;
  color: #03fa7f;
  font-size: 1.5rem;
  margin-right: 10px;
}
.listing-list-number .listing-item {
  background: #002612;
  padding: 20px 30px 20px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  margin-bottom: 11px;
}
.listing-list-number .listing-item p {
  color: #dce7e0;
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0;
}

.alianzas .section-box {
  background: #002612;
  padding: 34px 35px 20px;
  border: 1px solid #0F3D25;
  border-radius: 12px;
  min-height: 100%;
  margin-bottom: 11px;
}
.alianzas .section-box h3{
  color: #ffffff;
  font-weight: 700;
}
.alianzas .section-box .subtitle{
  color: #03fa7f;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.alianzas .listing-list-bg .listing-item i.bi-check-circle-fill{
  font-size: 1.3rem;
  line-height: 1;
  background: #03fa7f;
  color: #024C25;
  border-radius: 20px;
  border: 1px solid #03fa7f;
  margin-right: 15px;
}
.alianzas .listing-list-bg .listing-item{
  margin-bottom: 25px;
}
.alianzas .listing-list-bg .listing-item p{
  color: #dce7e0;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 767px){
    .alianzas .section-box {
        min-height: inherit;
        margin-bottom: 18px;
    }
}
/*--------------------------------------------------------------
# Instructor
--------------------------------------------------------------*/
.box-instructor {
  display: inline-block;
  background: #ffffff;
  border-radius: 50%;
  overflow: hidden;
  width: 75%;
  border: 3px solid #03fa7f;
  margin-top: 15px;
}
.box-instructor img{
  width: 100%;
}
.instructor .section-box h3{
  color: #ffffff;
  font-weight: 700;
}
.instructor .section-box .subtitle{
  color: #03fa7f;
  font-weight: 700;
  margin-bottom: 2rem;
}
.instructor .listing-list-bg .listing-item i.bi-check-circle-fill{
  font-size: 1.3rem;
  line-height: 1;
  background: #03fa7f;
  color: #024C25;
  border-radius: 20px;
  border: 1px solid #03fa7f;
  margin-right: 15px;
}
.instructor .listing-list-bg .listing-item{
  margin-bottom: 36px;
}
.instructor .listing-list-bg .listing-item p{
  color: #dce7e0;
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
}
@media (max-width: 767px) {
  .box-instructor {
    display: block;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}