/* Estilos para el nuevo footer estilo Apple */
footer {
    background: var(--primary-color);
    padding: 3rem 0 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo {
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition-standard);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.footer-logo .logo {
    width: 100%;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-legal p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.footer-links-inline li {
    position: relative;
    padding-right: 1rem;
}

.footer-links-inline li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links-inline li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-standard);
}

.footer-links-inline li a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-links-inline li {
        padding-right: 0;
    }
    
    .footer-links-inline li:not(:last-child)::after {
        display: none;
    }
}