@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

.main {
  max-width: 200px; /* Ancho máximo del contenido */
  margin: 20px auto; /* Margen superior e inferior automático, margen horizontal automático */
  padding: 0 20px; /* Espaciado interno a los lados del contenido */
}

body {
    box-sizing: border-box;
    font-family: 'Staatliches', cursive;
    min-height: 100vh;
    background: #000000;
    position: relative;
}

.logo img{
    width: 80px;
}

/*MENU DESPLEGABLE*/

.header {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

.logo {
    font-size: 15px;
    text-transform: uppercase;
    color: white;
    font-weight: 700;
}

.logo img {
  width: 180px; /* Ajusta el valor según el tamaño deseado */
  height: auto; /* Mantiene la proporción de aspecto */
}

.navigation ul {
    list-style: none;
}

.header .navigation ul li {
    float: left;
    position: relative;
}

.header .navigation ul li a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    padding: 33px;
    display: block;
    transition: all .2s ease;
}

.header .navigation ul li a:hover {

    background-color: #425FA3;

}

.header .navigation ul li ul {
    position: absolute;
    right: 0;
    width: 300px;
    background-color: black;
    display: none;
}

.header .navigation ul li ul li a {
    font-size: 15px;
    text-transform: capitalize;
}

.header .navigation ul li ul li ul {
    position: absolute;
    top: 0;
    right: 300px;
}

.header .navigation ul li ul li {
    width: 100%;
}

.header .navigation ul li:hover > ul {
    display: initial;
}

.header .navigation ul li ul li span {
    float: right;
    color: rgb(255, 255, 255);
    background-color: #425FA3;
    padding: 5px 10px;
    font-size: 12px;
    text-align: center;
    border-radius: 5px;

}

.header .navigation ul li.language {
    position: relative;
}

.header .navigation ul li.language ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    display: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.header .navigation ul li.language ul li {
    width: 100%;
    text-align: center;
}

.header .navigation ul li.language ul li a {
    display: block;
    font-size: 16px;
    color: #ffffff;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.header .navigation ul li.language ul li a:hover {
    background-color: #425fa3;
}

.header .navigation ul li.language:hover ul {
    display: block;
}

#toggle,
.header label {
    display: none;
    cursor: pointer;
}

@media (max-width: 950px) {

  .header label {
      display: initial;
  }

  .header {
      padding: 20px 10%;
  }

  .header .navigation {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: black;
      display: none;
  }

  .header .navigation ul li {
      width: 100%;
  }

  .header .navigation ul li a {
      padding: 8px 30px 8px 10%;
  }

  .header .navigation ul li ul {
      position: relative;
      width: 100%;
      left: 0;
  }

  .header .navigation ul li ul li {
      background-color: black;
  }

  .header .navigation ul li ul li ul {
      position: relative;
      width: 100%;
      left: 0;
  }

  .header .navigation ul li ul li ul span {
      padding: 4px 10px;
      font-size: 10px;
  }

  #toggle:checked ~ .navigation {
      display: block;
  }
}

@media (max-width: 767px) {
  .header label img {
    width: 30px; /* Ajusta el tamaño deseado para la imagen en dispositivos móviles */
  }
}


/*ESTILO GENERAL -Para la parte principal de la página si es que se usa-*/

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500vh;
}


/*FOOTER*/

.Footer-Principal {
  background-color: black;
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 20px;
}

.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.logo-section img {
  width: 20px; /* Ajusta el tamaño de los logos según tus necesidades */
  margin-right: 10px; /* Ajusta el espaciado horizontal entre los logos según tus necesidades */
} 

.Footer-Principal a {
  color: white;
  text-decoration: none;
}

.Footer-Principal a strong {
  font-weight: bold;
}



/* Imagen */

.Panoramica {
  margin-top: 130px;
  margin-right: 50px;
  margin-left: 50px;
}

@media (max-width: 767px) {
  .Panoramica {
    margin-right: 20px;
    margin-left: 20px;
  }
}

.Panoramica img {
  width: 100%;
  height: auto;
  display: block; /* Asegura que la imagen se muestre como un bloque */
  margin-right: auto; /* Centra horizontalmente la imagen */
  margin-left: auto;
}


/* Primer contenedor */

.PrimerContenedor {
  margin: 50px 50px 50px; /* Margen superior más pequeño, margen lateral reducido */
  display: flex;
  align-items: flex-start;
}
.left-section1 {
  width: 70%;
  margin-right: 100px;
}

.left-section1 h2 {
  margin-top: 20px; /* Margen superior más pequeño */
  text-align: center;
  font-size: 50px;
  color: white;
}

.left-section1 p {
  text-align: justify;
  color: white;
  font-size: 20px;
  margin-top: 10px; /* Ajusta el margen superior del texto */
}

.right-section1 {
  width: 30%;
  margin-top: 20px; /* Margen superior más pequeño */
  display: flex;
  justify-content: flex-end; /* Alinear la imagen a la derecha */
}

.right-section1 img {
  width: 90%; /* Reducción del tamaño de la imagen */
  display: block;
  margin-left: auto; /* Alinear la imagen a la derecha */
}

@media (max-width: 767px) {
  .PrimerContenedor {
    margin: 20px; /* Margen de 20px en todos los lados */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }

  .left-section1 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; /* Margen inferior de 20px */
  }

  .left-section1 h2 {
    margin-top: 0; /* Eliminar el margen superior */
    font-size: 50px; /* Reducción del tamaño de fuente */
  }

  .left-section1 p {
    font-size: 20px; /* Reducción del tamaño de fuente */
    margin-top: 10px; /* Ajusta el margen superior del texto */
  }

  .right-section1 {
    width: 100%;
    margin-top: 10px; /* Margen superior de 10px */
    display: flex;
    justify-content: center;
  }

  .right-section1 img {
    width: 100%; /* Ajustar el ancho al 100% del contenedor */
    margin: 0 20px; /* Margen lateral de 20px */
  }
}


/* Segundo contenedor */

.SegundoContenedor {
  margin: 0px 50px 50px; /* Margen superior más pequeño, margen lateral reducido */
  font-size: inherit;
  font-size: 25px;
}

.section2 {
  display: flex;
  padding: 20px;
  background-color: #0b3c5d;
  color: white;
}

.column2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title2 {
  margin-top: 0;
}

.section2 h3 {
  margin: 0;
}

.section2 a {
  padding: 10px;
  background-color: black;
  color: black;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.section2 a:hover {
  background-color: white;
  color: black;
}

.section2 a:not(:hover) {
  color: #0b3c5d;
}

@media (max-width: 767px) {
  .SegundoContenedor {
    margin-right: 20px;
    margin-left: 20px;
  }
  
  .section2 {
    flex-direction: column; /* Cambia la dirección de flexión a columnas en dispositivos móviles */
    align-items: center; /* Centra los elementos verticalmente en dispositivos móviles */
  }
  
  .column2 {
    margin-bottom: 20px; /* Agrega un margen inferior entre las secciones en dispositivos móviles */
  }
}

/* Barra separadora */

.BarraSeparadora {
  height: 1px;
  background-color: #fff;
  margin: 20px 0;
  border: none;
  margin: 0px 50px 50px; /* Margen superior más pequeño, margen lateral reducido */
}

@media (max-width: 767px) {
  .BarraSeparadora {
    margin-right: 20px;
    margin-left: 20px;
  }
}


/* Tercer contenedor */

.TercerContenedor {
  margin: 50px 50px 50px; /* Margen superior más pequeño, margen lateral reducido */
  display: flex;
  align-items: flex-start;
}

.left-section3 {
  width: 50%;
  margin-right: 100px;
}

.left-section3 h2 {
  margin-top: 20px; /* Margen superior más pequeño */
  text-align: center;
  font-size: 50px;
  color: white;
}

.left-section3 p {
  text-align: justify;
  color: white;
  font-size: 20px;
  margin-top: 10px; /* Ajusta el margen superior del texto */
}

.right-section3 {
  width: 50%;
  margin-right: 100px;
}

.right-section3 h2 {
  margin-top: 20px; /* Margen superior más pequeño */
  text-align: center;
  font-size: 50px;
  color: white;
  margin-bottom: 10px; /* Ajusta el margen superior del texto */
}

.price-paragraph {
  text-align: center;
  color: #dcae1d;
  font-size: 30px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .TercerContenedor {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
  }

  .left-section3, .right-section3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .left-section3 h2, .right-section3 h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 50px;
    color: white;
  }

  .left-section3 p {
    text-align: justify;
    color: white;
    font-size: 20px;
    margin-top: 10px; /* Ajusta el margen superior del texto */
  }

  .right-section3 {
    margin-right: 0;
  }

  .price-paragraph {
    text-align: center;
    color: #dcae1d;
    font-size: 24px;
    line-height: 1.5;
  }
}


/* Cuarto contenedor */

.CuartoContenedor {
  margin: 0 50px 50px; /* Margen superior más pequeño, margen lateral reducido */
  display: flex;
  align-items: flex-start;
}
.left-section4 {
  width: 70%;
  margin-right: 100px;
}

.left-section4 h2 {
  text-align: center;
  font-size: 50px;
  color: white;
}

.left-section4 p {
  text-align: justify;
  color: white;
  font-size: 20px;
  margin-top: 10px; /* Ajusta el margen superior del texto */
}

.right-section4 {
  width: 30%;
  margin-top: 20px; /* Margen superior más pequeño */
  display: flex;
  justify-content: flex-end; /* Alinear la imagen a la derecha */
}

.right-section4 img {
  width: 90%; /* Reducción del tamaño de la imagen */
  display: block;
  margin-left: auto; /* Alinear la imagen a la derecha */
}

@media (max-width: 767px) {
  .CuartoContenedor {
    margin: 20px; /* Margen de 20px en todos los lados */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }

  .left-section4 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; /* Margen inferior de 20px */
  }

  .left-section4 h2 {
    margin-top: 0; /* Eliminar el margen superior */
    margin-bottom: 10px; /* Margen inferior de 10px */
    font-size: 50px; /* Reducción del tamaño de fuente */
  }

  .left-section4 p {
    font-size: 20px; /* Reducción del tamaño de fuente */
    margin-top: 10px; /* Ajusta el margen superior del texto */
  }

  .right-section4 {
    width: 100%;
    margin-top: 10px; /* Margen superior de 10px */
    display: flex;
    justify-content: center;
  }

  .right-section4 img {
    width: 100%; /* Ajustar el ancho al 100% del contenedor */
    margin: 0 20px; /* Margen lateral de 20px */
  }
}


/* Quinto contenedor */

.QuintoContenedor {
  background-color: rgb(0, 0, 0);
  margin: 40px 0;
  padding: 0px;
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-bottom: 50px;
}

.QuintoContenedor h1 {
  font-size: 50px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px; /* Ajustar espacio entre título y texto */
  color: white;
}

.QuintoContenedor p {
  font-size: 20px;
  margin-top: 10px; /* Ajustar espacio entre párrafos */
  text-align: justify;
  color: white;
}

@media (max-width: 767px) {
  .QuintoContenedor {
    margin: 20px; /* Margen de 20px en todos los lados */
    width: calc(100% - 40px); /* Ajustar ancho del contenedor */
    margin-left: 20px; /* Ajustar margen izquierdo */
    margin-bottom: 50px;
  }

  .QuintoContenedor h1 {
    font-size: 50px;
    margin-bottom: 5px; /* Ajustar espacio entre título y texto */
  }

  .QuintoContenedor p {
    font-size: 20px;
    margin-top: 5px; /* Ajustar espacio entre párrafos */
  }
}

/* Team */

.contenedor-sn {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recuadro {
  flex-basis: calc(25% - 20px);
  margin-bottom: 20px;
  background-color: #000000;
  padding: 20px;
  text-align: center;
}

.recuadro a {
  display: block;
}

.cursor-gris {
  filter: brightness(100%);
}

.cursor-gris:hover img {
  filter: brightness(70%);
  transition: filter 0.5s ease;
}

.recuadro img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.recuadro h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.recuadro h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #ffffff;
}

.recuadro p {
  font-size: 15px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .contenedor-sn {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

/* Roadmap */

.container8 {
  margin: 0px 50px 50px;
  background-color: #000000;
}

.title {
  text-align: center;
  font-size: 50px;
  color: white;
  margin-bottom: 10px;
}

.percentages8 {
  float: left;
  width: 150px;
  font-size: 20px;
  line-height: 30px;
  color: white;
}

.spacer8 {
  float: left;
  width: 50px;
}

.text8 {
  overflow: hidden;
  margin-left: 50px;
  margin-right: 50px;
  text-align: justify;
  font-size: 20px;
  color: white;
}

.text8 p {
  margin-bottom: 5.3px;
}

@media (max-width: 768px) {
  /* Estilos para pantallas menores o iguales a 600px */
  .container8 {
    margin-bottom: 50px !important;  /* Puedes ajustar este valor según tus necesidades */
    margin-top: 0;
    margin-left: 20px !important;   /* Agregar esta línea */
    margin-right: 20px !important;  /* Agregar esta línea */
  }
  
  .percentages8 {
    display: none;
  }
  
  .spacer8,
  .text8 {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Sexto contenedor */

.SextoContenedor {
  background-color: rgb(0, 0, 0);
  margin: 40px 0;
  width: calc(100% - 100px);
  margin-left: 50px;
}

.SextoContenedor h1 {
  font-size: 50px;
  text-align: center;
  margin: 0;
  color: white;
  margin-bottom: 50px;
}

.SextoContenedor p {
  font-size: 20px;
  margin: 0;
  text-align: justify;
  color: white;
}
    
@media screen and (max-width: 767px) {
  .SextoContenedor {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .SextoContenedor h1 {
    margin-bottom: 20px;
  }
}
