
footer {
    position:relative;
    clear: both;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(153, 101, 21, 0.8);
    color: white;
    border-top: 2px solid #d3a965;
    text-align: center;
}

.footer-links {
    display: none; /*Desaparecen los links de las redes sociales */
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d3a965;
}

footer p {
    font-size: 14px;
    margin: 0;
}

@media screen and (max-width: 768px) {
    footer p {
        text-align: center; 
    }
}