@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@200;300&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;1,100&family=Nova+Round&display=swap');

/* 
font-family: 'Barlow', sans-serif;
font-family: 'Josefin Sans', sans-serif;
font-family: 'Nova Round', cursive; */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-family: 'Josefin Sans', sans-serif;
    color: #000000;
}

:root{
  --black: #000000;
  --golden: #DFAF50;
  --grey: #b9b9b9;
  --white: #FFFFFF;
  --black2: #00000052;
  --golden2: #dfaf50c9;
}

html, body, main {
    overflow-x: hidden;
    /* background-color: #000000 !important; */
}
html::-webkit-scrollbar{display: none;}
html{
  width: 100%;
  margin: 0 auto;
  background: url('../assets/img/oneway.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  background-attachment: fixed;
}

body{
    background: url('../assets/img/oneway.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
    background-attachment: fixed;
  }

.visible{
    display: flex !important;
    visibility: visible !important;
}

.hidden{
    display: none !important;
    visibility: hidden !important;
}

/*----- Start Float Buttons -----*/

.btnWsp{
    position: fixed;
    bottom: 60px;
    right: 1rem;
    z-index: 1700;
    border-radius: 50px;
    background-color: var(--white);
    transform: scale(1.1);
}
.btnWsp:hover .tooltip-text2 {
    visibility: visible;
    opacity: 1;
 }

.grecaptcha-badge {
    display: none !important;
}

.btn-flotante-tooltip {
    position: fixed;
    bottom: 135px;
    right: 1rem !important;
    z-index: 1800;
    background-color: var(--golden);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
  }

  .btn-flotante-tooltip i {
    font-size: 20px;
    color: var(--black);
    padding: 10px;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .tooltip-text, .tooltip-text2 {
    visibility: hidden;
    width: 145px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .btn-flotante-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
  }

.up{
    position: fixed;
    /* line-height: 64px; */
    bottom: 120px;
    right: 30px;
    text-align: center;
    z-index: 1000;
}

.repair{
    display: flex;
    margin: 0 auto;
}

.btn-signUp{
  padding: 15px;
  border-radius: 30px 10px;
  border: 2px solid var(--golden);
  background-color: var(--black);
  color: var(--white) !important;
  width: 20%;
  text-align: center;
  font-weight: bold;
  transition: .5s all;
  margin-top: 4%;
}
.btn-signUp:hover, .btn-signUp a h4:hover{
  border-radius: 10px 30px;
  border: 2px solid var(--black);
  background-color: var(--white);
  color: var(--black) !important;
  transition: .5s all;
}

.arrow {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--black);
  border: 2px solid var(--white);
  border-radius: 10px;
  padding: 9px;
}

.arrow .one-way-arrow1{
  width: 30px;
  height: 30px;
  transition: 0.5s;
  cursor: pointer;
  transform: rotate(45deg);
  border-bottom: 12px solid var(--white);
  border-left: 12px solid var(--white);
  z-index: 1;
}
.arrow .one-way-arrow2{
  width: 60px;
  height: 15px;
  background-color: var(--white);
  padding: 2px 25px;
  margin-left: -20px;
  z-index: 2;
}
.arrow .one-way-arrow2 p{
  display: none;
  margin-top: -6px;
  margin-left: -12px;
  font-weight: bold;
}
.rotate{
  transform: rotate(180deg);
}

.section{
  margin: 5% auto;
  padding: 30px 70px;
}

/* Contenedor de la flecha */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: white;
  cursor: pointer;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
  transition: ease-in-out 0.5s;
}

/* Cambio de color al pasar el mouse */
.scroll-down:hover {
    color: var(--golden);
    transition: ease-in-out 0.5s;
}

/* Estilos del popup */
.popup {
  display: none; /* Se oculta por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: ease-in-out 0.5s;
}

.popup-content {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.popup-content input, .form-hotmart-free input {
    background-color: var(--golden2);
    margin: 1% 0;
    color: var(--black);
}

.ml-auto form button {
    margin: 2% !important;
}
/* Overlay del popup */
    .popup-overlay-counter {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeIn 0.4s ease;
    }

    #fireworksCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      pointer-events: none;
      background: var(--golden);
    }
    #widgetFireworksCanvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: -1;
      pointer-events: none;
    }
    .popup-content-counter {
      position: relative;
      overflow: hidden;
      padding: 2rem;
      border-radius: 12px;
      text-align: center;
      max-width: 400px;
      width: 90%;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      animation: slideDown 0.4s ease;
    }

    .popup-content-counter h2 {
      margin-top: 0;
      font-size: 1.5rem;
      /* color: #333; */
    }

    .countdown-counter, .visitors-counter {
      margin-top: 1.5rem;
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--black);
    }

    /* Botón de cierre */
    .close-btn-counter {
      position: absolute;
      top: 5px;
      right: 10px;
      font-size: 30px;
      cursor: pointer;
      color: var(--white);
    }

    .close-btn-counter:hover {
      color: var(--golden);
    }

    /* Widget flotante */
    .floating-widget-counter {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: var(--golden);
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      display: none;
      z-index: 9999;
      animation: slideInBottomLeft 0.4s ease forwards;
    }

    /* Animaciones */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @keyframes slideInBottomLeft {
      from {
        transform: translateY(50px) translateX(-50px);
        opacity: 0;
      }
      to {
        transform: translateY(0) translateX(0);
        opacity: 1;
      }
    }

    /* Transición para ocultar overlay */
    .popup-overlay-counter.hidden {
      display: none;
    }

    .fade-out-counter {
      animation: fadeOut 0.4s ease forwards;
    }

    @keyframes fadeOut {
      from { opacity: 1; }
      to { opacity: 0; }
    }

    .time-counter {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
    .item-time-counter, .item-visitors-counter {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 25% !important;
      gap: 25px;
      background-color: var(--black);
      padding: 25px 15px;
      border-radius: 20px;
      border: 1px solid var(--golden);
    }
    .text-counter {color: var(--white);}
    .item-visitors-counter {
      margin: 0 auto;
    }

/*----- End Float Buttons -----*/

/*----- Start Header -----*/
header {
  width: 100%;
  height: 100vh;
  background: url('../assets/img/Web-OW.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/* Estilos del Navbar */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  transition: background 0.3s, color 0.3s;
  z-index: 1000;
  box-shadow: none !important;
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.logo img {
  height: 100px;
}

/* Links de navegación */
.nav-links {
  width: 68%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s, border-radius 0.3s;
}

.nav-links a:hover {
  background: rgba(128, 128, 128, 0.3);
  border-radius: 20px;
  color: var(--white);
}

/* Íconos */
.icons {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding: 0 20px 0 0;
}

.icons i {
  position: relative; /* Permite posicionar correctamente el tooltip */
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 15px;
  border-radius: 15px;
  transition: background 0.3s;
}

.icons i:hover {
  background: rgba(128, 128, 128, 0.562);
}

/* Tooltips para los iconos */
.icons i::after {
  content: attr(data-tooltip); /* Extrae el texto del tooltip */
  position: absolute;
  top: -30px; /* Lo coloca arriba del icono */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(50, 50, 50, 0.9);
  color: var(--white);
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-transform: capitalize ; /* Asegura que respete el texto original */
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
  font-weight: 300;
}

/* Flecha del tooltip */
.icons i::before {
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Activar tooltip al pasar el mouse */
.icons i:hover::after,
.icons i:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Contenedor del icono de idioma */
.dropdown.language {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.dropdown.user {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.dropdown.download {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.dropdown.programs {
  position: relative;
  display: inline-block;
  cursor: pointer;
}


/* Lista de idiomas */
.language-list, .user-list, .download-list, .programs-list {
  position: fixed; /* Lo fijamos en la pantalla */
  background: rgba(50, 50, 50, 0.9);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  display: none;
  width: 150px;
  max-height: auto; /* Máxima altura con scroll */
  overflow-y: auto;
  z-index: 1000; /* Aseguramos que esté sobre la sección negra */
}

.language-list{
  top: 13.7%; /* Ajustamos para que no se superponga con el navbar */
  right: 11.9%; /* Pegado a la derecha */
}
.user-list{
  top: 13.7%; /* Ajustamos para que no se superponga con el navbar */
  right: 7.4%; /* Pegado a la derecha */
}

.download-list{
  top: 13.7%; /* Ajustamos para que no se superponga con el navbar */
  right: 2.6%; /* Pegado a la derecha */
}
.programs-list {
  top: 13.6%;
  left: 45%;
}

/* Estilos de cada idioma */
.language-list a li, .user-list a li, .download-list a li, .programs-list a li {
  padding: 8px;
  text-align: start;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-list li:hover, .user-list li:hover, .download-list li:hover, .programs-list li:hover {
  background: rgba(100, 100, 100, 0.7);
}

/* Mostrar la lista al hacer hover */
.dropdown.language:hover .language-list, .dropdown.user:hover .user-list, .dropdown.download:hover .download-list, .dropdown.programs:hover .programs-list {
  display: block;
}

/* Navbar con fondo blanco cuando pasa section-black */
.scrolled {
  background: var(--white);
}

.scrolled .nav-links a,
.scrolled .icons i {
  color: black;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
}
.menu-toggle i {
  color: var(--white);
}

#typewriter {
  position: absolute;
  width: 40%;
  top: 30%;      /* Ajusta para colocarlo verticalmente (por ejemplo, al 50% del header) */
  left: 7%;     /* Ajusta para colocarlo a la izquierda o derecha */
  transform: translateY(-50%);
  font-family: 'Ubuntu', Regular 400, Italic;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: bold;
  white-space: wrap;
  overflow: hidden;
  
  /* border-right: 2px solid var(--golden); */ 
}

#typewriter2 {
  position: absolute;
  width: 40%;
  top: 55%;      /* Ajusta para colocarlo verticalmente (por ejemplo, al 50% del header) */
  left: 7%;     /* Ajusta para colocarlo a la izquierda o derecha */
  transform: translateY(-50%);
  font-family: 'Ubuntu', Regular 400, Italic;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: bold;
  white-space: wrap;
  overflow: hidden;
  
  /* border-right: 2px solid var(--golden); */ 
}

#typewriterComplete, #typewriterMaster, #typewriterProfessional, #typewriterThanks {
  position: absolute;
  width: 40%;
  top: 30%;      /* Ajusta para colocarlo verticalmente (por ejemplo, al 50% del header) */
  left: 7%;     /* Ajusta para colocarlo a la izquierda o derecha */
  transform: translateY(-50%);
  font-family: 'Ubuntu', Regular 400, Italic;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: bold;
  white-space: wrap;
  overflow: hidden;
  
  /* border-right: 2px solid var(--golden); */
}

/*----- End Header -----*/


/*----- Start Company -----*/
.company{
  background-color: var(--black);
  height: auto;
}
.tittle-commitment{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 2% auto;
  padding: 50px 0 30px 0;
}
.tittle-commitment h1, .tittle-commitment h3, .tittle-commitment h5{
  color: var(--white);
}

.commitment{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 70px;
  margin: 0 auto;
}

.content-card-commitment{
  width: 30%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}
.card-commitment img {
  max-width: 90%;
  border-radius: 10px;
}
.card-commitment p {
  color: var(--white);
  text-align: justify;
  padding: 30px;
  border-radius: 10px;
  box-shadow: -4px -4px 30px var(--golden2);
}

/* Mobile Style */
.text-commitment2{
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  gap: 30px;
  font-weight: bold;
  border-radius: 0 20px;
  padding: 15px 20px;
  box-shadow: -6px -6px 40px var(--golden2);
  margin: 0 auto 2% auto;
}
.text-commitment2 img{
  margin: 0 auto; 
  width: 90%; 
  border-radius: 10px;
}
.content-text-commitment2 p {
  width: 90%;
  color: var(--white);
  margin: 0 auto;
}
/*----- End Company -----*/

/*----- Start Wall Street info -----*/

#section-black-mobile {
  display: none;
}

.content-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--black);
}

.text-overlay {
  position: absolute;
  top: 2%;
  left: 5%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  padding: 20px;
  max-width: 50%;
  height: 95vh;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  z-index: 10;
  overflow: auto;
}
.text-overlay::-webkit-scrollbar { display: none; }

.text-overlay h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 15px;
}

.text-overlay .info-wallstreet {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}
.text-overlay .info-wallstreet p {
  color: var(--white);
}

.gallery-wallstreet {
  position: relative;
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.spool{
  width: 100%;
  padding: 16px;
  display: grid;
  place-content: center;
  grid-template-columns: 470px 180px 180px 180px;
  grid-auto-rows: 1fr;
  gap: 15px;
  height: 60vh;
}

.spool2{
  width: 100%;
  padding: 16px;
  display: grid;
  place-content: center;
  grid-template-columns:  470px 180px 180px 180px;
  grid-auto-rows: 1fr;
  gap: 15px;
  height: 60vh;
}

.spool-item{
  border-radius: 16px;
  box-shadow: 0 0 15px 0 var(--black);
  transition: ease-in-out .5s;
}

.spool-item:nth-child(1){
  grid-column: 2/3;
  grid-row: 1/3;
  background: url('../assets/img/wall2.jpg') no-repeat center/cover;
}

.spool-item:nth-child(2){
  grid-column: 3/4;
  grid-row: 1/3;
  background: url('../assets/img/wall1.jpg') no-repeat center/cover;
}

.spool-item:nth-child(3){
  grid-column: 4/5;
  grid-row: 1/3;
  background: url('../assets/img/wall4.jpg') no-repeat center/cover;
}

.spool2 .spool-item:nth-child(1){
  grid-column: 2/3;
  grid-row: 1/3;
  background: url('../assets/img/wall3.jpg') no-repeat center/cover;
}

.spool2 .spool-item:nth-child(2){
  grid-column: 3/4;
  grid-row: 1/3;
  background: url('../assets/img/wall5.jpg') no-repeat center/cover;
}

.spool2 .spool-item:nth-child(3){
  grid-column: 4/5;
  grid-row: 1/3;
  background: url('../assets/img/wall6.jpg') no-repeat center/cover;
}


.spool-item:hover{
  transition: ease-in-out .5s;
  transform: scale(1.3);
  z-index: 1500;
}

.form-hotmart-free {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.3% auto;
    padding: 5%;
    border-radius: 5px;
    background: var(--black);
    box-shadow: -5px -5px 5px var(--golden), 5px 5px 5px var(--golden);
}
.form-hotmart-free h2 {
    color: var(--white);
}

/*----- End Wall Street info -----*/

/*----- Start Section Social -----*/

.banner-trading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px;
  margin: 5% auto;
}

.social-media{ 
  width: 90%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 25px;
}
.social-media .iframe {width: 60%;}
.social-media .meeting-text {width: 40%;}
.meeting-text p{
  font-family: "Georgia", serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--black);
  text-align: center;
  max-width: 95%;
  margin: 20px auto;
  padding: 10px 20px 20px 50px;
  border-left: 5px solid var(--golden);
  position: relative;
}
.meeting-text p::before{
  content: "“";
  font-size: 4rem;
  color: var(--golden);
  position: absolute;
  left: 0px;
  top: -10px;
}
.meeting-text p::after{
  content: "”";
  font-size: 4rem;
  color: var(--golden);
  position: absolute;
  right: -15px;
  bottom: -10px;
}

/*----- End Section Social -----*/

/*----- Start Programs -----*/
#programs, #ebooks{
  background-color: var(--black);
}
.cards-programs{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  perspective: 1000px;
  padding: 15px;
}
.card-program{
  width: 280px;
  height: 390px;
  /* background: linear-gradient(135deg, #ff9800, #ffcc80); */
  background: var(--black);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
  cursor: pointer;
  border: 2px solid var(--golden);
}
/* Cards laterales */
.card-program.left {
  transform: translateX(-30px) scale(0.9) rotateY(15deg);
  opacity: 0.8;
}

.card-program.right {
  transform: translateX(30px) scale(0.9) rotateY(-15deg);
  opacity: 0.8;
}

/* Card central destacada */
.card-program.center {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(255, 223, 127, 0.4);
}

/* Efecto hover en la card central */
.card-program.center:hover {
  transform: scale(1.2) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(255, 223, 127, 0.6);
}
.card-program.left:hover, .card-program.right:hover {
  transform: scale(1.01) rotateY(0deg); 
  opacity: 1;
  box-shadow: 0 10px 25px rgba(255, 223, 127, 0.3);
}

/* Estilo del contenido de la card */
.card-program h2 {
  font-size: 1.5rem;
  color: var(--golden);
  margin-bottom: 10px;
}

.card-program p {
  font-size: 1rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 15px;
}

.card-program .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--golden);
  margin-bottom: 15px;
}

.card-program button {
  background: var(--golden);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-program button:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.1);
}

/* page programs */
.content-text-programs-page {
  width: 100vw;
  background-color: var(--black);
  padding: 15px;
}
.content-cards-page-program {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0 auto;
}
.page-program-cards {
  background: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
  font-family: "Open Sans";
  border-radius: 10px;
}

.card-page-program{
  width: 220px;
  height: 321px;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
}
.card-page-program:hover{
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(255, 255, 255, 0.63),
    0 24px 46px var(--black);
}
.card-page-program:hover .overlay-page-program{
  transform: scale(4) translateZ(0);
}
.card-page-program:hover .circle-program{
  border-color: var(--grey);
  background: var(--golden);
}
.card-page-program:hover .circle-program::after{
  background: var(--white);
}
.card-page-program:hover h5{
  color: var(--black);
}
.card-page-program:active{
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(255, 255, 255, 0.5),
    0 15px 24px var(--black);
}
.card-page-program h5 {
  font-size: 17px;
  color: var(--black);
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
  text-align: center;
}
.card-page-program h5 b {
  color: var(--black);
}
.circle-program i{
  color: var(--black);
  font-size: 32px;
  z-index: 1000;
}

.circle-program {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--golden);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle-program:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--golden);
  border-radius: 50%;
  top: 7px;
  left: 7px;
  transition: opacity 0.3s ease-out;
}

.overlay-page-program {
  width: 118px;
  position: absolute; 
  height: 118px;
  border-radius: 50%;
  background: var(--golden);
  top: 70px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.content-text-programs-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}
.text-page-programs {
  max-width: 95%;
  background: rgba(255, 255, 255, 0.897);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 10px 25px rgba(255, 255, 255, 0.671);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--white);
  text-align: justify;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  margin: 5% auto;
}

.text-page-programs::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #DFAF50, transparent);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 1;
}
.text-page-programs::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #DFAF50, transparent);
  opacity: 0.6;
  border-radius: 50%;
  z-index: 1;
}

.text-page-programs p {
  line-height: 1.8;
  font-size: 16px;
  z-index: 2;
  position: relative;
}
.text-page-programs p b{
  color: var(--black);
}

.conten-acces-card{
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.card-acces{
  width: 30%;
  border-radius: 10px;
  box-shadow: 15px 15px 10px var(--black2);
  transition: all .5s;
}
.card-acces:hover{
  box-shadow: -15px -15px 10px var(--golden2);
  transform: scale(1.03);
  transition: all .5s;
}
.card-acces img{
  border-radius: 10px;
}
.card-acces h5{
  margin-top: 5%;
}

/* ebooks */
.overflow-transparent {
    overflow: auto;
    width: 350px;
}

.overflow-transparent::-webkit-scrollbar { display: none; }

.card-program .price-ebook{
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 15px;
}

/*----- End Programs -----*/

/*----- Start Services -----*/
#services{
  text-align: center;
  padding: 50px 20px;
  /* background-color: #0a0a0a; */
  /* color: white; */
}

.service-confidence {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin: 5% auto;
}

.confidence {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.card-confidence {
  background: var(--black);
  border-radius: 15px;
  padding: 30px;
  width: 280px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-confidence i {
  font-size: 40px;
  color: var(--golden);
  margin-bottom: 15px;
}

.card-confidence h4 {
  font-size: 20px;
  color: var(--white);
}

.card-confidence p {
  font-size: 14px;
  color: var(--white);
}

/* Efecto de profundidad inversa */
.confidence .card-confidence:nth-child(2) {
  transform: scale(0.9);
  opacity: 0.8;
  margin-top: 3%;
}

.confidence .card-confidence:nth-child(1),
.confidence .card-confidence:nth-child(3) {
  transform: scale(1.1);
  box-shadow: 0px 10px 30px var(--black);
  margin-top: 3%;
}

/* Hover Effects */
.confidence .card-confidence:nth-child(1):hover,
.confidence .card-confidence:nth-child(3):hover {
  transform: scale(1.15);
  box-shadow: 0px 15px 35px var(--black);
}

.confidence .card-confidence:nth-child(2):hover {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0px 0px 20px var(--black);
}

/*----- End Services -----*/

/*----- Start Testimonials -----*/

/*----- End Testimonials -----*/


/*----- Start Team -----*/
.team{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card {
  margin: 5% auto;
  width: 30%;
  height: auto;
  background: var(--black);
}
.card .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.card .image img {
  width: 100%;
  transition: .5s;
}
.card:hover .image img {
  opacity: .5;
  /* transform: translateX(30%);100% */
}
.card .details {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 70%;/*100%*/
  height: 100%;
  background: transparent;
  transition: .5s;
  transform-origin: left;
  transform: perspective(2000px) rotateY(-90deg);
}
.card:hover .details {
  transform: perspective(2000px) rotateY(0deg);
}
.card .details .center {
  padding: 20px;
  text-align: center;
  background: transparent;
  position: absolute;
  bottom: 5%;
  transform: translateY(-50%);
}
.card .details .center h1 {
  margin: 0;
  padding: 0;
  color: var(--golden);
  line-height: 20px;
  font-size: 20px;
  text-transform: uppercase;
}
.card .details .center h1 span {
  font-size: 14px;
  color: var(--black);
}
.card .details .center p {
  margin: 10px 0;
  padding: 0;
  color: #262626;
}

/*----- End Team -----*/


/*----- Start Contact -----*/

/* #contact{
  margin: 10% auto;
} */

.contact{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin: 0 auto;
}

.form{
  background: rgba(0, 0, 0, 0.514); /* Transparencia */
  backdrop-filter: blur(10px); /* Desenfoque */
  padding: 30px;
  border-radius: 15px;
  /* box-shadow: 0 4px 10px rgba(14, 241, 33, 0.2); */
  width: 70%;
  height: 75vh;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Contenedor del SVG */
#trading-lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Líneas animadas */
.line {
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 3s linear infinite;
}

.green {
  stroke: #00ff00;
}

.red {
  stroke: #ff0000;
  animation-delay: 0.5s;
}


.input-group {
  margin-bottom: 15px;
  width: 90%;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--black);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: var(--white);
}

input:focus, textarea:focus {
  background: var(--golden);
}

/* Botón de enviar */
form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(45deg, #DFAF50, #b8860b);
  color: var(--black);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

form button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #b8860b, #DFAF50);
  transition: transform 0.2s ease, background 0.3s ease;
}

/* Banner de éxito */
#successBanner {
  margin-bottom: 35px;
  padding: 10px;
  border-radius: 8px;
  background: var(--golden);
  color: var(--white);
  width: 100%;
  display: none;
}
.hidden-ban {
  display: none;
}

/*----- End Contact -----*/


/*----- Start Footer -----*/
a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; 
}
a, a:hover {
    text-decoration: none !important; 
}  
.content {
    height: 10vh; 
}  
.footer-20192 {
    position: relative;
    color: var(--white);
    padding: 1rem 0;
    background-color: var(--black); 
}
.footer-20192 .container {
  position: relative; 
}
.footer-20192 h3, h2 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.5; 
  color: var(--white);
}
.footer-20192 .links li {
  margin-bottom: 10px;
  line-height: 1.5;
  display: block; 
}
.footer-20192 .links li a {
  color: var(--white); 
}
.footer-20192 .links li a:hover {
  color: var(--golden); 
}
.footer-20192 .social li {
  display: inline-block;
  position: relative; 
}
.footer-20192 .social li a {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    padding: 0;
}
.footer-20192 .social li a i{
  color: var(--white); 
  transition: ease .5s;
}
.footer-20192 .social li a i:hover{
  color: var(--golden);
  transition: ease .5s;
}
.footer-20192 .social li a > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); 
}
.footer-20192 .footer-logo {
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .1rem; 
}
.footer-20192 .copyright, small, b {
  color: var(--white); 
  transition: ease 0.5s;
}
.footer-20192 .copyright p b:hover {
  color: var(--golden);
  transition: ease 0.5s;
}
.footer-20192 .cta {
  -webkit-box-shadow: -20px -20px 0 0 var(--black2);
  box-shadow: -20px -20px 0 0 var(--black2);
  padding: 20px;
  background-color: var(--black);
  border-radius: 0 15px 15px 10px;
  border-right: 2px solid var(--golden);
  border-bottom: 2px solid var(--golden);
  top: -50px;
  position: relative;
  display: flex;
  justify-content: space-between; 
}
.footer-20192 .cta h2, .footer-20192 .cta h3 {
    line-height: 1.5; 
}
.footer-20192 .cta h3 {
    font-size: 20px; 
}

/*----- End Footer -----*/

/* register page */

  .button-buy {
    align-items: center;
    background-color: var(--black);
    border-radius: 999em;
    color: var(--golden);
    display: flex;
    gap: 0.5em;
    justify-content: center;
    padding-block: 0.75em;
    padding-inline: 1em;
    transition: 0.3s;
  }
  
  .button-buy:focus,
  .button-buy:hover {
    background-color: var(--golden);
    color: var(--black);
    font-weight: bold;
    transition: 0.3s;
  }
  
  .button--full {
    inline-size: 100%;
  }
   
  .icon {
    block-size: 1em;
    display: inline-block;
    fill: currentColor;
    inline-size: 1em;
    vertical-align: middle;
  }









        