/* ========================================
   RODAPÉ MODERNO - DESIGN PROFISSIONAL
======================================== */

.footer_section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    position: relative;
    padding: 0;
    margin-top: 80px;
}

.footer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E67E22, #F39C12, #E67E22);
}

/* ========================================
   CONTEÚDO PRINCIPAL DO FOOTER
======================================== */

.footer_section .footer_content {
    padding: 60px 0 40px 0;
}

.footer_section .footer-col {
    margin-bottom: 30px;
}

/* ========================================
   TÍTULOS
======================================== */

.footer_section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer_section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E67E22, #F39C12);
    border-radius: 2px;
}

/* ========================================
   SOBRE A EMPRESA
======================================== */

.footer_section .footer_detail p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.footer_section .footer_detail a {
    text-decoration: none;
}

.footer_section .footer_detail a:hover h4 {
    color: #E67E22;
}

/* ========================================
   LINKS RÁPIDOS
======================================== */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '→';
    margin-right: 8px;
    color: #E67E22;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #E67E22;
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   INFORMAÇÕES DE CONTATO
======================================== */

.footer_section .contact_nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer_section .contact_nav a {
    display: flex;
    align-items: flex-start;
    color: #b0b0b0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer_section .contact_nav a i {
    font-size: 18px;
    margin-right: 12px;
    margin-top: 3px;
    color: #E67E22;
    min-width: 20px;
}

.footer_section .contact_nav a:hover {
    color: #E67E22;
    padding-left: 5px;
}

/* ========================================
   REDES SOCIAIS
======================================== */

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #E67E22, #F39C12);
    border-color: #E67E22;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* ========================================
   FORMULÁRIO DE NEWSLETTER
======================================== */

.footer_section .footer_form {
    margin-top: 1rem;
}

.footer_section .footer_form input {
    width: 100%;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 0 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer_section .footer_form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer_section .footer_form input:focus {
    outline: none;
    border-color: #E67E22;
    background: rgba(255, 255, 255, 0.08);
}

.footer_section .footer_form button {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #E67E22, #F39C12);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.footer_section .footer_form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.footer_section .footer_form button:active {
    transform: translateY(0);
}

#mensagem-rodape {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    margin-top: 10px;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}

/* ========================================
   COPYRIGHT / RODAPÉ INFERIOR
======================================== */

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
    text-align: center;
}

.footer-bottom a {
    color: #E67E22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #F39C12;
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 991px) {
    .footer_section .footer_content {
        padding: 50px 0 30px 0;
    }
    
    .footer_section .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer_section {
        margin-top: 60px;
    }
    
    .footer_section .footer_content {
        padding: 40px 0 20px 0;
    }
    
    .footer_section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer_section .footer_form input,
    .footer_section .footer_form button {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .footer_section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer_section .footer_detail,
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer_section .contact_nav a {
        justify-content: center;
    }
}
