html{
    box-sizing: border-box;
    font-size: 62.5%; /* 1REM = 10px */
}
body{
    font-size: 1.6rem;
    line-height: 2; /* Interlineado*/
    background-color: rgba(128, 128, 128, 0.234);
}
h1{
    font-size: 5rem;
}
h2{
    font-size: 4rem;
}
h3{
    font-size: 3rem;
}
a{
    text-decoration: none; /* Elimina el subrayado*/
    color: #000;
}
img{
    max-width: 100%;/*Que ocupe el 100 de la caja*/
    display: block; /* Que se comporten como un bloque*/
}

/**Header y navegacion**/
.logo{
    margin-top: 5rem;
    text-align: center;
    font-family: Tahoma, sans-serif; /*Cambiar tipo de letra, poner varios entre comas para que si
                                                no tiene un tipo de letra tenga otro*/
}
.header{
    min-height: 60rem;
    background-image: url(img/Imagen\ de\ WhatsApp\ 2023-03-09\ a\ las\ 06.27.00.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

.contenedor-navegacion{
    max-width: 120rem;
    margin: 0 auto; /**Comodin, te lo centra**/
    border-top: .1rem solid #124460; /**linea borde**/
    border-bottom: 0.2rem solid #124460; /**linea borde**/
    margin-top: 50rem;
}
li{
    display: inline;
    padding: 85px; /**Controla la separación del menu**/
    width: 80px;
}
.nav-principal{ /**poner esto tal cual**/
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    background-color: #12436069;
}

a {
    color: aliceblue;
}
/**Trabajamos sobre productos**/

.productos{
    width: 80%;
    margin: 0 auto;
}

.Categorias{
    text-align: center;
}

.producto{
    width: 30%;
    float: left;
    text-align: center;
    margin: 1rem;
    margin-bottom: 5rem;
}

.enlacep{
    display: block;
    background-color: gray;
    font-size: 2rem;
}

.enlacep:hover{
    background-color: #124460;
}

/**Empezamos Sobre Nosotors**/
.sobrenosotros{
    margin-top: 3rem;
    clear: both;
    width: 100%;
    border-top: .25rem solid #124460;
    background-color: rgba(128, 128, 128, 0.244);
}

.nos{
    float: left;
    width: 25%;
    margin-left: 5rem;
    margin-top: 5rem;
}

.texto{
    padding: 8rem;
    text-align: center;
    margin-left: 2rem;
}