:root {
    --primary-color: #8474DB; /* Azul moderno */
    --bg-dark: #0a0a0a;
    --text-muted: #a1a1a1;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 80px 5% 30px;
    font-family: 'Inter', sans-serif;

}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

/* --- Lado Esquerdo --- */
.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-title span {
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 400px;
}

/* Botão com Brilho */
.btn-glow {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px #6278CA;
}

/* --- Lado Direito --- */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 300px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.label i {
    margin-right: 5px;
    color: var(--primary-color);
}

.link-underlined {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 2px;
}

/* Efeito de linha que corre no hover */
.link-underlined::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.link-underlined:hover::after {
    width: 100%;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    opacity: 0.7;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.2);
}

/* --- Rodapé Inferior --- */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal a:hover {
    color: white;
}