
:root{
    --blanco:#ffffff;
    --oscuro:#212121;
    --primario:#12a7e7;
    --secundario:#9b9898;
    --plata:#b8c0c4;
    --primarioConTransparancia:#12bce718;
    
}


/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
/*Globales*/


.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo {
  width: 100px; /* Ajusta el tamaño de tu logo según sea necesario */
  height: 100px; /* Ajusta el tamaño de tu logo según sea necesario */
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content {
  display: none; /* Ocultar el contenido hasta que se cargue completamente */
}
  /*Menu*/

  body{
      background: url(/Assets/fondo_planeta.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      font-family: 'Orbitron', sans-serif;
  }
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&display=swap');
/*HEADER*/

  .header{
      width: 100%;
      height: 80px;
      position: relative;
      top: 0;left: 0;
      background: rgb(19,19,20);
      background: linear-gradient(169deg, rgba(19,19,20,1) 4%, rgba(15,140,181,0.6138655291218049) 100%);  
      border-bottom: solid 1px var(--primario);
      
  }
  .container{
      width: 100%;
      max-width: 1200px;
      margin: auto;
  }
  

  .container .btn-menu, .logo{
      float: left;
      line-height:100px;
  }
  .container .btn-menu label{
      color: #fff;
      font-size: 25px;
      cursor: pointer;
  }
  
  .menu i{
    font-size: 22px;
    color: var(--blanco);
  }
  .container .menu{
      float: right;
      line-height: 100px;
  }
  
  .container .menu a{
      display: inline-block;
      padding: 15px;
      line-height: normal;
      text-decoration: none;
      color: #fff;
      transition: all 0.3s ease;
      border-bottom: 2px solid transparent;
      font-size: 15px;
      margin-right: 5px;
  }
  .container .menu a:hover{
      border-bottom: 2px solid #e8e8e8;
      padding-bottom: 5px;
  }
  /*Fin de Estilos para el encabezado*/

  /*Menù lateral*/
  #btn-menu{
      display: none;
  }

  .container-menu{
      position: absolute;
      background: rgba(0,0,0,0.5);
      width: 100%;
      height: 100vh;
      top: 0;left: 0;
      transition: all 500ms ease;
      opacity: 0;
      visibility: hidden;
  }
  #btn-menu:checked ~ .container-menu{
      opacity: 1;
      visibility: visible;
  }
  .cont-menu{
      width: 100%;
      max-width: 250px;
      background: #000;
      height: 100vh;
      position: relative;
      transition: all 500ms ease;
      transform: translateX(-100%);
  }
  #btn-menu:checked ~ .container-menu .cont-menu{
      transform: translateX(0%);
  }
  .cont-menu nav{
      transform: translateY(15%);
  }
  .cont-menu nav a i{
    color: var(--primario);
    font-size: 20px;
  }
  .cont-menu nav a{
      display: block;
      text-decoration: none;
      padding: 20px;
      color: #c7c7c7;
      border-left: 5px solid transparent;
      transition: all 400ms ease;
  }
  .cont-menu nav a:hover{
      border-left: 5px solid var(--primario);
      background: #1f1f1f;
  }
  .cont-menu label{
      position: absolute;
      right: 5px;
      top: 10px;
      color: #fff;
      cursor: pointer;
      font-size: 18px;
  }
  /*Fin de Menù lateral*/
/*Estrellas*/

.bloque{
    width:100%;
    height: auto;
    padding: auto;
}
.bubbles{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
}
.bubbles span{
    position: relative;
    width: 3px;
    height: 3px;
    margin: 0 20px;
    border-radius: 50%;
   
    animation: animate 15s infinite linear  ;
    animation-duration: calc(200s / var(--i));
}

.bubbles span:nth-child(even){
    background: var(--blanco);
    
}
@keyframes animate{
    0%{
        transform: translateY(100vh) scale(0);
    }
    100%{
        transform: translateY(-10vh) scale(1);
    }
}
@media (max-width: 1450px) {

    .bubbles{
        position: relative;
        display: flex;
        width: 100%;
        letter-spacing: 200px;
        justify-content: space-around;
    }


    .bubbles span{
        position: relative;
        width: 2px;
        height: 2px;
      
        margin: 0 1px;
        border-radius: 50%;
      
       
        animation: animate 20s infinite linear ;
        animation-duration: calc(180s / var(--i));
    }
    @keyframes animate{
        0%{
            transform: translateY(100vh) scale(0);
        }
        100%{
            transform: translateY(-10vh) scale(1);
        }
    }
} 

/* slider */
.slider {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;

}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  position: relative;
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 300px; /* Ajusta la altura de las imágenes aquí */
  object-fit: cover; /* Asegura que la imagen cubra el área y se recorte si es necesario */
  display: block;
}


.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.74);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

.slide-content h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.slide-content p {
  margin: 0 0 20px;
  font-size: 16px;
}

.slide-link {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007BFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.slide-link:hover {
  background-color: #0056b3;
}

/*BLOQUE DE MAIN*/    
.section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80%; /* Ajusta el ancho máximo según sea necesario */
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #00000093;
}
.section-container h2{
  color: #fff;
}
.text-container {
  text-align: center;
}
.images-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.images-container img {
  width: 80px; /* Ajusta el tamaño de las imágenes según sea necesario */
  height: auto;
  margin: 0 5px;
  transition: transform 0.3s ease;
}
.images-container img:hover {
  transform: scale(1.2);
}
/*Infomracion 1*/

.main_info {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;

  }

  #miDiv {
    text-align: center;
  }

  #miDiv img {
    width: 300px; /* Asegura que la imagen ocupe todo el ancho del div */
    height: auto; /* Permite que la altura se ajuste proporcionalmente al ancho */
 
  }

  #textoDebajoImagen {
    margin-top: 15px; /* Espacio entre la imagen y el texto (ajusta según tus preferencias) */
    color: white; /* Cambia el color del texto según tus preferencias */
    font-size: 24px; /* Cambia el tamaño de fuente según tus preferencias */
    font-weight: bold; /* Ajusta el peso de la fuente según tus preferencias */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Añade sombra al texto según tus preferencias */
  }





  .banner1 {
    
    padding: 20px;
    text-align: center;
    background-color: #080808af;
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    margin-top: 20px;
    border: solid #03284ea2 1px;
}

.content1 {
    max-width: 600px;
    margin: 0 auto;
}

.content1 h1 {
    font-size: 24px;
    color: #8f9296;
    text-decoration: underline var(--primario);
}
a {
  font-size: 20px;
  color: #f1eded;
  margin: 10px;
}



.contact-btn {
    display: inline-block;
    background-color: var(--primario);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Animación */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner1 {
    animation: fadeIn 1s ease-in-out;
}

@media only screen and (max-width: 600px) {
    .content1 {
        padding: 0 20px;
    }
}







/*banner 2*/
  .banner {
    position: relative;
    width: 100%;
    z-index: -1;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    
    
  }
  
  .banner img {
    width: 700px;
    height: auto;
    display: block;
    opacity: 70%;
    border-radius: 10px;
    
  }
  
  .content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
  }
  .content2 h1{
     font-size: 20px;
  }
  @media (max-width: 768px){
    .content2 {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      width: 98%;
    }
    .content2 h1{
       font-size: 18px;
    }
    .content2 p{
      font-size: 12px;
      letter-spacing: 1px;
    }
  }

  
 
  /* Animación simple para el título */
  h1, p {
    animation: fadeInUp 1.5s ease-in-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Estilos adicionales para hacerlo responsive */
  @media (max-width: 768px) {
    .content h1 {
      font-size: .9em;
    }
  
    p {
      font-size: .7em;
     
    }
    .banner {
        position: relative;
        max-width: 100%;
        z-index: -1;
      }
     
      .content {
        width: 90%;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
      }
      .banner img {
    width:100%;
    height: auto;
    display: block;
    opacity: 70%;
    border-radius: 10px;
    
  }
  }











  #image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px;
    background-color: #00000049;
    border-radius: 10px;
    align-items: center;
}

.image-card {
    width: 130px;
    margin: 10px;
    overflow: hidden;
    
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-description {
    padding: 10px;
    text-align: center;
    color: #b8c0c4;
}

@media (max-width: 768px) {
    .image-card {
        width: 50%;
    }
  
}






/*nuevo*/

.titulo-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .titulo {
    font-size: 24px;
    margin-right: 20px;
    color: #f2f6fa;
    text-decoration: underline;
  }

  .imagen {
    max-width: 50px; /* ajusta el tamaño máximo de la imagen */
    max-height: 50px; /* ajusta el tamaño máximo de la imagen */
  }

  @media (max-width: 600px) {
    .titulo-container {
      flex-direction: column;
      text-align: center;
    }

    .titulo {
      margin-bottom: 10px;
    }
  }








.portfolio {
    
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .service {
    border: #8f9296 1px solid;
    padding: 20px;
    margin: 20px;
    border-radius: 8px;
    
    transition: transform 0.3s ease-in-out;
  }
 
  
  .service:hover {
    transform: scale(1.05);
  }
  .service img{
    width: 300px;
    border-radius: 10px;
  }
  .service h2{
    color: #8f9296;
  }
  .service a {
    color: #008cff;
    text-decoration: none;
  }
  @media (max-width: 768px) {
    .service {
      width: 100%;
    }
    .service img{
       width: 100%;
        border-radius: 10px;
      }
  }


/* iconos */

.portfolio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
.service-card {
  box-shadow: 0 4px 8px rgba(71, 12, 12, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 20px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.service-card:hover {
  transform: scale(1.05);
}
.modal-content h2 {
  color: #505350;
}
p {
  color: rgb(204, 195, 195);
}
.service-card img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.service-card a {
  font-size: 28px;
  margin: 0 5px;
  color: #005200;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff8f;
  background: rgb(222,232,221);
background: linear-gradient(169deg, rgba(222,232,221,1) 4%, rgba(22,111,140,0.6138655291218049) 100%); 
  border-radius: 8px;
  padding: 20px;
  max-width: 80%;
  text-align: center;
  display: block;
}
.modal-content p{
  font-size: 13px;
  color: rgb(37, 35, 35);
  text-align: justify;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

@media (max-width: 600px) {
  .service-card {
    width: 100%;
    margin: 10px 0;
  }
}



/*Footer*/

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main_footer {
    
        position: relative;
        z-index: 2;
       
        color: #fff;
        padding: 40px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        animation: fadeIn 1s forwards;
    }

    .social-icon1 {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .social-icon1 a {
        display: inline-block;
        margin: 0 15px;
        color: #fff;
        text-decoration: none;
        font-size: 30px;
        transition: color 0.3s ease;
    }

    .social-icon1 a:hover {
        color: #008cff;
    }

    .contact-info1 {
        margin-top: 30px;
        text-align: center;
    }

    .copyright {
        margin-top: 20px;
        font-size: 14px;
        opacity: 0.8;
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }








































































