body{
    background-color: white;
    padding: 0;
    margin: 0;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/*******************

Encabezado de la pagina

****************/

.oculto{
    display: none !important;
}

header{
    width: 100%;
    height: 140px;
    background-color: black;
}
.cont-header{
    width: 65%;
    height: 100%;
    display: flex;
    justify-content: space-between;

    padding: 0px 20px;
    margin: 0 auto;
    gap: 20px;
}
.img-logo{
    width: 200px;
    height: auto;
    object-fit: contain;
}
.menu{
    color: white;
    font-weight: bold;
    margin-top: 35px;
    text-transform: uppercase;
    display: flex;
    list-style-type: none;
    padding: 0;
    gap: 20px;
    font-size:0.875rem;
    text-rendering: optimizeLegibility;
}

.menu li > a{
    color: white;
     text-decoration: none;
     transition: color .4s ease;
}
.menu li > a:visited{
    color: white;
    text-decoration: none;
}

.menu li> a:hover{
    color: #0fc8ff;
}



.contenedor-carga{
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 120;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.spinner {
  width: 120px;
  height: 120px;
  border: 5px solid #ccc;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: girar 1s linear infinite;
}

@keyframes girar {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



/*******************

PRESENTACION DE LA PAGINA

****************/
.contenedor-header{
    width: 100%;
    height: 30vh;
    background-image: url("./assets/img/space-center-693251_1920.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}


/*******************

Contenido de la presentacion

****************/
.contenido{
    position: absolute;
    width: 100%;
    height:50%;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner_title{
    color: white;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    line-height: 0;
}
.letra_banner{
    font-size: 3.4rem;
    color: white;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 0;
    text-shadow: -3px -3px 3px #484848, 3px -3px 3px #484848, -3px 3px 3px #484848, 3px 3px 3px #484848
}

/*******************

Contenido registros

****************/

.avisoNOdetectado,.avisodetectado{
    margin-top: 30px !important;
    border: 1px solid rgb(172, 170, 170);
    text-align: left;
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    padding: 20px 30px;
    -webkit-box-shadow: 0px 0px 16px -13px #000000; 
box-shadow: 0px 0px 16px -13px #000000;
font-family: 'Droid Sans', sans-serif;
font-size: 16.5px;
color: rgb(95, 95, 95);
}
.avisodetectado{
    border-left:10px solid red;
}
.avisoNOdetectado{
    border-left:10px solid #ad7a0a;
}
.avisodetectado h2,.avisodetectado i{
    line-height: 0;
    color:red;
    font-weight: bold;
}
.avisoNOdetectado h2,.avisoNOdetectado i{
    line-height: 0;
    color:#ad7a0a;
    font-weight: bold;
}
/*******************

Seccion Experiencia

****************/

.fondo_gris{
    background-color: rgb(248, 248, 248);
    padding: 80px 0px;
}

.icono-rombo{
    width: 40px;
    height: 40px;
    background: #0fc8ff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

    transform: rotate(45deg);
}

.icono-rombo i{
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;

    transform: rotate(-45deg);
}


/*******************

formulario buscar

****************/

.form_buscador{
    width: 100%;
    height: 55px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}
.form_buscador span{
    text-align: left !important;
}
.div_buscador{
    width: 90%;
    display: flex;
    gap: 10px;
    margin: 0 auto;
}
.buscador{
    width: 90% !important;
    height: 45px;
    padding: 0px 15px;
}
.enviar{
    width: 10%;
    background-color: #0fc8ff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 12px;
    transition: background-color 0.5s ease;
}
.enviar:hover{
    background-color: #222222;
}


/*******************

Buscador

****************/

.contenedor_buscador{
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.divisor{
    width: 100%;
    border: 1px solid rgb(196, 196, 196);
    margin-top: 80px;
}

/*******************

Aviso

****************/
.avisa{
    width: 80%;
    margin: 0 auto;
    padding: 70px 0; 
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
}
.avisa a{
    font-size: 1.2rem;
    color: #1364ce;
    text-decoration: none;
}
.avisa a:visited{
    color: #1364ce;
    text-decoration: none;
}
/*******************

footer

****************/

footer{
    padding: 100px 0;
    background-color: black;
}


/*******************

CONTACTO

****************/
.contenedor-footer{
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}
.contacto{
    display: flex;
}
.contacto_tarjeta{
    flex: 1;
    color: white;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.contacto_tarjeta i{
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #252525;
    padding: 15px;
    border-radius: 50%;
}
.contacto_tarjeta label{
    color: #0fc8ff;
    font-weight: bold;
    font-size: 1.4rem;
}
.contacto_tarjeta span{
    font-size: 1.1rem;
}

/*******************

Redes Sociales

****************/

.redes{
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.redes_titulo{
    color: #0fc8ff;
    font-weight: bold;
    font-size: 1.4rem;
}
.subtitulo_titulo span{
    font-size: 1.1rem;
}
.cont-red{
    width: 100%;
    height: max-content;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}

.red i{
    width: 100px !important;
    height: 60px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    background-color: #252525;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
}

.face,.x,.youtube{
    transition: background-color 0.5 ease;
}
.face:hover{
  background-color: #1546b1;
}
.x:hover{
    background-color: black;
}
.youtube:hover{
    background-color: rgb(221, 37, 37) !important;
}
/*******************

terminos

****************/

.terminos,.derechos{
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.derechos{
    margin-top: 10px;
}

/*******************

Celulares

****************/

.btn-menu{
    display:none;
    background:none;
    border:none;
    font-size:35px;
    cursor:pointer;
    color:white;
    background-color: #0fc8ff;
}
.contacto a{
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacto a:visited{
  text-decoration: none;
}

@media (max-width:769px) {

    .cont-header{
        width:100%;
        position:relative;
        padding:0;
    }

    .btn-menu{
        display:block;
        position:absolute;
        right:20px;
        top:50%;
        transform:translateY(-50%);
        z-index:20;
    }

    .menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000;
        display:none;
        flex-direction:column;
        padding:0;
        margin:0;
        z-index:10;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        list-style:none;
        border-top:1px solid rgba(255,255,255,.2);
    }

    .menu li a{
        display:block;
        padding:15px 20px;
        color:#fff;
        text-decoration:none;
    }

    .menu li a:hover{
        background:#222;
    }

    .banner_title{
        line-height: 1.5;
        font-size: 2rem !important;
    }
    .letra_banner{
        font-size: 1.5rem;
    }
    .contenedor-header{
        height: 250px;
        gap: 0;
        line-height: 1.3;
    }
    .contenido{
        height: auto;
        gap: 0;
        line-height: 1.3;
    }

    .contenedor_buscador{
        width: 90%;
        
    }
    .div_buscador{
        flex-direction: column;
        height: max-content;
    }
    .enviar{
        width: 150px !important;
        height: 40px;
    }
    .divisor{
         margin-top: 140px;
    }

    .contacto{
        flex-direction: column;
        gap: 30px;
    }
}