/* Página 3 - CSS extraído de includes/index-3.php */

/* Cores dos botões - Index 3 */
.color-3 .navbar-btn {
    background-color: #CBD3D7;
}

.color-3 .navbar-btn:hover {
    background-color: #FFCC00;
}

/* Sidebar: quadro branco (igual ao assistente de serviços da index-2) */
.color-3 .sidebar-header {
    background-color: #C8D7E3;
    padding: 15px;
    margin-bottom: 15px;
}

.color-3 .sidebar-header .city-info-card {
    width: 100%;
    background-color: #FFFFFF;
    padding: 18px;
}

.color-3 .sidebar-header .city-info-section {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    border: none;
}

.color-3 .sidebar-header .city-info-left {
    flex-shrink: 0;
}

.color-3 .sidebar-header .city-logo-small {
    width: 85px;
    background-color: #D9D9D9;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9D9D9;
    padding: 5px;
}

.color-3 .sidebar-header .city-logo-small .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

.color-3 .sidebar-header .city-info-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.color-3 .sidebar-header .city-name-uf {
    color: #2C2C2C;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.color-3 .sidebar-header .menu-principal {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.color-3 .sidebar-header .menu-link {
    text-decoration: none;
    color: var(--text-body);
    padding: 2px 0;
    font-size: 13px;
    transition: background-color 0.3s;
    display: block;
}

.color-3 .sidebar-header .menu-link:hover {
    text-decoration: underline;
}

.color-3 .sidebar-header .menu-link.active {
    text-decoration: underline;
}

.color-3 .btn-exibir-mais {
    background-color: #CBD3D7;
    border-color: #CBD3D7;
    color: #FFFFFF;
}

.color-3 .btn-exibir-mais:hover {
    background-color: #FFCC00;
    border-color: #FFCC00;
    color: #FFFFFF;
}

