/* ============================================================
   RODAPÉ (FOOTER) - GERTECH CLEAN VERSION
   ============================================================ */

.footer-gertech {
    background-color: #1e3a5a; /* Azul escuro corporativo */
    color: #cbd5e1;
    padding: 80px 0 30px 0;
    border-top: 4px solid #00c2ee; /* Linha Ciano */
    font-family: 'Poppins', sans-serif;
}

/* Títulos */
.footer-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.footer-subtitle {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-subtitle::after {
    content: '';
    display: block;
    width: 35px;
    height: 3px;
    background: #00c2ee; /* Detalhe em Ciano */
    margin-top: 8px;
    border-radius: 2px;
}

/* Listas e Links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00c2ee;
    padding-left: 5px;
}

/* Ícones de Contacto e Social */
.footer-contact svg {
    margin-right: 12px;
    color: #00c2ee;
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #00c2ee;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Rodapé Final */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}