/* FOOTER FIXO - NOVA ESTRUTURA OTIMIZADA */
#trevus-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* BARRA COMPACTA */
#trevus-footer-compact {
    background: #ffffff;
    padding: 12px 20px;
    text-align: center;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.footer-compact-text {
    font-size: 13px;
    color: #666;
}

.footer-compact-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 12px;
}

/* SEÇÃO EXPANDIDA - COMEÇA FECHADA */
#trevus-footer-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

/* AUTO-EXPANSÃO via JavaScript */
#trevus-footer.auto-expanded #trevus-footer-expanded {
    max-height: 800px;
}

/* NEWSLETTER */
.footer-newsletter {
    display: none !important;
    background: linear-gradient(135deg, #1083c6 0%, #0d6bb7 100%);
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.newsletter-icon {
    font-size: 32px;
}

.newsletter-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.newsletter-text p {
    margin: 5px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 600px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 30px;
    background: white;
    color: #8B7355;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* CONTEÚDO PRINCIPAL - 4 COLUNAS */
.footer-main-content {
    background: #1083c6;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.3fr 1.3fr;
    gap: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* COLUNA DE ATENDIMENTO */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
}

.footer-contact-item a:hover {
    color: white;
    text-decoration: underline;
}

/* REDES SOCIAIS */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* IMAGENS DE PAGAMENTO E SEGURANÇA */
.footer-payment img,
.footer-security img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.footer-payment {
    margin-bottom: 30px;
}

/* BARRA INFERIOR (CNPJ) */
.footer-bottom {
    background: white;
    padding: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.footer-cnpj {
    flex: 1;
}

.footer-dev {
    text-align: right;
}

.footer-dev strong {
    color: #1083c6;
}

/* DROPDOWN DE CATEGORIAS */
.footer-category-hidden {
    display: none;
}

.footer-category-more a {
    font-weight: 600;
    color: rgba(255,255,255,0.95) !important;
}

.footer-category-more a:hover {
    text-decoration: underline;
    cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-newsletter {
    display: none !important;
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-info {
        justify-content: center;
    }
}
/* OCULTAR NEWSLETTER */
.footer-newsletter {
    display: none !important;
}

/* Cache bust 1769558942 */
