/* =====================================================
   FOOTER MODERNO ABRICEM
   ===================================================== */

.rodape-moderno {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: auto;
}

.rodape-content {
    padding: 45px 0 0 0;
}

.rodape-titulo {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.rodape-titulo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #D15B47, #e67a66);
    border-radius: 2px;
}

/* =====================================================
   PADRONIZAR TAMANHO DE TODAS AS FONTES
   ===================================================== */

/*
.rodape-info p,
.rodape-links a,
.rodape-sobre p,
.horario-dias {
    font-size: 14px !important;
} */

/* =====================================================
   COLUNA 1: NOSSO ESCRITÓRIO
   ===================================================== */

.rodape-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-left: 0;
}

.rodape-icon {
    color: #D15B47;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.rodape-info {
    flex: 1;
}

.rodape-info p {
    margin: 0;
    color: #cccccc;
    line-height: 1.6;
    font-size: 16px;
}

.rodape-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rodape-info a:hover {
    color: #007BC2;
}

/* Redes Sociais */
.rodape-redes {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.rodape-rede {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rodape-rede:hover {
    background: #D15B47;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 91, 71, 0.3);
}

/* =====================================================
   COLUNA 2: LINKS ÚTEIS
   ===================================================== */

.rodape-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-links li {
    margin-bottom: 10px;
}

.rodape-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.rodape-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D15B47;
    transition: transform 0.3s ease;
}

.rodape-links a:hover {
    color: #D15B47;
    padding-left: 25px;
}

.rodape-links a:hover::before {
    transform: translateX(3px);
}

/* =====================================================
   COLUNA 3: HORÁRIO COMERCIAL
   ===================================================== */

.rodape-horario {
    margin-top: 5px;
}

.horario-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.horario-info {
    flex: 1;
}

.horario-dias {
    margin: 0 0 5px 0;
    color: #cccccc;
    font-size: 16px;
    font-weight: 500;
}

.horario-tempo {
    margin: 0;
    color: #D15B47;
    font-size: 16px;
    font-weight: 600;
}

/* =====================================================
   COLUNA 4: SOBRE A ABRICEM
   ===================================================== */

.rodape-sobre p {
    color: #cccccc;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 10px;
}

.rodape-logo {
    margin-top: 20px;
}

.rodape-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.rodape-logo img:hover {
    opacity: 1;
}

/* =====================================================
   RODAPÉ INFERIOR (DIREITOS AUTORAIS)
   ===================================================== */

.rodape-autorais {
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rodape-autorais p {
    margin: 0;
    color: #999999;
    font-size: 13px;
}

.creditos-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #999999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.creditos-link:hover {
    color: #D15B47;
}

.creditos-logo {
    height: 20px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin-left: 1px;
}

.creditos-link:hover .creditos-logo {
    opacity: 1;
}

/* =====================================================
   BOTÕES FLUTUANTES (WhatsApp e Topo)
   ===================================================== */

.btn__whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn__whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn__whatsapp__wrapper svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.btn-topo {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #D15B47;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(209, 91, 71, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.btn-topo.show {
    opacity: 1;
    visibility: visible;
}

.btn-topo:hover {
    background: #b8493a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 91, 71, 0.4);
    color: white;
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

@media (max-width: 768px) {
    .rodape-content {
        padding: 30px 0 20px 0;
    }
    
    .rodape-titulo {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .rodape-item {
        margin-bottom: 10px;
    }
    
    .rodape-redes {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .rodape-autorais {
        text-align: center;
    }
    
    .creditos-link {
        justify-content: center;
        margin-top: 10px;
    }
    
    .btn__whatsapp {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .btn-topo {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .rodape-content {
        padding: 30px 0 20px 0;
    }
    
    .rodape-titulo::after {
        width: 30px;
        height: 2px;
    }
    
    .horario-tempo {
        font-size: 14px;
    }
    
    .rodape-sobre p {
        font-size: 16px;
    }
}