*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --color_primario: rgb(82, 173, 248);
    --color_primario_suave:  rgb(82, 173, 248);
    --color_blanco: #ffffff;
    --altura_header: 80px;
    --padding_left_right: 2rem;
    --ancho_maximo: 1200px;
}

body{
    background-color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a{
    text-decoration: none;
}
ol,ul{
    list-style: none;
}
.header {
    height: var(--altura_header);
    background-color: var(--color_primario);
}
.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 var(--padding_left_right);
}
.menu_hamburguesa{
    display: none;
}
.menu_hamburguesa:checked + .ul_links {
    height: calc(100vh - var(--altura_header));
}
.logo {
    color: var(--color_blanco);
}
.list_icon {
    color: var(--color_blanco);
    cursor: pointer;
}
.ul_links {
    width: 100%;
    background-color: var(--color_primario_suave);
    position: absolute;
    top: var(--altura_header);
    left: 0;
    height: 0;
    overflow: hidden;
    /* height: calc(100vh - var(--altura_header)); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;

    transition: all .3s;
}

.link {
    font-size: 3em;
    color: var(--color_blanco);
    font-weight: bold;
}

@media (min-width:768px){
    .labe_hamburguesa {
        display: none;
    }
    .ul_links{
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 2rem;
    }
    .link{
        font-size: 1.2rem;
        transition: all .3s;
        padding: .2rem .7rem;
    }
    .link:hover{
        background-color: rgb(35, 126, 207);
    }
}



input{
    margin: auto;
    width: 1250px;
    padding: 1px;
    padding-right: 100px;
    border-radius: 8px 2px;
}

button {
    background-color: rgb(0, 0, 0);
    padding: 12px;
    position: absolute; 
    margin: auto;
    border-radius: 0 5px  5px 0;
    color: rgb(218, 27, 27);
    cursor: pointer;
    }

button:hover {
    background-color:rgb(209, 209, 209);

}

.cajaBorde1 {
   
    height: 50px;
    min-height: 10px;
    max-width: 120rem;
    
}.cajaBorde2 {
   
    height: 50px;
    min-height: 10px;
    
}
.cajaBorde3 {
    
    height: 50px;
    min-height: 50px;
    
}

.cajaBorde4 {
   
    height: 50px;
    min-height: 50px;

}
.cajaBorde5 {
    
    height: 50px;
    min-height: 50px;
}
.cajaBorde6 {
    margin: auto;
    height: 50px;
    min-height: 800px;

}
.cajaBorde7{
    height: 350px;
    min-height: 800px;
    

}
.cajaBorde8{
    
    
    
    height: 350px;
    min-height: 50px;
    margin: 10px;

}


.imagen1 {

    height:50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: file;
}

.texto1{
    height: 100px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items:center ;
    flex-direction: column;
}