/* CONTATO - ESTILO ESPECÍFICO */
.contato-section {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    text-align: center;
}

.redes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rede-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(110, 0, 255, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s ease;
    border: 1px solid rgba(110, 0, 255, 0.1);
}

.rede-item:hover {
    background: rgba(110, 0, 255, 0.1);
    transform: translateY(-3px);
}

.rede-icone {
    font-size: 2rem;
    color: var(--primary);
}

.rede-info h3 {
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
    text-align: left;
}

.rede-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: left;
}

/* RESPONSIVO */
@media (max-width: 600px) {
    .redes-container {
        grid-template-columns: 1fr;
    }
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}