.footer-modern {
    background: linear-gradient(90deg, #041948 0%, #092c77 100%);
    color: #fff;
    padding: 32px 0 16px 0;
    font-size: 1rem;
    margin-top: 48px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 16px auto;
    gap: 32px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(35,135,103,0.10);
}
.footer-brand h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}
.footer-slogan {
    margin: 4px 0 0 0;
    font-size: 0.95rem;
    color: #e0f5ec;
}
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}
.footer-address {
    font-size: 0.98rem;
    color: #e0f5ec;
    margin: 0;
    text-align: left;
}
.footer-address i {
    margin-right: 6px;
}
.footer-whatsapp {
    font-size: 1.05rem;
    background: #25d366;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.footer-whatsapp i {
    margin-right: 6px;
}
.footer-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-social a {
    color: #e0f5ec;
    font-size: 1.4rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #e0f5ec33;
    margin-top: 18px;
    padding-top: 10px;
    text-align: center;
    font-size: 0.95rem;
    color: #e0f5ec;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }
    .footer-info {
        align-items: center;
        text-align: center;
    }
    .footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}