/* Footer Section */

.footer {
    background-color: #0D2450;
    color: #f1f5f9;
    padding: 2.5rem 1rem;
    font-size: 0.95rem;
}
  
.footer .container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}
  
.footer p {
    margin: 0;
    line-height: 1.6;
}
  
.footer strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-copy {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-politica {
    max-width: 30%; 
    text-align: center;
}

@media (max-width: 750px) {
    .footer-mobile {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-politica{
        max-width: 100%;
    }
}