.caja_uno{
    height: 130px;
    /*background-color: aquamarine;*/
    position: relative;
}

.caja_uno img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.caja_dos{
    height: 130px;
   /* background-color:tomato;*/
    position: relative;
}

.caja_dos h1{
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}


.caja_tres{
    height: 60px;
    background-color:white;
}

.caja_cuatro{
    background-color:lightblue;
}

.estilo_h1{
    font-size: 30px;
    /*font-family: 'Montserrat Alternates', sans-serif;*/
    font-family: Arial, sans-serif;
}

.nav-link{
    color:white;
}




/*formulario*/
/*.caja1_formulario{
    background-color: cadetblue;
}*/
.caja2_formulario{
    /*background-color:cornflowerblue;*/
    display: flex;
    justify-content: center; /* Centrado horizontal */
    align-items: center;    /* Centrado vertical */
}

.titulo-tabla {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
/*
.caja3_formulario{
    background-color:lightblue;
}
*/
.estilo_h2{
    text-align:center;
}

.boton-formulario{
    width: 49%;
}
.texto_h5{
    text-align:center; 
    color:orange;
}
.texto_h1{
    text-align:center; 
    color:orange;
    background-color: cadetblue;
}

.caption {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
    color:#ffffff;
    background-color: #00adef;
    font-family: Arial, sans-serif;
}


.perfil {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .perfil img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }

  .perfil h2 {
    margin: 10px 0 5px;
  }

  .perfil p {
    color: #555;
    font-size: 14px;
  }

.container2 {
    max-width: 100%;
    border: 0px solid black;
    display: flex;
    justify-content: center; /* Centrar horizontal */
    align-items: center; 
}

.my-button {
    padding: 10px 20px;
    background-color: #00adef;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
    font-size: 1em;
    font-family: Arial, sans-serif;
}
.my-button:hover {
    color: #cbebfb;
}
.my-button:active {
    color:#cbebfb;
}

/*fin formulario*/

@media screen and (max-width: 640px)
{
    .caja_dos{
        height: 250px;
    }
    

    .caja_dos h1{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
    }
       
}