:root {
    --fuenteNavegacion: 'Bebas Neue', sans-serif;

    --rojoFooter: #e10600;
    --blancoFooter: #ffffff;
    --moradoFooter: #2a003f;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* footer */
.fondo-morado {
    background-color: var(--moradoFooter);
}
.logo {
    text-align: center;
    margin-bottom: 3rem;
}
footer {
    padding-bottom: 4rem;
    margin: 0;
}
@media (min-width: 768px) {
    footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 2rem;
    background-color: var(--moradoFooter);
    
}
}
.navegacion {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) { 
    .navegacion {
        display: flex;
        justify-content: center;
        gap: 3rem;
        flex-direction: row;
    }
}
.navegacion a {
    color: var(--blancoFooter);
    text-decoration: none;
    font-size: 2.5rem;
    font-family: var(--fuenteNavegacion);

}
.navegacion a:hover {
    color: var(--rojoFooter);
}
.redes {
    display: flex;
    justify-content: center;   
    align-items: center;       
    gap: 15px;                 
    margin-top: 20px;
}
@media (min-width: 768px) { 
    .redes {
        display: flex;
        justify-content: flex-end;
        gap: 1.5rem;
        margin-top: 0;
    }
    
    .logo img {
    width: 10rem;   
    height: auto;  
    }
}

.insta,.face {
    filter: invert(100%);
}
.insta {
    width: 6rem;
    height: 6rem;
    margin-top: .5rem;
}   
.face {
    width: 5rem;
    height: 5rem;
    margin-top: 1rem;
}
.footer-texto {
    grid-column: 2/3;
    text-align: center;
    font-family: var(--fuenteNavegacion);
    font-size: 3rem;
    color: var(--blancoFooter);
    margin-top: 4rem;
}
@media screen and (width: 768px) and (height: 1024px) {
    .logo {
    text-align: center;
}
footer {
    padding-bottom: 4rem;
    margin: 0;
}
.navegacion {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}
.redes {
    text-align: center;
    margin-top: 4.5rem;
    
}
}
.redes img:hover {
    transform: scale(1.2); 
}
.logo img {
  width: 13rem;  
  height: auto; 
}
/* Tablet portrait 768x1024 */
@media screen and (width: 1024px) and (height: 600px) {
   .redes {
    flex-direction: column;
   }
}
