/* Estilos para el pie de página */
footer {
    background-color: #6b4423;
    color: white;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    margin-top: auto;
    background-image: url('images/grass-pattern.jpg');
    background-size: cover;
    background-blend-mode: overlay;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    padding-bottom: 20px;
}


.footer-section {
    flex: 1;
    text-align: left;
}


.footer-section h4 {
    font-size: 1.2rem;
    color: #FFDD57;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-section a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.footer-section a:hover {
    color: #FF6347;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid #555;
    padding-top: 10px;
    margin-top: 20px;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

