/* Footer */

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --blue-prof: #005B96;
    --accent: #3498db;
    --ahover: #23f806;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333333;
    --text-light: #777777;
    --white: #ffffff;
    --black: #000;
    --btn: #4CAF50;
    --bg-card: #f9f9f9;
}


.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary);
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
     .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
 .footer-content {
        grid-template-columns: 1fr;
    }
}