/* ESTILO DO FOOTER */
footer {
    /* bottom: 0; */
    width: 100%;
    /* position: absolute; */
    color: var(--branco);
    background-color: var(--vermelho);
    box-shadow: black 0px 0px 20px;
}

.footer-container {
    height: auto;
    margin: 0 auto;
    cursor: default;
    padding: .5rem 2rem;
    caret-color: transparent;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--branco);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--cinza-claro);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '\1F806';
    margin-right: 0.5rem;
    transition: margin 0.3s ease;
}

.footer-links a:hover::before {
    margin-right: 0.75rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--branco);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--cinza-claro);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a {
    color: var(--branco);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--cinza-claro);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Ícones personalizados */
.icon {
    font-style: normal;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .footer-container {
        padding: 0 1rem;
    }
    
    footer {
        padding: 1.5rem 0 0.75rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-links a,
    .footer-contact a,
    .footer-social a {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {

    .footer-content {
        gap: 6vw;
        margin-bottom: 8vw;
    }

    .footer-container {
        padding: 0 4vw;
    }
    
    footer {
        padding: 6vw 0 3vw;
    }
    
    .footer-section h3 {
        font-size: 5vw;
    }
    
    .footer-links a,
    .footer-contact a, 
    .footer-social a {
        font-size: 4vw;
    }
    
    .footer-logo {
        font-size: 6vw;
    }
    
    .footer-description {
        font-size: 4vw;
    }

    .footer-bottom{
        font-size: 2vw;
        padding-top: 4vw;
    }
}