/* Estilos generales para el ejemplo */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Estilos del footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    width: 100%;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #FF6B00; /* Color naranja */
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B00; /* Color naranja al pasar el ratón */
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* Responsividad */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.8rem;
    }
}